/* ==================================================
   GLOBAL VARIABLES / THEME COLORS
================================================== */

/* ====== SELVAA · LUXURY AUTOMOTIVE EXPERIENCE ====== */
:root {
  --primary: #001C41;
  --secondary: #003566;
  --accent: #00B4D8;
  --gold: #FFD166;
  --bg: #F8FAFC;
  --ink: #0A1628;
  --ink-2: #3a4a63;
  --line: rgba(0, 28, 65, .08);
  --glass: rgba(255, 255, 255, .55);
  --glass-strong: rgba(255, 255, 255, .75);
  --glass-dark: rgba(10, 22, 40, .5);
  --shadow-lux: 0 30px 80px -30px rgba(0, 28, 65, .25), 0 8px 30px -10px rgba(0, 28, 65, .12);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, .6) inset, 0 30px 80px -20px rgba(0, 180, 216, .25);
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Playfair Display', system-ui,serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
  cursor: none;
}

@media (max-width: 900px) {
  body {
    cursor: auto
  }

  .cursor,
  .cursor-dot {
    display: none
  }
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none
}

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--secondary)
}

/* ==================================================
   CUSTOM CURSOR
================================================== */

/* CURSOR */

* {
  cursor: default !important;
}

/* Links / buttons hand cursor */
a,
button,
.btn,
[role="button"] {
  cursor: pointer !important;
}

/* ==================================================
   PAGE LOADER
================================================== */

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: grid;
  place-items: center;
  z-index: 10000;
  transition: opacity .8s var(--ease), visibility .8s
}

.loader.hide {
  opacity: 0;
  visibility: hidden
}

.loader-text {
  display: flex;
  gap: .5rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: .3em
}

.loader-text span {
  opacity: 0;
  transform: translateY(20px);
  animation: loadIn .6s var(--ease) forwards
}

.loader-text span:nth-child(1) {
  animation-delay: .05s
}

.loader-text span:nth-child(2) {
  animation-delay: .15s
}

.loader-text span:nth-child(3) {
  animation-delay: .25s
}

.loader-text span:nth-child(4) {
  animation-delay: .35s
}

.loader-text span:nth-child(5) {
  animation-delay: .45s
}

.loader-text span:nth-child(6) {
  animation-delay: .55s
}

@keyframes loadIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}


/* ==================================================
   GLASSMORPHISM
================================================== */

/* GLASS */
.glass {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-lux);
}

.glass-sm {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .7);
}

/* ==================================================
   HEADER / NAVIGATION
================================================== */

/* NAV */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  transition: top .4s var(--ease)
}

.nav {
  width: min(1240px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 14px 22px;
  border-radius: 100px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
  letter-spacing: -.01em
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px -6px rgba(0, 28, 65, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.logo-mark.big {
  width: 64px;
  height: 64px;
  font-size: 2rem
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.logo-text small {
  font-size: .65rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 4px
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-size: .92rem;
  font-weight: 500
}

.nav-menu a {
  position: relative;
  color: var(--ink);
  opacity: .8;
  transition: opacity .2s
}

/* PRODUCT DROPDOWN */

.product-menu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}

.submenu li {
  list-style: none;
}

.submenu li a {
  display: block;
  padding: 12px 20px;
  color: #001C41;
}

.submenu li a:hover {
  background: #F8FAFC;
  color: #00B4D8;
}

.product-menu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* GALLERY DROPDOWN */

.gallery-menu {
  position: relative;
}

.gallery-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all .3s ease;
}

.gallery-dropdown li {
  list-style: none;
}

.gallery-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #001C41;
  font-weight: 500;
}

.gallery-dropdown li a:hover {
  background: #F8FAFC;
  color: #00B4D8;
}

.gallery-menu:hover .gallery-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a:hover {
  opacity: 1
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease)
}

.nav-menu a:hover::after {
  width: 100%
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  position: relative
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: #001C41;
  transition: .3s
}

.nav-toggle span:nth-child(1) {
  top: 14px
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%)
}

.nav-toggle span:nth-child(3) {
  bottom: 14px
}

.nav-toggle.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg)
}

/* ==================================================
   BUTTON STYLES
================================================== */

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
  white-space: nowrap;
}

.btn span {
  transition: transform .3s var(--ease)
}

.btn:hover span {
  transform: translateX(4px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(0, 28, 65, .5), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(0, 180, 216, .5), inset 0 1px 0 rgba(255, 255, 255, .3)
}

.btn-ghost {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--primary)
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--secondary);
  transform: translateY(-2px)
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 18px
}

/* ==================================================
   HERO SECTION
================================================== */

/* HERO */
.hero {
  position: relative;
  min-height: 820px;

  padding: 165px 6vw 80px;

  overflow: hidden;
}


/* HERO BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;

  z-index: 0;
  pointer-events: none;
}


/* BACKGROUND ORBS */
.orb {
  position: absolute;

  border-radius: 50%;
  filter: blur(80px);

  opacity: .5;
}


.orb-1 {
  width: 560px;
  height: 560px;

  background:
    radial-gradient(
      circle,
      var(--accent),
      transparent 70%
    );

  top: -160px;
  right: -120px;

  opacity: .35;
}


.orb-2 {
  width: 680px;
  height: 680px;

  background:
    radial-gradient(
      circle,
      var(--secondary),
      transparent 70%
    );

  bottom: -260px;
  left: -200px;

  opacity: .25;
}


/* BACKGROUND GRID */
.grid-overlay {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      var(--line) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      var(--line) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    radial-gradient(
      ellipse at center,
      black 30%,
      transparent 70%
    );

  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      black 30%,
      transparent 70%
    );

  opacity: .6;
}


/* HERO CONTENT WRAPPER */
.hero-inner {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1450px;
  min-height: 580px;

  margin: 0 auto;

  padding-top: 35px;

  text-align: left;
}


/* TOP LABEL */
.hero-meta {
  width: 46%;
  margin: 0 0 30px;

  text-align: left;
}


.pill {
  display: inline-flex;
  align-items: center;

  padding: 8px 18px;

  border-radius: 100px;

  font-family: 'Manrope', sans-serif;

  font-size: .78rem;
  font-weight: 600;

  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--secondary);
}


.pill::before {
  color: var(--accent);
}


/* HERO HEADING */
.hero-title {
  width: 65%;
  max-width: 950px;

  margin: 0;

  font-family: 'Playfair Display', serif;
  font-weight: 500;

  font-size: clamp(58px, 5.3vw, 88px);
  line-height: .96;
  letter-spacing: -.035em;

  color: var(--primary);

  text-align: left;
}


/* EACH HEADING LINE */
.hero-title .line {
  display: block;

  overflow: visible;

  transform: translateY(0);
}


/* HERO PARAGRAPH */
.hero-sub {
  width: 45%;
  max-width: 590px;

  margin: 30px 0 0;

  font-family: 'Manrope', sans-serif;

  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;

  color: var(--ink-2);

  text-align: left;
}


/* HERO BUTTONS */

.hero-ctas {
  width: 48%;
  padding-top: 30px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 1rem;
  flex-wrap: wrap;

  text-align: left;
}


/* ==================================================
   COMMON SECTION STYLES
================================================== */

/* SECTIONS */
.section {
  padding: 120px 6vw;
  max-width: 1440px;
  margin: 0 auto;
  position: relative
}

.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem
}

.eyebrow.light {
  color: var(--gold)
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--primary)
}

.section-sub {
  margin-top: 1rem;
  color: var(--ink-2);
  font-size: 1.05rem
}

/* ==================================================
   CATEGORY SLIDER
================================================== */

/* CATEGORIES */

.cat-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cat-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}


.cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #001C41;
  color: #fff;
  font-size: 32px;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0,28,65,.25);
}

.cat-prev {
  left: 10px;
}

.cat-next {
  right: 10px;
}

@media (max-width: 900px) {
  .cat-slider .cat-card {
    min-width: calc(50% - 12px);
    flex-basis: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .cat-slider .cat-card {
    min-width: 100%;
    flex-basis: 100%;
  }
}

.cat-card{
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
  transform-style:preserve-3d;
  transition:transform .75s cubic-bezier(.22,1,.36,1),
             box-shadow .75s ease;
  background:#fff;
}



.cat-card::after{
  content:"Premium Accessories\A Expert Installation\A Trichy Since 1998";
  white-space:pre-line;
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:2rem;
  border-radius:var(--radius);
  background:linear-gradient(135deg,#001C41,#003566);
  color:#fff;
  font-family:'Playfair Display',serif;
  font-size:1.6rem;
  line-height:1.5;
  transform:rotateY(180deg);
  backface-visibility:hidden;
}


.cat-img{
  aspect-ratio:4/3;
  overflow:hidden;
}

.cat-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cat-body{
  padding:1.8rem 1.8rem 2rem;
  position:relative;
  background:#fff;
}

.cat-num{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:var(--accent);
  font-size:.95rem;
}

.cat-body h3{
  font-family:'Playfair Display',serif;
  font-size:1.7rem;
  font-weight:500;
  color:var(--primary);
  margin:.4rem 0 .6rem;
}

.cat-body p{
  color:var(--ink-2);
  font-size:.95rem;
  margin-bottom:1.2rem;
}

.cat-link{
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.05em;
  color:var(--secondary);
  border-bottom:1px solid var(--secondary);
  padding-bottom:2px;
}


/* ==================================================
   WHY CHOOSE US
================================================== */

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem
}

.why-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  transition: transform .5s var(--ease), box-shadow .5s
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow)
}

.why-card span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.4rem
}

.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: .6rem 0;
  letter-spacing: -.01em
}

.why-card p {
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.55
}

/* GALLERY */
.masonry {
  columns: 3;
  column-gap: 1.2rem
}

.m-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  position: relative
}

.m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease)
}

.m-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 28, 65, .4));
  opacity: 0;
  transition: opacity .4s
}

.m-item:hover img {
  transform: scale(1.08)
}

.m-item:hover::after {
  opacity: 1
}

/* ==================================================
   ENQUIRY FORM
================================================== */

/* ENQUIRY */
.enquiry {
  margin: 60px 6vw;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 180, 216, .25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 209, 102, .15), transparent 50%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 6rem 4rem;
  color: #fff;
  box-shadow: var(--shadow-lux);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center
}

.enquiry-left h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: #fff;
  margin: 1rem 0 1.2rem;
  letter-spacing: -.02em
}

.enquiry-left h2 em {
  color: var(--gold)
}

.enquiry-left p {
  color: rgba(255, 255, 255, .75);
  max-width: 38ch;
  font-size: 1.05rem
}

.enquiry-points {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.enquiry-points li {
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: .7rem
}

.enquiry-points span {
  color: var(--gold)
}

.enquiry-form {
  padding: 2.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .3)
}

.field {
  position: relative;
  margin-bottom: 1.1rem
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 18px 16px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .95rem;
  font-family: "Playfair Display",serif;
  transition: border-color .3s, background .3s;
  outline: none;
}

.field textarea {
  resize: none;
  padding-top: 22px
}

.field select{
  width:100%;
  height:64px;

  padding:18px 16px 8px;

  line-height:1.2;

  display:flex;
  align-items:center;

  color:#53647c;
}
.field select option {
  color: var(--ink);
  background: #fff
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .14)
}

.field label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  pointer-events: none;
  transition: .25s var(--ease);
}

.field label.static,
.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field input:valid+label,
.field select:focus+label,
.field select:valid+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
  top: 6px;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: transparent
}

.form-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--gold);
  min-height: 1.2em;
  text-align: center
}

/* ==================================================
   CONTACT SECTION
================================================== */

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius)
}

.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
  font-weight: 600
}

.contact-card p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.6
}

.contact-map {
  grid-column: 1 / -1;
  height: 380px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(.3) contrast(1.05)
}

/* ==================================================
   FOOTER
================================================== */

/* FOOTER */
.footer {
  margin-top: 80px;
  background: linear-gradient(180deg, var(--primary), #000814);
  color: rgba(255, 255, 255, .8);
  padding: 6rem 6vw 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 180, 216, .2), transparent 60%);
  pointer-events: none
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 3rem;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  align-items: start
}

.footer-logo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #fff;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: -.02em
}

.footer-logo p {
  margin-top: 1rem;
  max-width: 32ch;
  font-size: .95rem;
  color: rgba(255, 255, 255, .6)
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.footer-cols h5 {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700
}

.footer-cols a {
  display: block;
  font-size: .95rem;
  margin-bottom: .55rem;
  color: rgba(255, 255, 255, .7);
  transition: color .25s
}

.footer-cols a:hover {
  color: #fff
}

.footer-social {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap
}

.soc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}

.soc:hover {
  transform: translateY(-3px);
  background: var(--accent);
  border-color: var(--accent)
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 1rem;
}

/* footer-features */

.selvaa-footer-card {
  max-width: 420px;
  padding: 45px;
  background: linear-gradient(145deg, #001c41, #002b5c);
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 28, 65, 0.35);
}

.selvaa-footer-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

.selvaa-footer-card p {
  font-family: "Playfair Display",serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

.footer-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-features li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Playfair Display",serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.footer-features li span {
  width: 28px;
  font-size: 24px;
  color: #ffd166;
  display: inline-flex;
  justify-content: center;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.soc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: .3s ease;
}

.soc i {
  font-size: 23px;
}

.soc:hover {
  transform: translateY(-6px);
}

.instagram:hover {
  background: #e1306c;
}

.facebook:hover {
  background: #1877f2;
}

.whatsapp:hover {
  background: #25d366;
}

.youtube:hover {
  background: #ff0000;
}

@media (max-width: 480px) {
  .selvaa-footer-card {
    padding: 32px;
  }

  .selvaa-footer-card h2 {
    font-size: 44px;
  }

  .footer-features li {
    font-size: 15px;
  }
}

/* contact info */

.contact-info-card {
  max-width: 430px;
  padding: 28px;
  background: linear-gradient(145deg, #001c41, #002b5c);
  border-radius: 26px;
  color: #ffffff;
}

.contact-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #ffd166;
  font-size: 22px;
}

.contact-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.contact-item a,
.contact-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.contact-item a:hover {
  color: #ffd166;
}

@media (max-width: 480px) {
  .contact-info-card {
    padding: 22px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 16px;
  }
}

/* ==================================================
   FLOATING WHATSAPP BUTTON
================================================== */

/* FAB */
.fab{
    position: fixed;
    right: 50px;
    bottom: 24px;

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.fab i{
    position: static !important;

    display: flex !important;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    font-size: 30px;
    color: #fff;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;

    transform: none !important;
}


/* ==================================================
   SCROLL REVEAL
================================================== */

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* SCROLLED NAV */
.nav-wrap.scrolled {
  top: 10px
}

.nav-wrap.scrolled .nav {
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 20px 50px -20px rgba(0, 28, 65, .25)
}

/* ==================================================
   RESPONSIVE
================================================== */

/* ===== RESPONSIVE ===== */
@media (max-width:1100px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }

  .footer-social {
    grid-column: 1 / -1
  }

  .masonry {
    columns: 2
  }
}

@media (max-width:820px) {

  .nav-menu,
  .nav-cta {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 18px;
    right: 18px;
    padding: 1.6rem;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: var(--shadow-lux);
    gap: 1.2rem;
  }

  .hero {
    padding-top: 130px
  }


  .float-chip {
    padding: 10px 12px
  }

  .float-chip strong {
    font-size: .78rem
  }

  .float-chip small {
    font-size: .55rem
  }

  .chip-1 {
    top: 6%;
    left: 4%
  }

  .chip-2 {
    top: auto;
    bottom: 34%;
    right: 4%
  }

  .chip-3 {
    bottom: 4%;
    left: auto;
    right: 6%
  }

  .cat-grid {
    grid-template-columns: 1fr
  }

  .showcase {
    gap: 5rem
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .enquiry {
    padding: 3.5rem 1.5rem;
    margin: 40px 18px;
    border-radius: 24px
  }

  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-map {
    height: 300px
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
  }

  .section {
    padding: 80px 5vw
  }

  .masonry {
    columns: 1
  }
}

@media (max-width:480px) {
  .nav {
    padding: 10px 10px 10px 16px
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.05rem
  }

  .hero {
    padding: 120px 5vw 40px
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}

/* Logo Section */

.logo-img-wrap{
    width: 140px;
    height: 50px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-wrap img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.logo-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  padding-left: 4px;
}

.logo-text strong{
  font-size: 17px;
  font-weight: 700;
  color: #001C41;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.logo-text small{
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 2px;
  white-space: nowrap;
}
/* Button blue fix */

.btn-primary,
.nav-cta.btn-primary{
  background: linear-gradient(135deg, #001C41, #003566) !important;
  color: #ffffff !important;
  border: none !important;
  opacity: 1 !important;
}

/* PREMIUM SPOTLIGHT CATEGORY SLIDER */

.cat-slider-wrap{
  width:min(1180px,92%);
  margin:0 auto;
  position:relative;
  overflow:hidden;
  padding:20px 90px 60px
}

.cat-slider{
  display:flex;
  align-items:stretch;
  gap:26px;
  transition:transform .65s cubic-bezier(.22,1,.36,1);
}

.cat-slider .cat-card{
  flex:0 0 340px;
  min-width:340px;
  height:540px;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,28,65,.05),
        0 2px 8px rgba(0,28,65,.03);
  transform:none!important;
}

.cat-slider .cat-card::after{
  display:none!important;
}

.cat-img{
  height:300px;
  flex-shrink:0;
  overflow:hidden;
}

.cat-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cat-body{
  height:240px; 
  padding:30px 34px 32px; 
  display:flex; 
  flex-direction:column;
  align-items:flex-start;
}
.cat-num{
  display:block; 
  margin:0 0 14px;
  font-size:13px;
  color:#00B4D8;
  letter-spacing:.16em;
  font-weight:700;
}

.cat-body h3{
  font-size:28px;
  line-height:1.1;
  margin:0 0 14px;
  color:#001C41;
}

.cat-body p{
  font-size:15px;
  line-height:1.6;
  color:#53647c;
  margin:0;
}

.cat-link{
  font-size:14px;
  font-weight:800;
  color:#001C41;
  border-bottom:1px solid #001C41;
}

.cat-arrow{
  position:absolute;
  top:250px;

  width:52px;
  height:52px;

  border:none;
  border-radius:50%;
  background:#001C41;

  padding:0;
  margin:0;

  z-index:10;
  box-shadow:0 18px 45px rgba(0,28,65,.25);
}

/* ARROW LINE */
.cat-arrow::before{
  content:"";
  position:absolute;

  width:9px;
  height:9px;

  top:50%;
  left:50%;

  border-top:2px solid #fff;
  border-right:2px solid #fff;
}

/* LEFT ARROW */
.cat-prev::before{
  transform:
    translate(-35%, -50%)
    rotate(-135deg);
}

/* RIGHT ARROW */
.cat-next::before{
  transform:
    translate(-65%, -50%)
    rotate(45deg);
}


@media(max-width:900px){
  .cat-slider-wrap{padding:20px 54px 40px;}
  .cat-slider .cat-card{
    flex-basis:300px;
    min-width:300px;
  }
}

@media(max-width:600px){
  .cat-slider-wrap{padding:10px 45px 35px;}
  .cat-slider .cat-card{
  flex: 0 0 340px;
  min-width: 340px;
  height: 460px;
}
}

/* =====================================
   CREATIVE LUXURY CATEGORY CARD HOVER
===================================== */

.cat-card{
  position:relative;
  isolation:isolate;
  overflow:hidden;

  border:1px solid rgba(0,28,65,.07);

  transition:
    transform .65s cubic-bezier(.16,1,.3,1),
    box-shadow .65s cubic-bezier(.16,1,.3,1),
    border-color .45s ease;
}

/* PREMIUM LIGHT GLOW */
.cat-card::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;

  right:-160px;
  bottom:-160px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(0,180,216,.18) 0%,
      rgba(0,180,216,.06) 45%,
      transparent 72%
    );

  opacity:0;
  transform:scale(.4);

  transition:
    opacity .6s ease,
    transform .8s cubic-bezier(.16,1,.3,1);

  z-index:1;
  pointer-events:none;
}

/* GLASS LIGHT SWEEP */
.cat-card .cat-img::after{
  content:"";
  position:absolute;

  top:-30%;
  left:-80%;

  width:45%;
  height:170%;

  background:
    linear-gradient(
      110deg,
      transparent,
      rgba(255,255,255,.55),
      transparent
    );

  transform:skewX(-18deg);

  transition:left .9s cubic-bezier(.16,1,.3,1);

  pointer-events:none;
}

/* IMAGE AREA */
.cat-card .cat-img{
  position:relative;
  overflow:hidden;
}

.cat-card .cat-img img{
  transition:
    transform 1s cubic-bezier(.16,1,.3,1),
    filter .7s ease;
}

/* CONTENT */
.cat-card .cat-body{
  position:relative;
  z-index:3;

  transition:
    transform .6s cubic-bezier(.16,1,.3,1);
}

/* NUMBER */
.cat-card .cat-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  transition:
    color .4s ease,
    background .4s ease,
    padding .45s cubic-bezier(.16,1,.3,1),
    border-radius .4s ease;
}

/* HEADING */
.cat-card .cat-body h3{
  transition:
    color .4s ease,
    transform .55s cubic-bezier(.16,1,.3,1);
}

/* PARAGRAPH */
.cat-card .cat-body p{
  transition:
    color .4s ease,
    transform .65s cubic-bezier(.16,1,.3,1);
}

/* DISCOVER LINK */
.cat-card .cat-link{
  position:relative;

  transition:
    color .4s ease,
    letter-spacing .45s ease,
    transform .55s cubic-bezier(.16,1,.3,1);
}


/* =====================================
   HOVER EFFECT
===================================== */

.cat-card:hover{
  transform:
    translateY(-16px)
    rotateX(2deg)
    scale(1.025) !important;

  border-color:rgba(0,180,216,.28);

  box-shadow:
    0 40px 80px rgba(0,28,65,.16),
    0 15px 35px rgba(0,180,216,.10);
}

/* GLOW APPEARS */
.cat-card:hover::before{
  opacity:1;
  transform:scale(1);
}

/* IMAGE CINEMATIC ZOOM */
.cat-card:hover .cat-img img{
  transform:scale(1.1) translateY(-5px);
  filter:saturate(1.08) contrast(1.03);
}

/* LIGHT SWEEP */

.cat-card:hover .cat-img::after{
  left:140%;
}

/* NUMBER BECOMES PREMIUM PILL */

.cat-card:hover .cat-num{
  padding:6px 12px;

  border-radius:50px;

  background:rgba(0,180,216,.10);

  color:#00B4D8;
}

/* HEADING MOVEMENT */
.cat-card:hover .cat-body h3{
  color:#001C41;
  transform:translateX(5px);
}

/* PARAGRAPH MOVEMENT */
.cat-card:hover .cat-body p{
  transform:translateX(5px);
  color:#40536d;
}

/* DISCOVER MOVEMENT */
.cat-card:hover .cat-link{
  transform:translateX(5px);
  letter-spacing:.06em;
  color:#00B4D8;
}

/* ===================================== */
/* PREMIUM WHY CARD HOVER EFFECT */
/* ===================================== */

.why-card{
    position:relative;
    overflow:hidden;
    background:#ffffff;
    border:1px solid rgba(0,28,65,.08);
    border-radius:28px;

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease,
        background .45s ease;

    box-shadow:
        0 10px 25px rgba(0,28,65,.05);
}

/* Premium Gradient Background */
.why-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        #001C41 0%,
        #003566 55%,
        #00B4D8 100%
    );

    opacity:0;
    transition:.45s ease;
    z-index:0;
}

/* Light Glow */
.why-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.18);

    top:-70px;
    right:-70px;

    transform:scale(0);
    transition:.55s ease;
}

/* Content above background */
.why-card>*{
    position:relative;
    z-index:2;
}

/* Number */
.why-card .num{
    transition:.35s;
}

/* Heading */
.why-card h3{
    transition:.35s;
}

/* Paragraph */
.why-card p{
    transition:.35s;
}

/* Hover */
.why-card:hover{

    transform:
        translateY(-12px);

    border-color:transparent;

    box-shadow:
        0 35px 80px rgba(0,28,65,.25);
}

.why-card:hover::before{
    opacity:1;
}

.why-card:hover::after{
    transform:scale(1);
}

.why-card:hover .num{
    color:#FFD166;
}

/* All text white on hover */
.why-card:hover,
.why-card:hover *{
    color:#ffffff !important;
}

/* Number Gold */
.why-card:hover .num,
.why-card:hover .why-number,
.why-card:hover span:first-child{
    color:#FFD166 !important;
}

/* Paragraph */
.why-card:hover p{
    color:rgba(255,255,255,.88) !important;
}

/* Links */
.why-card:hover a{
    color:#ffffff !important;
}

.why-card:hover p{
    color:rgba(255,255,255,.82);
}

/* selva history */

.selvaa-history{
  padding:100px 6vw;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,180,216,.12), transparent 35%),
    linear-gradient(180deg,#ffffff,#f8fafc);
}

.history-wrap{
  max-width:1350px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:60px;
  align-items:center;
}

.history-visual{
  position:relative;
}

.history-img-card{
  position:relative;
  min-height:560px;
  border-radius:36px;
  overflow:hidden;
  background:#001C41;
  box-shadow:0 34px 80px rgba(0,28,65,.18);
}

/* remove inner white line */
.history-img-card::before{
  display:none !important;
}

.history-img-card img{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  object-position:center;
  border-radius:0;
  display:block;
}

.history-img-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,28,65,.02) 0%,
    rgba(0,28,65,.18) 55%,
    rgba(0,28,65,.45) 100%
  );
  pointer-events:none;
}

.history-badge{
  border:none !important;
  outline:none !important;
  box-shadow:0 24px 60px rgba(0,28,65,.30);
}

.history-badge::before,
.history-badge::after{
  display:none !important;
}

.history-img-card img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:26px;
}

.history-badge{
  position:absolute;
  right:-28px;
  bottom:42px;
  width:145px;
  height:145px;
  border-radius:50%;
  background:linear-gradient(135deg,#001C41,#003566);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 25px 55px rgba(0,28,65,.28);
}

.history-badge strong{
  font-family:'Playfair Display',serif;
  font-size:34px;
}

.history-badge span{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.8;
}

.history-tag{
  display:inline-flex;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(0,180,216,.12);
  color:#003566;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
}

.history-content h2{
  margin:24px 0 22px;
  font-family:'Playfair Display',serif;
  font-size:clamp(35px,5vw,55px);
  line-height:1.02;
  color:#00B4D8;
  font-weight:500;
}

.history-content h2 em{
  color:#001C41;
}

.history-content p{
  max-width:680px;
  font-size:18px;
  line-height:1.8;
  color:#43536b;
  margin-bottom:16px;
  text-align:justify;
}

.history-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:34px 0;
}

.history-points div{
  padding:20px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(0,28,65,.08);
  box-shadow:0 12px 28px rgba(0,28,65,.06);
}

.history-points strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:28px;
  color:#001C41;
}

.history-points span{
  display:block;
  margin-top:5px;
  font-size:13px;
  color:#5b6b82;
}

.history-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 26px;
  border-radius:999px;
  background:#001C41;
  color:#fff;
  font-weight:800;
  box-shadow:0 18px 35px rgba(0,28,65,.22);
  transition:.35s;
}

.history-btn:hover{
  transform:translateY(-4px);
  background:#00B4D8;
  color:#001C41;
}

.history-btn span{
  transition:.35s;
}

.history-btn:hover span{
  transform:translateX(5px);
}

@media(max-width:900px){
  .history-wrap{
    grid-template-columns:1fr;
  }

  .history-img-card img{
    height:420px;
  }

  .history-badge{
    right:18px;
  }

  .history-points{
    grid-template-columns:1fr;
  }
}

/* HERO 5 CAR AUTO SLIDE FIX */

.hero{
  position:relative;
}

.hero-inner{
  position:relative;
  min-height:520px;
}

.hero-car-showcase{
  position:absolute;
  right:-40px;
  top:-500px;          /* 120px irundhuchu - mela move aagum */
  width:58%;
  height:460px;
  z-index:5;
  pointer-events:none;
}

.hero-car{
  position:absolute;
  right:0;
  top:48%;           /* little upper center */
  width:100%;
  max-width:760px;
  opacity:0;
  transform:translate(180px,-50%) scale(.88);
  filter:drop-shadow(0 35px 45px rgba(0,28,65,.25));
  transition:opacity .8s ease, transform .9s ease;
}

.hero-car.active{
  opacity:1;
  transform:translate(0,-50%) scale(1.05);
}

/* ONLY SECOND HERO IMAGE SMALL */

.hero-car:nth-of-type(2).active{
  transform:translate(0,-50%) scale(.90) !important;
}

/* ONLY First HERO IMAGE SMALL */

.hero-car:nth-of-type(1).active{
  transform:translate(0,-50%) scale(.70) !important;
}



/* ===== FINAL HERO CAR POSITION FIX ===== */

.hero .hero-inner .hero-car-showcase{
  position: absolute !important;
  right: -40px !important;
  top: 70px !important;
  width: 58% !important;
  height: 460px !important;
  z-index: 5 !important;
}


.car-motion-line{
  position:absolute;
  right:40px;
  top:50%;
  width:520px;
  height:120px;
  transform:translateY(-50%);
  background:linear-gradient(90deg, transparent, rgba(0,180,216,.18), transparent);
  filter:blur(14px);
  opacity:.9;
}

@media(max-width:1000px){
  .hero-car-showcase{
  position:absolute;
  right:-40px;
  top:100px;
  width: 200px;
  height:520px;
  z-index:5;
  pointer-events:none;
}

  .hero-car{
  position:absolute;
  right:0;
  top:50%;
  width:500%;
  max-width:850px;
  opacity:0;
  transform:translate(180px,-50%) scale(.88);
  filter:drop-shadow(0 35px 45px rgba(0,28,65,.25));
  transition:opacity .8s ease, transform .9s ease;
}}

/* Dots */

.hero-dots{
    position:absolute;
    left:50%;
    bottom:15px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:20;
}

.hero-dot{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#d3d8e3;
    transition:.4s;
    cursor:pointer;
}

.hero-dot.active{
    width:36px;
    border-radius:30px;
    background:#001C41;
    box-shadow:0 0 15px rgba(0,28,65,.3);
}


/* ==================================================
   About / Product / Gallery / Contact pages
================================================== */


/* Page top hero section */
.page-hero{
  padding:170px 6vw 90px;
  text-align:center;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,180,216,.14), transparent 35%),
    linear-gradient(180deg,#ffffff,#f8fafc);
}

/* Page hero main heading */
.page-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(42px,7vw,86px);
  line-height:1;
  font-weight:500;
  color:#001C41;
  margin:18px 0;
}

/* Page hero small paragraph */
.page-hero p{
  max-width:680px;
  margin:0 auto;
  color:#53647c;
  font-size:18px;
  line-height:1.7;
}


/* Common section spacing */
.page-section{
  padding:90px 6vw;
  max-width:1240px;
  margin:0 auto;
}


/* ==================================================
   ABOUT PAGE STYLE
================================================== */

/* About page two column layout */

.about-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* About page image */
.about-split img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:0 30px 80px rgba(0,28,65,.18);
}

/* About page heading */
.about-split h2{
  font-family:'Playfair Display',serif;
  font-size:52px;
  line-height:1.05;
  color:#001C41;
  margin:22px 0;
}

/* About page paragraph */
.about-split p{
  color:#53647c;
  font-size:17px;
  line-height:1.8;
}

/* About page small 3 boxes */
.mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

/* About page each small box */
.mini-grid div{
  padding:20px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,28,65,.06);
}

.mini-grid strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:28px;
  color:#001C41;
}

.mini-grid span{
  font-size:13px;
  color:#64748B;
}


/* ==================================================
   PRODUCT PAGE STYLE
================================================== */

/* Product page card grid */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* Product page each card */
.product-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 55px rgba(0,28,65,.08);
  transition:.35s ease;
}

/* Product card hover */
.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(0,28,65,.16);
}

/* Product card image */
.product-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

/* Product card title */
.product-card h3{
  font-family:'Playfair Display',serif;
  font-size:30px;
  color:#001C41;
  padding:24px 24px 8px;
}

/* Product card paragraph */
.product-card p{
  padding:0 24px 28px;
  color:#53647c;
  line-height:1.7;
}


/* ==================================================
   GALLERY PAGE STYLE
================================================== */

/* Gallery image grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* Gallery images */
.gallery-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:26px;
  box-shadow:0 20px 50px rgba(0,28,65,.12);
  transition:.35s ease;
}

/* Gallery image hover */
.gallery-grid img:hover{
  transform:scale(1.03);
}


/* ==================================================
   CONTACT PAGE STYLE
================================================== */

/* Contact page left info + right form */
.contact-page-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:start;
}


/* ==================================================
   CONTACT PAGE STYLE
================================================== */

/* Contact page left side + right side layout */
.contact-page-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:start;
}


/* ==================================================
   CONTACT PAGE - BLUE ENQUIRY FORM DESIGN
================================================== */


/* RIGHT SIDE FULL ENQUIRY BOX */
.contact-page-grid .enquiry-form{
  background: linear-gradient(
    145deg,
    #001C41 0%,
    #003566 100%
  );

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 50px 44px;

  box-shadow:
    0 30px 70px rgba(0,28,65,0.25);
}


/* EACH INPUT BOX */
.contact-page-grid .field{
  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 16px;

  padding: 8px 18px;
  margin-bottom: 18px;

  transition: 0.3s ease;
}


/* INPUT TEXT */
.contact-page-grid .field input,
.contact-page-grid .field textarea{
  width: 100%;
  background: transparent;

  border: none;
  outline: none;

  color: #FFFFFF;
}


/* LABEL COLOR */
.contact-page-grid .field label{
  color: #FFD166;
}


/* INPUT CLICK / FOCUS EFFECT */
.contact-page-grid .field:focus-within{
  background: rgba(255,255,255,0.14);

  border-color: #00B4D8;

  box-shadow:
    0 0 0 3px rgba(0,180,216,0.12);

  transform: translateY(-2px);
}

/* ==================================================
   CONTACT FORM - PREMIUM WHITE BUTTON
================================================== */

.contact-page-grid .enquiry-form .btn-primary{
  width: 100%;

  background: linear-gradient(
    135deg,
    #FFFFFF 0%,
    #FFF4D6 100%
  ) !important;

  color: #001C41 !important;

  border: 2px solid #FFD166 !important;
  border-radius: 100px;

  font-weight: 800;
  opacity: 1 !important;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.25);
}


/* BUTTON ARROW */
.contact-page-grid .enquiry-form .btn-primary span{
  color: #001C41 !important;
}


/* BUTTON HOVER */
.contact-page-grid .enquiry-form .btn-primary:hover{
  background: #FFD166 !important;
  color: #001C41 !important;

  transform: translateY(-3px);

  box-shadow:
    0 22px 50px rgba(0,0,0,0.32);
}



/* ==================================================
   RESPONSIVE DESIGN
   Mobile / Tablet view
================================================== */

@media(max-width:900px){
  .about-split,
  .contact-page-grid{
    grid-template-columns:1fr;
  }

  .product-grid,
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .product-grid,
  .gallery-grid,
  .mini-grid{
    grid-template-columns:1fr;
  }

  .page-hero{
    padding:140px 5vw 70px;
  }
}


/* =========================================
   PREMIUM MISSION • VISION • QUALITY
   ========================================= */

.mvq-premium-section{
  padding:100px 6vw;
  background:linear-gradient(180deg,#f8fbff,#ffffff);
}

.mvq-premium-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 60px;
}

.mvq-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-size:13px;
  font-weight:800;
  letter-spacing:3px;
  color:#00B4D8;
}

.mvq-rule{
  width:45px;
  height:1px;
  background:#00B4D8;
}

.mvq-premium-heading h2{
  margin-top:20px;
  font-family:'Playfair Display',serif;
  font-size:clamp(38px,5vw,64px);
  line-height:1.05;
  color:#001C41;
}

.mvq-premium-heading em{
  color:#00B4D8;
}

.mvq-premium-cards{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.mvq-premium-card{
  background:#fff;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,28,65,.12);
  transition:.45s ease;
}

.mvq-premium-card:hover{
  transform:translateY(-14px);
  box-shadow:0 38px 90px rgba(0,28,65,.20);
}

.mvq-image{
  position:relative;
  height:260px;
  overflow:hidden;
}

.mvq-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}


.mvq-image-label{
  position:absolute;
  bottom:18px;
  left:22px;
  background:rgba(255,255,255,.9);
  color:#001C41;
  padding:8px 16px;
  border-radius:50px;
  font-weight:900;
  letter-spacing:2px;
}

.mvq-card-content{
  padding:32px;
}

.mvq-card-content h3{
  font-family:'Playfair Display',serif;
  font-size:32px;
  color:#001C41;
  margin-bottom:14px;
}

.mvq-card-content p{
  font-size:16px;
  line-height:1.7;
  color:#53647c;
  margin-bottom:18px;
}

.mvq-card-content ul{
  list-style:none;
  padding:0;
  margin:0;
}

.mvq-card-content li{
  margin-bottom:10px;
  color:#001C41;
  font-weight:600;
}

.mvq-card-content li::before{
  content:"✓";
  color:#00B4D8;
  margin-right:10px;
}

.mvq-arrow{
  position:absolute;
  right:32px;
  bottom:32px;

  width:54px;
  height:54px;
  border-radius:50%;

  background:linear-gradient(135deg,#001C41,#003566);
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  box-shadow:0 18px 35px rgba(0,28,65,.25);
  transition:.35s ease;
}

.mvq-premium-card{
  position:relative;
}

.mvq-premium-card:hover .mvq-arrow{
  transform:translateY(-6px) rotate(45deg);
  background:#00B4D8;
}
@media(max-width:900px){
  .mvq-premium-cards{
    grid-template-columns:1fr;
  }
}


.about-content p{
  font-size: 18px;
  line-height: 1.8;
  color: #43536b;
  text-align: justify;
}

/* ===== MISSION WHITE AREA CONTENT FINAL FIX ===== */

@media (min-width:1101px){

  /* LEFT IMAGE 40% — RIGHT CONTENT 60% */
  .premium-mission-section .premium-mission-container{
    display:grid !important;
    grid-template-columns:40% 60% !important;
    min-height:820px !important;
  }

  /* RIGHT WHITE AREA CONTENT */
  .premium-mission-section .mission-content{
    position:relative !important;
    z-index:10 !important;

    width:100% !important;
    height:100% !important;

    margin:0 !important;

    padding:
      55px
      65px
      45px
      90px !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;

    transform:none !important;
  }

  /* OUR MISSION */
  .premium-mission-section .mission-eyebrow{
    margin:0 0 20px !important;
  }

  /* MAIN HEADING */
  .premium-mission-section .mission-content > h2{
    max-width:760px !important;

    margin:0 0 28px !important;

    font-size:clamp(44px,3.8vw,66px) !important;
    line-height:1.04 !important;
    letter-spacing:-2.5px !important;
  }

  /* ALL FIVE CARDS */
  .premium-mission-section .mission-points{
    width:100% !important;
    margin:0 !important;

    display:flex !important;
    flex-direction:column !important;
    gap:14px !important;
  }

  .premium-mission-section .mission-point{
    width:100% !important;
    margin:0 !important;
  }
}


/* GOLD LINE — BLUE SHAPE-KU EXACT ATTACH */

.premium-mission-section{
  --mission-navy:#001C41;
  --mission-blue:#003566;
  --mission-cyan:#00B4D8;
  --mission-light-blue:#239DFF;
  --mission-gold:#E7B94F;
  --mission-white:#FFFFFF;
  --mission-text:#0A2147;

  position:relative;
  width:min(1600px, calc(100% - 40px));
  min-height:820px;
  margin:80px auto;
  padding:0;
  overflow:hidden;
  border-radius:38px;

  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(0,180,216,.12),
      transparent 30%
    ),
    linear-gradient(
      110deg,
      #001C41 0%,
      #002858 37.6%,
      #E8B83F 37.6%,
      #FFD166 38.05%,
      #F5F9FD 38.05%,
      #FFFFFF 100%
    );

  box-shadow:
    0 40px 100px rgba(0,28,65,.16),
    inset 0 0 0 1px rgba(255,255,255,.7);

  isolation:isolate;
}

/* LEFT SIDE BLUE DECORATION */

.premium-mission-section{
  --mission-navy:#001C41;
  --mission-blue:#003566;
  --mission-cyan:#00B4D8;
  --mission-light-blue:#239DFF;
  --mission-gold:#E7B94F;
  --mission-white:#FFFFFF;
  --mission-text:#0A2147;

  position:relative;
  width:min(1600px, calc(100% - 40px));
  min-height:820px;
  margin:80px auto;
  padding:0;
  overflow:hidden;
  border-radius:38px;

  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(0,180,216,.12),
      transparent 30%
    ),
    linear-gradient(
      110deg,
      #001C41 0%,
      #002858 37.6%,
      #E8B83F 37.6%,
      #FFD166 38.05%,
      #F5F9FD 38.05%,
      #FFFFFF 100%
    );

  box-shadow:
    0 40px 100px rgba(0,28,65,.16),
    inset 0 0 0 1px rgba(255,255,255,.7);

  isolation:isolate;
}


/* ==================================================
   LEFT VISUAL SIDE
================================================== */

.mission-visual{
  position:relative;
  min-height:820px;
  padding:48px 44px 55px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}


/* BRAND */

.mission-brand{
  position:absolute;
  top:42px;
  left:48px;

  display:flex;
  align-items:center;
  gap:15px;

  color:#FFFFFF;
}

.mission-brand > i{
  font-size:34px;
  color:#FFFFFF;
}

.mission-brand div{
  display:flex;
  flex-direction:column;
}

.mission-brand strong{
  font-family:'Playfair Display',serif;
  font-size:26px;
  line-height:1;
  letter-spacing:7px;
  font-weight:700;
}

.mission-brand span{
  margin-top:7px;
  font-family:'Playfair Display',serif;
  font-size:11px;
  letter-spacing:4px;
  color:rgba(255,255,255,.78);
}


/* BADGE */

.quality-badge-wrap{
  position:absolute;

  width:460px;

  top:50%;
  left:40%;

  transform:translate(-50%, -50%);

  margin:0;
  z-index:3;

  animation:none;
}

.quality-badge-image{
  position:relative;
  z-index:3;

  width:100%;
  height:auto;

  object-fit:contain;

  filter:
    drop-shadow(0 34px 32px rgba(0,0,0,.32))
    saturate(1.08)
    contrast(1.03);
}

.badge-shadow{
  position:absolute;
  z-index:1;

  left:14%;
  right:14%;
  bottom:-28px;

  height:42px;
  border-radius:50%;

  background:rgba(0,0,0,.40);
  filter:blur(22px);
}


/* GLOW RINGS */

.mission-glow-circle{
  position:absolute;

  width:430px;
  height:430px;

  top:48%;
  left:40%;

  transform:translate(-50%,-50%);
  border-radius:50%;

  border:1px solid rgba(0,180,216,.28);

  box-shadow:
    0 0 0 16px rgba(0,180,216,.025),
    0 0 0 32px rgba(0,180,216,.018),
    0 0 65px rgba(0,180,216,.18);

  animation:missionGlowPulse 4s ease-in-out infinite;
}

/* LOCATION */

.mission-location{
  position:absolute;
  left:50px;
  bottom:42px;

  display:flex;
  align-items:center;
  gap:16px;

  color:#FFFFFF;
}

.location-line{
  width:3px;
  height:48px;
  background:linear-gradient(
    180deg,
    #00B4D8,
    rgba(0,180,216,.15)
  );
}

.mission-location div{
  display:flex;
  flex-direction:column;
}

.mission-location strong{
  font-size:16px;
  letter-spacing:4px;
}

.mission-location small{
  margin-top:4px;
  color:rgba(255,255,255,.68);
  letter-spacing:3px;
  font-size:10px;
}


/* ==================================================
   RIGHT CONTENT SIDE
================================================== */

.mission-content{
  position:relative;

  padding:64px 9% 55px 10%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}


/* EYEBROW */

.mission-eyebrow{
  display:flex;
  align-items:center;
  gap:18px;

  margin-bottom:18px;
}

.mission-eyebrow span{
  font-size:13px;
  font-weight:800;
  letter-spacing:5px;
  color:#239DFF;
}

.mission-eyebrow i{
  display:block;
  width:130px;
  height:2px;

  background:linear-gradient(
    90deg,
    #239DFF,
    transparent
  );
}


/* MAIN HEADING */

.mission-content > h2{
  margin:0 0 28px;

  font-family:'Playfair Display',serif;
  font-size:clamp(40px,4vw,66px);
  line-height:1.08;
  letter-spacing:-2.5px;

  font-weight:800;
  color:#001C41;
}

.mission-content > h2 span{
  color:#239DFF;
}


/* ==================================================
   MISSION POINT CARDS
================================================== */

.mission-points{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mission-point{
  position:relative;

  min-height:92px;
  padding:12px 28px 12px 14px;

  display:grid;
  grid-template-columns:68px 1px 1fr 42px;
  align-items:center;
  gap:18px;

  border-radius:25px;

  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,28,65,.065);

  box-shadow:
    0 16px 35px rgba(0,28,65,.095),
    inset 0 1px 0 rgba(255,255,255,.9);

  overflow:hidden;

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease,
    border-color .35s ease;
}


/* CARD LEFT ACCENT */

.mission-point::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:0;

  background:linear-gradient(
    180deg,
    #001C41,
    #003566
  );

  transition:width .45s cubic-bezier(.16,1,.3,1);
}


/* LIGHT SWEEP */

.mission-point::after{
  content:"";
  position:absolute;

  top:-50%;
  left:-30%;

  width:18%;
  height:200%;

  background:linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,.78),
    transparent
  );

  transform:skewX(-18deg);
  opacity:0;

  transition:
    left .8s ease,
    opacity .3s ease;

  pointer-events:none;
}


/* ICON */

.mission-icon{
  position:relative;
  z-index:2;

  width:64px;
  height:64px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:linear-gradient(
    145deg,
    #001C41,
    #00427E
  );

  color:#FFFFFF;
  font-size:25px;

  box-shadow:
    0 12px 25px rgba(0,28,65,.22),
    inset 0 1px 0 rgba(255,255,255,.22);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    background .35s ease;
}


/* DIVIDER */

.mission-divider{
  width:1px;
  height:54px;
  background:rgba(0,28,65,.13);
}


/* TEXT */

.mission-point-text{
  position:relative;
  z-index:2;
}

.mission-point-text h3{
  margin:0 0 4px;

  font-family:'Playfair Display',serif;
  font-size:17px;
  line-height:1.25;

  color:#001C41;
  font-weight:800;
}

.mission-point-text p{
  margin:0;

  color:#4D5B70;
  font-size:16px;
  line-height:1.4;
}

.mission-point-text p strong{
  color:#4D5B70;
  font-weight:500;
  letter-spacing:1px;
}


/* CHECK */

.mission-check{
  position:relative;
  z-index:2;

  width:38px;
  height:38px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  color:#239DFF;
  font-size:20px;

  border:1px solid rgba(35,157,255,.20);

  background:rgba(35,157,255,.055);

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    background .35s ease,
    color .35s ease;
}


/* CARD HOVER */

.mission-point:hover{
  transform:translateX(12px);

  border-color:rgba(0,180,216,.24);

  box-shadow:
    0 25px 60px rgba(0,28,65,.15),
    0 0 0 5px rgba(0,180,216,.035);
}

.mission-point:hover::before{
  width:7px;
}

.mission-point:hover::after{
  left:120%;
  opacity:1;
}

.mission-point:hover .mission-icon{
  transform:rotate(-7deg) scale(1.08);

  background:linear-gradient(
    145deg,
    #003566,
    #00B4D8
  );
}

.mission-point:hover .mission-check{
  transform:rotate(360deg) scale(1.06);
  background:#00B4D8;
  color:#FFFFFF;
}


/* ==================================================
   DOT PATTERNS
================================================== */

.mission-dot-pattern{
  position:absolute;
  z-index:4;

  width:130px;
  height:90px;

  opacity:.38;

  background-image:
    radial-gradient(
      circle,
      #001C41 2px,
      transparent 2.5px
    );

  background-size:15px 15px;

  pointer-events:none;
}

.mission-dot-top{
  right:45px;
  top:28px;
}

.mission-dot-bottom{
  right:35px;
  bottom:20px;
}


/* BACKGROUND CAR WATERMARK */

.mission-bg-car{
  position:absolute;
  right:-80px;
  bottom:-80px;

  width:650px;
  height:330px;

  background:url("assets/mission-car-watermark.png")
             no-repeat center / contain;

  opacity:.055;
  z-index:1;
  pointer-events:none;
}


/* ==================================================
   REVEAL ANIMATION
================================================== */

.reveal-mission{
  opacity:1;
  transform:translateY(0);

  transition:
    opacity .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1);
}


/* ==================================================
   KEYFRAMES
================================================== */

@keyframes missionBadgeFloat{
  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-12px);
  }
}

@keyframes missionGlowPulse{
  0%,100%{
    opacity:.55;
    transform:translate(-50%,-50%) scale(.96);
  }

  50%{
    opacity:1;
    transform:translate(-50%,-50%) scale(1.04);
  }
}


/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1100px){

  .premium-mission-section{
    width:calc(100% - 28px);
  }

  .premium-mission-container{
    grid-template-columns:42% 58%;
  }

  .mission-content{
    padding-left:8%;
    padding-right:6%;
  }

  .mission-content > h2{
    font-size:44px;
  }

  .mission-point-text h3{
    font-size:15px;
  }

  .mission-point-text p{
    font-size:14px;
  }
}


@media(max-width:850px){

  .premium-mission-section{
    background:linear-gradient(
      180deg,
      #001C41 0,
      #003566 45%,
      #F5F9FD 45.2%,
      #FFFFFF 100%
    );
  }

  .premium-mission-section::before{
    display:none;
  }

  .premium-mission-container{
    grid-template-columns:1fr;
  }

  .mission-visual{
    min-height:620px;
    padding-top:110px;
  }

  .mission-content{
    padding:70px 28px;
  }

  .mission-brand{
    left:28px;
  }

  .mission-location{
    left:28px;
  }

.quality-badge-wrap{
  position:absolute;

  width:min(460px,90%);

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);
  z-index:3;

  animation:missionBadgeFloat 4.5s ease-in-out infinite;
}


@media(max-width:560px){

  .premium-mission-section{
    width:calc(100% - 20px);
    border-radius:25px;
    margin:50px auto;
  }

  .mission-visual{
    min-height:520px;
  }

  .mission-brand strong{
    font-size:20px;
    letter-spacing:5px;
  }

  .mission-content{
    padding:55px 18px;
  }

  .mission-content > h2{
    font-size:35px;
    letter-spacing:-1.5px;
  }

  .mission-point{
    grid-template-columns:52px 1fr 34px;
    gap:12px;
    padding:12px;
  }

  .mission-icon{
    width:50px;
    height:50px;
    font-size:20px;
  }

  .mission-divider{
    display:none;
  }

  .mission-point-text h3{
    font-size:14px;
  }

  .mission-point-text p{
    font-size:13px;
  }

  .mission-check{
    width:32px;
    height:32px;
    font-size:16px;
  }

  .mission-glow-circle{
    width:330px;
    height:330px;
  }
}

}


/* ==================================================
   SELVAA OUR TEAM PREMIUM SECTION
================================================== */

.selvaa-team-section {
  --team-bg: #ffffff;
--team-bg-light: #f7fbff;

--team-card: rgba(255,255,255,.95);
--team-border: rgba(0,28,65,.08);

--team-gold: #2D9CFF;
--team-gold-light: #6BBEFF;

--team-white: #001C41;
--team-muted: #6C7A92;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
    radial-gradient(
        circle at 85% 15%,
        rgba(35, 157, 255, 0.14),
        transparent 30%
    ),
    radial-gradient(
        circle at 15% 60%,
        rgba(0, 180, 216, 0.08),
        transparent 35%
    ),
    linear-gradient(
        135deg,
        #ffffff 0%,
        #f7fbff 55%,
        #eef8ff 100%
    );
    padding: 100px 24px;
    color: var(--team-white);
}

.selvaa-team-section *,
.selvaa-team-section *::before,
.selvaa-team-section *::after {
    box-sizing: border-box;
}

.team-container {
    position: relative;
    z-index: 5;

    width: min(1480px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: 60px;
}

/* Background decorative shapes */

.team-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.team-shape-one {
    width: 440px;
    height: 440px;
    top: -230px;
    right: 18%;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.10),
        transparent 60%
    );

    transform: rotate(30deg);
}

.team-shape-two {
    width: 500px;
    height: 500px;
    left: -300px;
    bottom: -330px;

    border: 1px solid rgba(232, 173, 50, 0.12);
    border-radius: 50%;
}

/* Dot patterns */

.team-dots {
    position: absolute;
    z-index: 1;
    width: 130px;
    height: 90px;

    opacity: 0.9;

    background-image:
        radial-gradient(
            circle,
            var(--team-gold) 2px,
            transparent 2.5px
        );

    background-size: 20px 20px;
}

.dots-top {
    top: 35px;
    right: 7%;
}

.dots-bottom {
    left: 15px;
    bottom: 60px;
}

/* ==================================================
   LEFT CONTENT
================================================== */

.team-content {
    position: relative;
    z-index: 5;
}

.team-eyebrow {
    margin-bottom: 24px;

    display: flex;
    align-items: center;
    gap: 13px;

    font-family: "Playfair Display",serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 7px;
    color: #43536b;
}

.eyebrow-icon {
    display: grid;
    place-items: center;

    width: 32px;
    height: 32px;

    font-size: 21px;
    color: var(--team-gold);
}

.eyebrow-line {
    width: 110px;
    height: 2px;

    background: linear-gradient(
        90deg,
        var(--team-gold),
        rgba(232, 173, 50, 0)
    );
}

.eyebrow-slashes {
    letter-spacing: -2px;
    color: var(--team-gold);
}

.team-title {
    margin: 0;

    max-width: 650px;

    font-family: "Playfair Display",serif;
    font-size: clamp(48px, 5.5vw, 83px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -4px;
    color: #blue;
}

.team-title span {
    display: block;
    margin-top: 8px;

    font-family: "Playfair Display", serif;
    font-size: 0.82em;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--team-gold);
}

.team-title-decoration {
    margin: 24px 0 25px;

    display: flex;
    align-items: center;
    gap: 8px;
}

.team-title-decoration span {
    width: 76px;
    height: 4px;
    border-radius: 20px;

    background: var(--team-gold);
}

.team-title-decoration i {
    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: var(--team-gold);
}

.team-description {
    max-width: 650px;
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: blue;
}

/* ==================================================
   FEATURE CARDS
================================================== */

.team-features {
    margin-top: 34px;

    display: grid;
    grid-template-columns: repeat(4, minmax(115px, 1fr));
    gap: 14px;
}

.team-feature-card {
    position: relative;
    overflow: hidden;

    min-height: 185px;
    padding: 18px 10px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border: 1px solid var(--team-border);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 15px 35px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.team-feature-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 0%,
        rgba(232, 173, 50, 0.13),
        transparent 48%
    );

    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-feature-card:hover {
    transform: translateY(-10px);

    border-color: rgba(232, 173, 50, 0.55);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(232, 173, 50, 0.08);
}

.team-feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    z-index: 2;

    width: 67px;
    height: 67px;
    margin-bottom: 14px;

    display: grid;
    place-items: center;

    border: 1px solid var(--team-gold);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.28);

    font-size: 25px;
    color: var(--team-gold);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.team-feature-card:hover .feature-icon {
    color: #111;
    background: var(--team-gold);
    transform: rotateY(360deg);
}

.team-feature-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 7px;

    font-family: "Playfair Display",serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.team-feature-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    font-family: "Playfair Display", sans-serif;
    font-size: 11px;
    line-height: 1.65;
    color: #c5cad1;
}

.feature-line {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--team-gold),
        transparent
    );
}

/* ==================================================
   ACTION CARDS
================================================== */

.team-actions {
    margin-top: 32px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.team-call-card,
.team-appointment-card {
    min-height: 98px;
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 16px;

    border-radius: 12px;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.team-call-card {
    color: #fff;

    border: 1px solid rgba(232, 173, 50, 0.36);

    background:
        linear-gradient(
            135deg,
            #111820,
            #182331
        );

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
}

.team-appointment-card {
    position: relative;

    color: #101721;
    border: 1px solid rgba(255, 255, 255, 0.75);

    background: linear-gradient(
        135deg,
        #fff,
        #f4f4f4
    );

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.team-call-card:hover,
.team-appointment-card:hover {
    transform: translateY(-6px);
}

.team-call-card:hover {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(232, 173, 50, 0.08);
}

.team-appointment-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.action-icon,
.appointment-icon {
    flex: 0 0 auto;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    font-size: 23px;
}

.action-icon {
    color: #fff;

    background: linear-gradient(
        135deg,
        var(--team-gold-light),
        #cc8c13
    );

    box-shadow: 0 10px 25px rgba(232, 173, 50, 0.20);
}

.appointment-icon {
    color: var(--team-gold);
    background: rgba(232, 173, 50, 0.09);
}

.action-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-content small {
    font-family: "Playfair Display", serif;
    font-size: 13px;
    font-weight: 500;
}

.action-content strong {
    font-family: "Playfair Display",serif;
    font-size: clamp(16px, 1.7vw, 23px);
    font-weight: 800;
    line-height: 1.15;
}

.team-call-card .action-content strong {
    color: var(--team-gold-light);
}

.action-arrow {
    margin-left: auto;

    flex: 0 0 auto;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;
    background: var(--team-gold);

    transition: transform 0.3s ease;
}

.team-appointment-card:hover .action-arrow {
    transform: translateX(5px);
}

/* ==================================================
   RIGHT IMAGE AREA
================================================== */

.team-visual {
    position: relative;

    min-height: 820px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-back-panel {
    position: absolute;
    top: 0;
    left: 17%;
    right: 3%;
    bottom: 65px;

    border: 1px solid rgba(232, 173, 50, 0.72);
    border-radius: 85px 35px 100px 140px;

    transform: skewX(-6deg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.01)
        );

    box-shadow:
        inset 0 0 70px rgba(255, 255, 255, 0.02),
        0 30px 80px rgba(0, 0, 0, 0.35);
}

.car-frame {
    position: relative;
    overflow: hidden;
    z-index: 2;

    width: 100%;
    min-height: 700px;

    border: 6px solid rgba(255, 255, 255, 0.92);
    border-radius: 90px 35px 100px 125px;

    background:
        linear-gradient(
            180deg,
            #191d21 0%,
            #11161b 55%,
            #2d3337 100%
        );

    clip-path: polygon(
        15% 0,
        100% 0,
        100% 83%,
        92% 92%,
        78% 92%,
        70% 100%,
        18% 100%,
        0 72%,
        0 18%
    );

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.52),
        inset 0 0 80px rgba(255, 255, 255, 0.03);
}

.car-frame::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    border: 2px solid rgba(232, 173, 50, 0.92);

    clip-path: inherit;
    pointer-events: none;
}

.car-frame::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );

    background-size: 155px 100%;
    opacity: 0.18;
}

.showroom-lights {
    position: absolute;
    top: 52px;
    left: 18%;
    right: 10%;
    z-index: 2;

    display: flex;
    justify-content: space-around;
}

.showroom-lights span {
    position: relative;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #fff3c3;

    box-shadow:
        0 0 12px #fff,
        0 0 28px var(--team-gold),
        0 24px 45px rgba(255, 214, 116, 0.42);
}

.showroom-lights span::after {
    content: "";

    position: absolute;
    top: 7px;
    left: 50%;

    width: 95px;
    height: 135px;

    transform: translateX(-50%);

    background: linear-gradient(
        180deg,
        rgba(255, 240, 190, 0.17),
        transparent 80%
    );

    clip-path: polygon(
        42% 0,
        58% 0,
        100% 100%,
        0 100%
    );
}

.visual-brand {
    position: absolute;
    z-index: 3;
    top: 135px;
    left: 50%;

    transform: translateX(-5%);

    display: flex;
    flex-direction: column;
    align-items: center;

    color: var(--team-gold-light);
    text-shadow: 0 0 20px rgba(232, 173, 50, 0.28);
}

.brand-car-line {
    margin-bottom: -6px;
    font-size: 38px;
}

.visual-brand strong {
    font-family: "Playfair Display",serif;
    font-size: clamp(27px, 3vw, 46px);
    font-weight: 800;
    letter-spacing: 4px;
}

.visual-brand small {
    font-family: "Playfair Display",serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 8px;
}

.team-car-image {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 170px;

    width: 112%;
    max-width: none;
    height: auto;

    transform: translateX(-50%);

    filter:
        drop-shadow(0 22px 22px rgba(0, 0, 0, 0.54))
        saturate(1.06);

    transition: transform 0.45s ease;
}

.team-visual:hover .team-car-image {
    transform: translateX(-50%) scale(1.025);
}

.car-floor-shadow {
    position: absolute;
    z-index: 4;
    left: 15%;
    right: 6%;
    bottom: 145px;

    height: 50px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.62);
    filter: blur(18px);
}

.visual-reflection {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -150px;

    height: 300px;
    overflow: hidden;

    opacity: 0.16;
    transform: scaleY(-1);

    filter: blur(3px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        transparent 80%
    );
}

.visual-reflection img {
    width: 108%;
    transform: translateX(-3%);
}

.visual-tag {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 10px;

    min-width: 445px;
    min-height: 160px;
    padding: 30px 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    border-top: 3px solid var(--team-gold);
    border-radius: 70px 0 20px 20px;

    background:
        linear-gradient(
            135deg,
            #151c24,
            #080c11
        );

    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.55);
}

.tag-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    border: 2px solid var(--team-gold);
    border-radius: 20px;

    font-size: 27px;
    color: var(--team-gold);
}

.visual-tag div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-tag strong,
.visual-tag small {
    font-family: "Playfair Display",serif;
    text-transform: uppercase;
}

.visual-tag strong {
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--team-gold);
}

.visual-tag small {
    font-size: 11px;
    letter-spacing: 4px;
    color: #fff;
}

/* ==================================================
   SCROLL ANIMATION
================================================== */

.reveal-left,
.reveal-right {
    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==================================================
   RESPONSIVE TABLET
================================================== */

@media (max-width: 1250px) {

    .team-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .team-title {
        font-size: clamp(45px, 5vw, 68px);
    }

    .team-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-visual {
        min-height: 690px;
    }

    .car-frame {
        min-height: 610px;
    }

    .team-car-image {
        bottom: 145px;
    }

    .visual-tag {
        min-width: 380px;
    }

}

/* ==================================================
   RESPONSIVE MOBILE / SMALL TABLET
================================================== */

@media (max-width: 991px) {

    .selvaa-team-section {
        padding: 80px 20px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .team-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .team-title {
        max-width: 700px;
    }

    .team-description {
        max-width: 720px;
    }

    .team-visual {
        width: min(760px, 100%);
        min-height: 700px;
        margin: 0 auto;
    }

    .car-frame {
        min-height: 620px;
    }

}

/* ==================================================
   RESPONSIVE MOBILE
================================================== */

@media (max-width: 650px) {

    .selvaa-team-section {
        padding: 65px 15px;
    }

    .team-eyebrow {
        gap: 9px;
        font-size: 11px;
        letter-spacing: 4px;
    }

    .eyebrow-line {
        width: 55px;
    }

    .team-title {
        font-size: clamp(42px, 13vw, 60px);
        line-height: 1;
        letter-spacing: -2.5px;
    }

    .team-title span {
        font-size: 0.78em;
    }

    .team-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .team-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .team-feature-card {
        min-height: 170px;
        padding: 16px 8px;
    }

    .feature-icon {
        width: 57px;
        height: 57px;
        font-size: 21px;
    }

    .team-actions {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-call-card,
    .team-appointment-card {
        min-height: 90px;
    }

    .team-visual {
        min-height: 510px;
    }

    .visual-back-panel {
        left: 5%;
        bottom: 50px;
        border-radius: 50px 25px 60px 70px;
    }

    .car-frame {
        min-height: 465px;
        border-width: 4px;
        border-radius: 55px 22px 65px 75px;

        clip-path: polygon(
            14% 0,
            100% 0,
            100% 82%,
            91% 91%,
            77% 91%,
            69% 100%,
            18% 100%,
            0 74%,
            0 17%
        );
    }

    .showroom-lights {
        top: 35px;
    }

    .showroom-lights span {
        width: 6px;
        height: 6px;
    }

    .visual-brand {
        top: 90px;
        left: 48%;
    }

    .visual-brand strong {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .visual-brand small {
        font-size: 7px;
        letter-spacing: 4px;
    }

    .brand-car-line {
        font-size: 27px;
    }

    .team-car-image {
        width: 125%;
        bottom: 125px;
    }

    .car-floor-shadow {
        bottom: 108px;
    }

    .visual-reflection {
        bottom: -85px;
        height: 200px;
    }

    .visual-tag {
        right: 5px;
        bottom: 0;

        min-width: 270px;
        min-height: 95px;
        padding: 18px 20px;
        gap: 14px;

        border-radius: 40px 0 15px 15px;
    }

    .tag-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
    }

    .visual-tag strong {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .visual-tag small {
        font-size: 8px;
        letter-spacing: 2px;
    }

}

/* Small phones */

@media (max-width: 390px) {

    .team-features {
        grid-template-columns: 1fr;
    }

    .team-feature-card {
        min-height: 150px;
    }

    .team-visual {
        min-height: 440px;
    }

    .car-frame {
        min-height: 405px;
    }

    .team-car-image {
        width: 137%;
        bottom: 112px;
    }

    .visual-tag {
        min-width: 245px;
    }

}


/* =========================================
   OUR TEAM CONTENT VISIBILITY FIX
========================================= */

.selvaa-team-section .reveal-left,
.selvaa-team-section .reveal-right {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.selvaa-team-section .team-content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.selvaa-team-section .team-visual {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: flex !important;
}


/* =========================================
   OUR TEAM ACTION CARDS - FINAL HOVER FIX
========================================= */

/* இரண்டு cards normal design */

.team-call-card,
.team-appointment-card {
    position: relative;
    overflow: hidden;

    min-height: 110px;
    padding: 20px 22px;

    display: flex;
    align-items: center;
    gap: 18px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f3f9ff 100%
    ) !important;

    border: 1px solid rgba(45, 156, 255, 0.18) !important;

    color: #001c41 !important;

    box-shadow:
        0 15px 35px rgba(0, 28, 65, 0.10) !important;

    transition:
        background 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* Mouse hover பண்ணும்போது card blue ஆகும் */

.team-call-card:hover,
.team-appointment-card:hover {
    background: linear-gradient(
        135deg,
        #001c41 0%,
        #003566 55%,
        #2d9cff 100%
    ) !important;

    border-color: rgba(45, 156, 255, 0.70) !important;

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0, 53, 102, 0.28) !important;
}


/* Icon normal condition */

.team-call-card .action-icon,
.team-appointment-card .appointment-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(45, 156, 255, 0.12) !important;

    color: #2d9cff !important;

    font-size: 23px;

    box-shadow: none !important;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}


/* Hover பண்ணும்போது icon white ஆகும் */

.team-call-card:hover .action-icon,
.team-appointment-card:hover .appointment-icon {
    background: #ffffff !important;
    color: #2d9cff !important;

    transform: rotate(-6deg) scale(1.08);
}


/* Small text normal color */

.team-call-card .action-content small,
.team-appointment-card .action-content small {
    color: #5f6f85 !important;
}


/* Main text normal color */

.team-call-card .action-content strong,
.team-appointment-card .action-content strong {
    color: #001c41 !important;
}


/* Hover பண்ணும்போது இரண்டு text-மும் white */

.team-call-card:hover .action-content small,
.team-call-card:hover .action-content strong,
.team-appointment-card:hover .action-content small,
.team-appointment-card:hover .action-content strong {
    color: #ffffff !important;
}


/* Arrow normal condition */

.team-appointment-card .action-arrow {
    background: #2d9cff !important;
    color: #ffffff !important;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}


/* Hover arrow effect */

.team-appointment-card:hover .action-arrow {
    background: #ffffff !important;
    color: #2d9cff !important;

    transform: translateX(5px);
}


/* =========================================
   OUR TEAM FEATURE CARDS - HOVER BLUE DESIGN
========================================= */

/* Normal card */

.team-feature-card{
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #f3f9ff 100%
    ) !important;

    border:1px solid rgba(45,156,255,.15) !important;

    box-shadow:
        0 15px 35px rgba(0,28,65,.08) !important;

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Hover background */

.team-feature-card:hover{
    background:linear-gradient(
        135deg,
        #001c41 0%,
        #003566 55%,
        #2d9cff 100%
    ) !important;

    border-color:rgba(45,156,255,.70) !important;

    transform:translateY(-10px);

    box-shadow:
        0 28px 60px rgba(0,53,102,.28) !important;
}


/* Normal icon */

.team-feature-card .feature-icon{
    background:rgba(45,156,255,.12) !important;
    color:#2d9cff !important;

    border:1px solid #2d9cff;

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease,
        border-color .4s ease;
}


/* Hover icon */

.team-feature-card:hover .feature-icon{
    background:#ffffff !important;
    color:#2d9cff !important;
    border-color:#ffffff !important;

    transform:rotate(-6deg) scale(1.08);
}


/* Normal heading */

.team-feature-card h3{
    color:#001c41 !important;

    transition:
        color .4s ease,
        transform .4s ease;
}


/* Normal paragraph */

.team-feature-card p{
    color:#64748b !important;

    transition:
        color .4s ease,
        transform .4s ease;
}


/* Hover text white */

.team-feature-card:hover h3{
    color:#ffffff !important;
    transform:translateY(-2px);
}

.team-feature-card:hover p{
    color:rgba(255,255,255,.85) !important;
}


/* Bottom blue line */

.team-feature-card .feature-line{
    background:linear-gradient(
        90deg,
        transparent,
        #2d9cff,
        transparent
    ) !important;

    transition:
        width .4s ease,
        background .4s ease;
}


/* Hover line white */

.team-feature-card:hover .feature-line{
    background:linear-gradient(
        90deg,
        transparent,
        #ffffff,
        transparent
    ) !important;
}

/* OUR TEAM DESCRIPTION FIX */

.team-description{
    color:#5F6F85 !important;   /* Premium grey */

    font-size:18px;

    line-height:1.9;

    font-family:"Playfair Display", serif;

    text-align:justify;
}

/* ==================================================
   OUR TEAM RIGHT VISUAL - MAIN COLOR THEORY FIX
================================================== */

/* Outside back panel */

.selvaa-team-section .visual-back-panel{
    background:linear-gradient(
        145deg,
        #dff3ff 0%,
        #bde7ff 50%,
        #8fd3ff 100%
    ) !important;

    border:1px solid rgba(45,156,255,.25) !important;

    box-shadow:
        0 25px 65px rgba(0,28,65,.14) !important;
}


/* Main large frame — black remove */

.selvaa-team-section .car-frame{
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(45,156,255,.18),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f4fbff 45%,
            #dff3ff 100%
        ) !important;

    border-color:#2D9CFF !important;

    box-shadow:
        0 35px 80px rgba(0,28,65,.16),
        inset 0 0 0 1px rgba(255,255,255,.9) !important;
}


/* Remove dark overlay if available */

.selvaa-team-section .car-frame::before{
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.10),
        rgba(45,156,255,.06)
    ) !important;
}


/* Showroom light dots */

.selvaa-team-section .showroom-lights span{
    background:#2D9CFF !important;

    box-shadow:
        0 0 10px rgba(45,156,255,.85),
        0 0 22px rgba(45,156,255,.45) !important;
}


/* Showroom light beam */

.selvaa-team-section .showroom-lights span::after{
    background:linear-gradient(
        180deg,
        rgba(45,156,255,.24),
        transparent
    ) !important;
}


/* Selvaa car icon */

.selvaa-team-section .brand-car-line{
    color:#2D9CFF !important;
}


/* SELVAA heading */

.selvaa-team-section .visual-brand strong{
    color:#001C41 !important;

    text-shadow:none !important;
}


/* CAR ACCESSORIES small text */

.selvaa-team-section .visual-brand small{
    color:#2D9CFF !important;

    text-shadow:none !important;
}


/* Car bottom shadow */

.selvaa-team-section .car-floor-shadow{
    background:radial-gradient(
        ellipse,
        rgba(0,28,65,.24),
        transparent 70%
    ) !important;
}


/* Bottom Driven By Passion card — black remove */

.selvaa-team-section .visual-tag{
    background:linear-gradient(
        135deg,
        #001C41 0%,
        #003566 55%,
        #2D9CFF 100%
    ) !important;

    border-color:rgba(45,156,255,.55) !important;

    box-shadow:
        0 25px 60px rgba(0,28,65,.25) !important;
}


/* Bottom shield icon */

.selvaa-team-section .tag-icon{
    background:#ffffff !important;
    color:#2D9CFF !important;

    border:1px solid rgba(255,255,255,.8) !important;
}


/* Bottom card main text */

.selvaa-team-section .visual-tag strong{
    color:#ffffff !important;
}


/* Bottom card small text */

.selvaa-team-section .visual-tag small{
    color:rgba(255,255,255,.78) !important;
}


/* Gold color lines remove */

.selvaa-team-section .car-frame,
.selvaa-team-section .visual-back-panel,
.selvaa-team-section .visual-tag{
    outline-color:#2D9CFF !important;
}


/* Premium hover */

.selvaa-team-section .team-visual:hover .car-frame{
    box-shadow:
        0 40px 90px rgba(45,156,255,.22),
        inset 0 0 0 1px rgba(255,255,255,.95) !important;
}

.selvaa-team-section .team-visual:hover .visual-tag{
    transform:translateY(-7px);

    box-shadow:
        0 32px 70px rgba(0,53,102,.32) !important;
}

/* =====================================
   RIGHT TO LEFT RUNNING CAR
===================================== */

.car-frame{
    position: relative;
    overflow: hidden;
}

.running-car{
    position: absolute;

    right: -500px;   /* Start outside right */

    bottom: 80px;

    width: 750px;

    z-index: 20;

    animation: runCar 4s linear infinite;
}

.running-car img{
    width: 100%;
    display: block;

    filter: drop-shadow(0 25px 30px rgba(0,0,0,.18));

    /* Car left side face பண்ணணும் */
    transform: scaleX(1);
}

/* Shadow */

.running-car::after{
    content:"";
    position:absolute;

    left:45px;
    right:45px;
    bottom:-10px;

    height:22px;

    background:rgba(0,0,0,.18);

    border-radius:50%;

    filter:blur(10px);
}

/* Animation */

@keyframes runCar{

    0%{
        right:-500px;
    }

    100%{
        right:calc(100% + 500px);
    }

}


/* Product_car_accesories */

/* =========================================================
   HERO
========================================================= */
.hero{position:relative;padding:70px 0 90px;overflow:hidden;background:var(--grad-soft)}
.hero-bg{
  position:absolute;inset:-20% -10% auto auto;width:70%;height:120%;
  background:
    radial-gradient(600px 400px at 80% 20%, rgba(11,111,164,.16), transparent 60%),
    radial-gradient(500px 400px at 60% 80%, rgba(212,166,74,.14), transparent 60%);
  filter:blur(10px);pointer-events:none;
}
.hero-grid{
  display:grid;grid-template-columns:1.05fr 1fr;gap:60px;align-items:center;
  position:relative;
}
.hero-copy{max-width:620px}
.hero-ctas{
    display:flex;
    flex-direction:row !important;  
    align-items:center;
    justify-content:flex-start;

    gap:20px;
    flex-wrap:nowrap !important;     

    width:auto;
}
.trust-row{display:flex;flex-wrap:wrap;gap:22px;margin-top:32px;color:var(--muted);font-size:15px}
.trust-row li{display:flex;align-items:center;gap:10px}
.dot{width:8px;height:8px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 4px rgba(212,166,74,.18)}
.hero-figure{position:relative;margin:0}
.hero-frame{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.7);
  background:#fff;
  aspect-ratio:16/11;
}
.hero-frame::before{
  content:"";position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(160deg,rgba(255,255,255,.35),transparent 40%);
  pointer-events:none;z-index:1;
}
.hero-frame img{width:100%;height:100%;object-fit:cover;transform:scale(1.02);transition:transform .8s var(--ease)}
.hero-frame:hover img{transform:scale(1.06)}
.hero-badge{
  position:absolute;left:-18px;bottom:-18px;background:#fff;
  padding:14px 20px;border-radius:16px;box-shadow:var(--shadow);
  border:1px solid var(--border);display:flex;flex-direction:column;gap:2px;
}
.hero-badge strong{color:var(--navy);font-size:22px;line-height:1}
.hero-badge span{color:var(--muted);font-size:13px}

/* =========================================================
   Sections
========================================================= */
.section{padding:96px 0}
.section-alt{background:var(--grad-soft)}
.section-head{max-width:760px;margin:0 auto 56px;text-align:center}
.section-sub{color:var(--muted);opacity:1;font-size:17px}

/* =========================================================
   Category grid
========================================================= */
.cat-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.cat-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease);
  display:flex;flex-direction:column;
}
.cat-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:rgba(11,111,164,.35)}
.cat-img{aspect-ratio:4/3;overflow:hidden;background:#f1f5f9}
.cat-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.cat-card:hover .cat-img img{transform:scale(1.08)}
.cat-body{padding:22px 22px 26px;display:flex;flex-direction:column;gap:6px;flex:1}
.cat-body h3{font-size:19px;margin:0}
.cat-body p{font-size:14.5px;color:var(--muted);opacity:1;margin:2px 0 14px;flex:1}
.link-arrow{
  color:var(--premium-blue);font-weight:600;font-size:14px;display:inline-flex;gap:6px;
  align-items:center;align-self:flex-start;
}
.link-arrow span{transition:transform .3s var(--ease)}
.link-arrow:hover span{transform:translateX(4px)}


/* =========================================================
   PRODUCT PAGE – CLEAN PREMIUM HERO FINAL OVERRIDE
   ADD THIS AT THE VERY BOTTOM OF styles.css
========================================================= */

/* Product page hero only */
body .hero{
  position:relative;
  min-height:auto;
  padding:150px 24px 90px !important;
  overflow:hidden;

  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(0,180,216,.10),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );
}

/* subtle background decorative glow */
body .hero::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  left:-190px;
  bottom:-220px;
  background:rgba(0,180,216,.08);
  filter:blur(20px);
  pointer-events:none;
}

/* fixed centered content area */
body .hero .container{
  width:min(1380px,100%);
  margin:0 auto !important;
  padding:0 !important;
}

/* left content + right image structure */
body .hero-grid{
  position:relative;
  z-index:2;

  display:grid !important;
  grid-template-columns:minmax(0, .92fr) minmax(520px, 1.08fr) !important;
  align-items:center !important;
  gap:72px !important;
}

/* LEFT CONTENT */
body .hero-copy{
  max-width:660px !important;
  padding:30px 0 !important;
}

/* small heading */
body .hero-copy .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;

  margin:0 0 22px !important;

  color:#00A8CC;
  font-family:'Manrope',sans-serif;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:3px;
  text-transform:uppercase;
}

body .hero-copy .eyebrow::before{
  content:"";
  width:42px;
  height:2px;
  flex-shrink:0;
  border-radius:20px;
  background:linear-gradient(90deg,#001C41,#00B4D8);
}

/* Main heading */
body .hero-copy h1{
  max-width:650px;
  margin:0 0 22px !important;

  font-family:'Playfair Display',serif;
  font-size:clamp(46px,4.2vw,68px) !important;
  font-weight:600;
  line-height:1.08 !important;
  letter-spacing:-2.2px;
  color:#07182F;
}

/* Highlighted heading words */
body .hero-copy h1 .accent{
  color:#003566;
  position:relative;
  white-space:normal;
}

body .hero-copy h1 .accent::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:8px;
  z-index:-1;
  border-radius:20px;
  background:rgba(0,180,216,.13);
}

/* paragraph */
body .hero-copy .lede{
  max-width:620px;
  margin:0 !important;

  font-family:'Manrope',sans-serif;
  font-size:16px !important;
  font-weight:400;
  line-height:1.85 !important;
  color:#53647A;
}

/* buttons */
body .hero-copy .hero-ctas{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:32px !important;
}

body .hero-copy .btn{
  min-height:54px;
  padding:0 28px !important;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:14px !important;
  font-family:'Manrope',sans-serif;
  font-size:14px;
  font-weight:800;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

body .hero-copy .btn-primary{
  background:linear-gradient(135deg,#001C41,#003566) !important;
  color:#fff !important;
  box-shadow:0 14px 30px rgba(0,28,65,.22);
}

body .hero-copy .btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(0,28,65,.28);
}

body .hero-copy .btn-ghost{
  background:#fff !important;
  color:#001C41 !important;
  border:1px solid rgba(0,28,65,.12) !important;
  box-shadow:0 8px 24px rgba(0,28,65,.06);
}

body .hero-copy .btn-ghost:hover{
  transform:translateY(-3px);
  border-color:#00B4D8 !important;
  box-shadow:0 15px 30px rgba(0,28,65,.10);
}

/* trust points */
body .hero-copy .trust-row{
  list-style:none;
  padding:0;
  margin:38px 0 0 !important;

  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px !important;
}

body .hero-copy .trust-row li{
  min-height:58px;
  padding:13px 14px;

  display:flex;
  align-items:center;
  gap:10px;

  border:1px solid rgba(0,28,65,.08);
  border-radius:14px;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 26px rgba(0,28,65,.05);

  font-family:'Manrope',sans-serif;
  font-size:12px !important;
  font-weight:700;
  line-height:1.4;
  color:#263950;
}

/* trust point icon */
body .hero-copy .trust-row .dot{
  width:9px;
  height:9px;
  flex:0 0 9px;
  border-radius:50%;
  background:#FFD166;
  box-shadow:0 0 0 5px rgba(255,209,102,.20);
}

/* RIGHT IMAGE */
body .hero-figure{
  position:relative;
  width:100%;
  margin:0 !important;
  padding:14px 14px 30px 0;
}

/* decorative image background */
body .hero-figure::before{
  content:"";
  position:absolute;
  top:-20px;
  right:-20px;
  width:78%;
  height:78%;
  border-radius:34px;
  background:linear-gradient(
    135deg,
    rgba(0,180,216,.13),
    rgba(0,53,102,.05)
  );
  z-index:-1;
}

/* image frame */
body .hero-frame{
  position:relative;
  width:100%;
  height:570px !important;
  aspect-ratio:auto !important;

  overflow:hidden;
  border-radius:30px !important;
  border:8px solid rgba(255,255,255,.92) !important;
  background:#fff;

  box-shadow:
    0 32px 80px rgba(0,28,65,.18),
    0 8px 24px rgba(0,28,65,.08) !important;
}

/* remove strong old image overlay */
body .hero-frame::before{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    transparent 45%,
    rgba(0,28,65,.10)
  ) !important;
}

body .hero-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.01) !important;
  transition:transform .8s ease;
}

body .hero-frame:hover img{
  transform:scale(1.045) !important;
}

/* experience badge */
body .hero-badge{
  position:absolute !important;
  left:-28px !important;
  bottom:0 !important;

  min-width:190px;
  padding:20px 24px !important;

  display:flex;
  flex-direction:column;
  gap:6px;

  border:1px solid rgba(0,28,65,.08) !important;
  border-radius:20px !important;
  background:rgba(255,255,255,.94) !important;
  backdrop-filter:blur(18px);

  box-shadow:
    0 24px 55px rgba(0,28,65,.18),
    inset 0 1px 0 rgba(255,255,255,.8) !important
  }

    /* =====================================================
   PRODUCT PAGE – PREMIUM CATEGORY CARD FINAL DESIGN
   Paste this at the VERY BOTTOM of styles.css
===================================================== */

/* PRODUCT GRID */

#products .cat-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:30px;
  align-items:stretch;
}


/* PRODUCT CARD */

#products .cat-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;

  background:#ffffff;
  border:1px solid rgba(0,28,65,.08);
  border-radius:26px;
  overflow:hidden;

  box-shadow:
    0 12px 30px rgba(0,28,65,.06),
    0 2px 8px rgba(0,28,65,.03);

  transform:none !important;

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
}


/* Remove old backside / flip content */

#products .cat-card::after{
  display:none !important;
}


/* Premium soft glow */

#products .cat-card::before{
  content:"";
  position:absolute;
  right:-100px;
  bottom:-100px;

  width:220px;
  height:220px;
  border-radius:50%;

  background:radial-gradient(
    circle,
    rgba(0,180,216,.13),
    transparent 70%
  );

  opacity:0;
  transform:scale(.65);
  z-index:0;
  pointer-events:none;

  transition:
    opacity .45s ease,
    transform .6s cubic-bezier(.22,1,.36,1);
}


/* IMAGE AREA */

#products .cat-img{
  position:relative;
  width:100%;
  height:275px;
  aspect-ratio:auto;
  overflow:hidden;
  flex-shrink:0;
}

#products .cat-img::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    180deg,
    transparent 58%,
    rgba(0,28,65,.16) 100%
  );

  pointer-events:none;
}

#products .cat-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .5s ease;
}


/* CARD CONTENT */

#products .cat-body{
  position:relative;
  z-index:2;

  flex:1;
  min-height:220px;

  padding:28px 28px 26px;

  display:flex;
  flex-direction:column;
  align-items:flex-start;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfdff 100%
    );
}


/* PRODUCT TITLE */

#products .cat-body h3{
  margin:0 0 10px;

  font-family:'Playfair Display', serif;
  font-size:25px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:-.4px;

  color:#001C41;

  transition:
    color .35s ease,
    transform .35s ease;
}


/* PRODUCT DESCRIPTION */

#products .cat-body p{
  margin:0 0 24px;

  font-family:'Manrope', sans-serif;
  font-size:14px;
  line-height:1.75;
  font-weight:400;

  color:#64748B;

  transition:
    color .35s ease,
    transform .35s ease;
}


/* VIEW DETAILS BUTTON */

#products .link-arrow{
  position:relative;

  margin-top:auto;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  min-height:44px;
  padding:11px 18px;

  border-radius:100px;

  font-family:'Manrope', sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.03em;

  color:#ffffff;

  background:linear-gradient(
    135deg,
    #001C41 0%,
    #003566 100%
  );

  border:1px solid rgba(0,28,65,.08);

  box-shadow:
    0 10px 24px rgba(0,28,65,.16),
    inset 0 1px 0 rgba(255,255,255,.18);

  overflow:hidden;

  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    background .35s ease,
    box-shadow .35s ease,
    color .35s ease;
}


/* Button light effect */

#products .link-arrow::before{
  content:"";
  position:absolute;
  top:0;
  left:-130%;

  width:80%;
  height:100%;

  background:linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );

  transform:skewX(-20deg);

  transition:left .65s ease;
}


/* Arrow circle */

#products .link-arrow span{
  position:relative;
  z-index:2;

  width:24px;
  height:24px;
  border-radius:50%;

  display:grid;
  place-items:center;

  background:rgba(255,255,255,.14);

  font-size:14px;
  line-height:1;

  transition:
    transform .35s ease,
    background .35s ease;
}

#products .link-arrow{
  z-index:1;
}


/* CARD HOVER */

#products .cat-card:hover{
  transform:translateY(-12px) !important;

  border-color:rgba(0,180,216,.25);

  box-shadow:
    0 28px 65px rgba(0,28,65,.14),
    0 10px 25px rgba(0,180,216,.08);
}

#products .cat-card:hover::before{
  opacity:1;
  transform:scale(1);
}

#products .cat-card:hover .cat-img img{
  transform:scale(1.08);
  filter:saturate(1.05) contrast(1.03);
}

#products .cat-card:hover .cat-body h3{
  color:#003566;
  transform:translateX(3px);
}

#products .cat-card:hover .cat-body p{
  color:#43536B;
}


/* BUTTON HOVER */

#products .link-arrow:hover{
  transform:translateY(-2px);

  background:linear-gradient(
    135deg,
    #00A6C7 0%,
    #00B4D8 100%
  );

  color:#001C41;

  box-shadow:
    0 14px 30px rgba(0,180,216,.26);
}

#products .link-arrow:hover::before{
  left:150%;
}

#products .link-arrow:hover span{
  background:rgba(0,28,65,.12);
  transform:translateX(4px);
}


/* TABLET */

@media(max-width:1200px){

  #products .cat-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media(max-width:900px){

  #products .cat-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
  }

  #products .cat-img{
    height:250px;
  }
}


/* MOBILE */

@media(max-width:600px){

  #products .cat-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  #products .cat-card{
    border-radius:22px;
  }

  #products .cat-img{
    height:240px;
  }

  #products .cat-body{
    min-height:auto;
    padding:24px 22px 22px;
  }

  #products .cat-body h3{
    font-size:23px;
  }

  #products .link-arrow{
    width:100%;
  }
}


/* ===========================================
   PREMIUM VIEW DETAILS HOVER
=========================================== */

.link-arrow{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 22px;
    margin-top: 8px;

    border-radius: 50px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: #001C41;
    text-decoration: none;

    overflow: hidden;

    transition: all .45s cubic-bezier(.22,1,.36,1);
}

/* Gradient Background */

.link-arrow::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        #001C41 0%,
        #003566 60%,
        #00B4D8 100%
    );

    transform:scaleX(0);
    transform-origin:left;

    border-radius:50px;

    transition:transform .45s cubic-bezier(.22,1,.36,1);

    z-index:-1;
}

/* Arrow */

.link-arrow span{
    display:flex;
    align-items:center;
    justify-content:center;

    width:30px;
    height:30px;

    border-radius:50%;

    background:#001C41;
    color:#ffffff;

    transition:all .45s ease;
}

/* Hover */

.link-arrow:hover{

    color:#ffffff;

    transform:translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0,28,65,.20);
}

.link-arrow:hover::before{
    transform:scaleX(1);
}

.link-arrow:hover span{

    background:#FFD166;
    color:#001C41;

    transform:
        rotate(-45deg)
        scale(1.08);
}

/*Product_car_lines*/

.eyebrow{
  display:inline-block;font-family:var(--font-sans);font-size:.78rem;
  font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}

/* COLLECTION */
.collection{padding:6rem 0;background:linear-gradient(180deg,var(--ivory),var(--cream))}
.product{
  display:grid;grid-template-columns:1.1fr 1fr;gap:4rem;align-items:center;
  padding:3rem 0;
}
.product.reverse{grid-template-columns:1fr 1.1fr}
.product.reverse .product-media{order:2}
@media (max-width:900px){
  .product,.product.reverse{grid-template-columns:1fr;gap:2rem;padding:2rem 0}
  .product.reverse .product-media{order:0}
}
.product-media{
  position:relative;border-radius:20px;overflow:hidden;
  box-shadow:var(--shadow-lg);aspect-ratio:4/3;background:var(--ivory-2);
}
.product-media img{
  width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.product-media:hover img{transform:scale(1.05)}
.badge{
  position:absolute;top:1.2rem;left:1.2rem;
  background:var(--gold);color:var(--navy);
  padding:.4rem .9rem;border-radius:999px;font-size:.72rem;
  font-weight:700;letter-spacing:.15em;text-transform:uppercase;
}
.badge-dark{background:var(--navy);color:var(--gold)}
.product-info .tag{
  display:inline-block;font-size:.75rem;font-weight:600;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1rem;
}
.product-info h3{margin-bottom:1rem}
.product-info > p{margin-bottom:1.6rem;font-size:1.02rem}
.features{list-style:none;padding:0;margin:0 0 1.6rem;display:grid;grid-template-columns:1fr 1fr;gap:.6rem 1.2rem}
.features li{position:relative;padding-left:1.4rem;font-size:.9rem;color:var(--navy-2)}
.features li::before{
  content:"";position:absolute;left:0;top:.55em;
  width:8px;height:8px;background:var(--gold);border-radius:2px;transform:rotate(45deg);
}


/* =========================================
   CAR LINES PAGE FIX
========================================= */

#collection{
  padding:180px 0 100px;
  background:#faf6ee;
}

#collection .container{
  width:min(1200px,92%);
  margin:0 auto;
}

#collection .section-head{
  max-width:700px;
  margin:0 auto 70px;
  text-align:center;
}

#collection .section-head h2{
  font-family:"Playfair Display",serif;
  font-size:48px;
  color:#001C41;
  margin-bottom:15px;
}

#collection .section-head p{
  font-family:"Inter",sans-serif;
  font-size:17px;
  line-height:1.7;
  color:#64748B;
}

#collection .product{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  padding:55px 0;
}

#collection .product.reverse{
  grid-template-columns:1fr 1.1fr;
}

#collection .product.reverse .product-media{
  order:2;
}

#collection .product-media{
  position:relative;
  height:440px;
  border-radius:28px;
  overflow:hidden;
  background:#eeeeee;
  box-shadow:0 30px 70px rgba(0,28,65,.18);
}

#collection .product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

#collection .badge{
  position:absolute;
  top:20px;
  left:20px;
  padding:8px 16px;
  border-radius:50px;
  background:#FFD166;
  color:#001C41;
  font-family:"Inter",sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

#collection .badge-dark{
  background:#001C41;
  color:#FFD166;
}

#collection .product-info .tag{
  display:inline-block;
  margin-bottom:15px;
  font-family:"Inter",sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#00B4D8;
}

#collection .product-info h3{
  font-family:"Playfair Display",serif;
  font-size:42px;
  color:#001C41;
  margin-bottom:18px;
}

#collection .product-info p{
  font-family:"Inter",sans-serif;
  font-size:16px;
  line-height:1.8;
  color:#64748B;
  margin-bottom:24px;
}

#collection .features{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 20px;
}

#collection .features li{
  position:relative;
  padding-left:20px;
  font-family:"Inter",sans-serif;
  font-size:14px;
  color:#001C41;
}

#collection .features li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  background:#FFD166;
  transform:rotate(45deg);
}

#collection .swatches{
  display:flex;
  gap:12px;
  margin-bottom:28px;
}

#collection .swatches span{
  width:30px;
  height:30px;
  border-radius:50%;
  border:2px solid #ffffff;
  box-shadow:0 0 0 1px rgba(0,28,65,.15);
  cursor:pointer;
}

#collection .btn-primary{
  display:inline-flex;
  padding:14px 26px;
  border-radius:50px;
  background:#001C41;
  color:#ffffff;
  font-family:"Inter",sans-serif;
  font-weight:700;
}

#collection .btn-primary:hover{
  background:#FFD166;
  color:#001C41;
  transform:translateY(-3px);
}

@media(max-width:900px){

  #collection .product,
  #collection .product.reverse{
    grid-template-columns:1fr;
    gap:30px;
  }

  #collection .product.reverse .product-media{
    order:0;
  }

  #collection .product-media{
    height:360px;
  }
}

@media(max-width:600px){

  #collection{
    padding:140px 0 70px;
  }

  #collection .section-head h2{
    font-size:36px;
  }

  #collection .product-info h3{
    font-size:32px;
  }

  #collection .features{
    grid-template-columns:1fr;
  }

  #collection .product-media{
    height:280px;
  }
}


/* ==================================================
   PREMIUM CAR FRONT BUMPER SECTION
================================================== */

.bumper-showcase{
  position:relative;
  padding:110px 6vw;
  overflow:hidden;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(0,180,216,.12),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7faff 100%
    );
}


/* BACKGROUND DECORATION */

.bumper-showcase::before{
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  right:-180px;
  top:-140px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(0,28,65,.08),
      transparent 70%
    );

  pointer-events:none;
}

.bumper-showcase::after{
  content:"";
  position:absolute;

  left:0;
  bottom:0;

  width:100%;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0,28,65,.12),
      transparent
    );
}


/* MAIN LAYOUT */

.bumper-container{
  position:relative;
  z-index:2;

  width:min(1320px,100%);
  margin:0 auto;

  display:grid;
  grid-template-columns:1fr 1.05fr;

  gap:90px;
  align-items:center;
}


/* ==================================================
   LEFT IMAGE AREA
================================================== */

.bumper-visual{
  position:relative;
}

.bumper-image-frame{
  position:relative;

  height:560px;

  border-radius:36px;
  overflow:hidden;

  background:#001C41;

  box-shadow:
    0 40px 90px rgba(0,28,65,.20),
    0 12px 30px rgba(0,28,65,.10);

  isolation:isolate;
}


/* IMAGE */

.bumper-image-frame img{
  width:100%;
  height:100%;

  object-fit:cover;
  display:block;

  transition:
    transform 1s cubic-bezier(.22,1,.36,1),
    filter .7s ease;
}


/* IMAGE OVERLAY */

.bumper-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0,28,65,.35) 100%
    );

  z-index:1;
  pointer-events:none;
}


/* IMAGE NUMBER */

.bumper-number{
  position:absolute;

  top:26px;
  left:26px;

  z-index:3;

  width:58px;
  height:58px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:rgba(255,255,255,.90);

  color:#001C41;

  font-family:"Playfair Display",serif;
  font-size:20px;
  font-weight:700;

  backdrop-filter:blur(12px);

  box-shadow:
    0 12px 30px rgba(0,28,65,.15);
}


/* HOVER IMAGE */

.bumper-image-frame:hover img{
  transform:scale(1.07);
  filter:saturate(1.08) contrast(1.04);
}


/* FLOATING BADGE */

.bumper-badge{
  position:absolute;

  right:-46px;
  bottom:42px;

  z-index:5;

  min-width:260px;

  padding:20px 22px;

  display:flex;
  align-items:center;
  gap:15px;

  border-radius:22px;

  background:
    rgba(255,255,255,.94);

  border:
    1px solid rgba(0,28,65,.08);

  backdrop-filter:blur(20px);

  box-shadow:
    0 25px 60px rgba(0,28,65,.20);

  transition:
    transform .4s cubic-bezier(.22,1,.36,1);
}

.bumper-badge:hover{
  transform:translateY(-7px);
}


/* BADGE ICON */

.bumper-badge-icon{
  flex:0 0 48px;

  width:48px;
  height:48px;

  display:grid;
  place-items:center;

  border-radius:15px;

  background:
    linear-gradient(
      135deg,
      #001C41,
      #003566
    );

  color:#FFD166;

  font-size:20px;
}

.bumper-badge strong{
  display:block;

  font-family:"Manrope",sans-serif;
  font-size:14px;
  font-weight:800;

  color:#001C41;
}

.bumper-badge span{
  display:block;
  margin-top:4px;

  font-family:"Manrope",sans-serif;
  font-size:12px;

  color:#64748B;
}


/* ==================================================
   RIGHT CONTENT
================================================== */

.bumper-content{
  position:relative;
}


/* EYEBROW */

.bumper-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;

  margin-bottom:22px;

  font-family:"Manrope",sans-serif;
  font-size:12px;
  font-weight:800;

  letter-spacing:.20em;
  text-transform:uppercase;

  color:#00B4D8;
}

.bumper-eyebrow::before{
  content:"";

  width:42px;
  height:2px;

  background:#00B4D8;
}


/* MAIN TITLE */

.bumper-content h2{
  margin:0 0 24px;

  font-family:"Playfair Display",serif;
  font-size:clamp(44px,5vw,72px);
  line-height:1.02;

  font-weight:600;
  letter-spacing:-2px;

  color:#001C41;
}

.bumper-content h2 span{
  display:block;

  color:#00B4D8;
}


/* DESCRIPTION */

.bumper-description{
  max-width:650px;

  margin:0 0 34px;

  font-family:"Manrope",sans-serif;
  font-size:17px;
  line-height:1.8;

  color:#53647C;
}


/* ==================================================
   FEATURE ITEMS
================================================== */

.bumper-features{
  display:flex;
  flex-direction:column;
  gap:16px;

  margin-bottom:34px;
}

.bumper-feature{
  display:grid;
  grid-template-columns:52px 1fr;

  gap:16px;

  padding:18px;

  border-radius:20px;

  background:#ffffff;

  border:
    1px solid rgba(0,28,65,.08);

  box-shadow:
    0 10px 28px rgba(0,28,65,.05);

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease,
    border-color .4s ease;
}

.bumper-feature:hover{
  transform:translateX(8px);

  border-color:
    rgba(0,180,216,.28);

  box-shadow:
    0 18px 40px rgba(0,28,65,.10);
}


/* FEATURE ICON */

.feature-icon{
  width:52px;
  height:52px;

  display:grid;
  place-items:center;

  border-radius:16px;

  background:
    rgba(0,180,216,.10);

  color:#003566;

  font-size:19px;

  transition:
    background .4s ease,
    color .4s ease,
    transform .4s ease;
}

.bumper-feature:hover .feature-icon{
  background:#001C41;
  color:#FFD166;

  transform:rotate(-6deg);
}

.bumper-feature h3{
  margin:0 0 5px;

  font-family:"Playfair Display",serif;
  font-size:20px;
  font-weight:600;

  color:#001C41;
}

.bumper-feature p{
  margin:0;

  font-family:"Manrope",sans-serif;
  font-size:13px;
  line-height:1.6;

  color:#64748B;
}


/* ==================================================
   CTA BUTTON
================================================== */

.bumper-btn{
  position:relative;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  padding:16px 26px;

  border-radius:100px;

  background:
    linear-gradient(
      135deg,
      #001C41,
      #003566
    );

  color:#ffffff;

  font-family:"Manrope",sans-serif;
  font-size:14px;
  font-weight:800;

  box-shadow:
    0 16px 35px rgba(0,28,65,.22);

  overflow:hidden;

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease;
}

.bumper-btn::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      135deg,
      #00B4D8,
      #68DFF4
    );

  transform:translateX(-102%);

  transition:
    transform .5s cubic-bezier(.22,1,.36,1);
}

.bumper-btn span,
.bumper-btn i{
  position:relative;
  z-index:2;

  transition:
    color .4s ease,
    transform .4s ease;
}

.bumper-btn:hover{
  transform:translateY(-4px);

  box-shadow:
    0 22px 48px rgba(0,180,216,.25);
}

.bumper-btn:hover::before{
  transform:translateX(0);
}

.bumper-btn:hover span,
.bumper-btn:hover i{
  color:#001C41;
}

.bumper-btn:hover i{
  transform:translateX(5px);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1000px){

  .bumper-container{
    grid-template-columns:1fr;
    gap:60px;
  }

  .bumper-visual{
    width:min(720px,100%);
    margin:0 auto;
  }

  .bumper-badge{
    right:24px;
  }
}


@media(max-width:600px){

  .bumper-showcase{
    padding:75px 5vw;
  }

  .bumper-container{
    gap:42px;
  }

  .bumper-image-frame{
    height:390px;
    border-radius:26px;
  }

  .bumper-badge{
    position:relative;

    right:auto;
    bottom:auto;

    margin:-35px 18px 0;

    min-width:0;
  }

  .bumper-content h2{
    font-size:42px;
    letter-spacing:-1px;
  }

  .bumper-description{
    font-size:15px;
  }

  .bumper-feature{
    grid-template-columns:46px 1fr;
    padding:15px;
  }

  .feature-icon{
    width:46px;
    height:46px;
  }

  .bumper-btn{
    width:100%;
  }
}



.gallery-filter{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:45px;
}

.filter-btn{
  padding:14px 24px;
  border:1px solid #d7dce3;
  background:#ffffff;
  color:#4b5563;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.filter-btn:hover,
.filter-btn.active{
  background:#001C41;
  color:#ffffff;
  border-color:#001C41;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:20px;
  animation:galleryFade .4s ease;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:.5s ease;
}

.gallery-item:hover img{
  transform:scale(1.06);
}

@keyframes galleryFade{
  from{
    opacity:0;
    transform:scale(.96);
  }

  to{
    opacity:1;
    transform:scale(1);
  }
}

@media(max-width:900px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .filter-btn{
    width:100%;
  }
}





/* ===== Selvaa Car Accessories — Premium Contact Page ===== */


:root{
  --navy:#0B2347;
  --navy-2:#132f5c;
  --accent:#0EA5E9;
  --gold:#D4AF37;
  --gold-soft:#e8cc76;
  --bg:#F8FAFC;
  --ink:#0f172a;
  --muted:#5b6b82;
  --line:rgba(11,35,71,.08);
  --glass:rgba(255,255,255,.7);
  --shadow-lg:0 30px 80px -30px rgba(11,35,71,.25);
  --shadow-md:0 12px 40px -12px rgba(11,35,71,.18);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  line-height:1.6;
  position:relative;
}

/* ===== Decorative Background ===== */
.bg-decor{position:fixed;inset:0;z-index:-1;overflow:hidden;pointer-events:none}
.orb{position:absolute;border-radius:50%;filter:blur(90px);opacity:.35}
.orb-1{width:520px;height:520px;background:radial-gradient(circle,#bfdcff,transparent 70%);top:-160px;left:-140px}
.orb-2{width:600px;height:600px;background:radial-gradient(circle,#f1e0a8,transparent 70%);top:40%;right:-200px;opacity:.28}
.orb-3{width:480px;height:480px;background:radial-gradient(circle,#dbe8ff,transparent 70%);bottom:-160px;left:30%}
.grid-pattern{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(11,35,71,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(11,35,71,.035) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse at center,#000 30%,transparent 75%);
}

/* ===== Layout ===== */
.container{max-width:1360px;margin:0 auto;padding:80px 40px 60px}

/* ===== HERO ===== */
.hero{text-align:center;max-width:900px;margin:40px auto 90px}
.eyebrow{
  display:inline-flex;align-items:center;gap:18px;
  font-size:12px;letter-spacing:.42em;font-weight:600;
  color:var(--navy);text-transform:uppercase;margin-bottom:28px;
}
.eyebrow .line{width:44px;height:1px;background:var(--gold)}
.hero-title{
  font-family:'Playfair Display',serif;
  font-weight:600;
  font-size: clamp(80px, 7vw, 200px);
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--navy);
}
.hero-title em{
  font-style:italic;font-weight:500;
  background:linear-gradient(135deg,var(--gold) 0%,#b8912a 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-sub{
  margin-top:24px;
  font-size:18px;
  color:var(--muted);

  max-width:640px;

  margin-left:0;      
  margin-right:0;     

  text-align:left;    

  font-weight:300;
}
/* ===== SPLIT ===== */
.split{
  display:grid;grid-template-columns:1.5fr 1fr;gap:40px;
  align-items:start;
}
.left-col{display:flex;flex-direction:column;gap:36px}

/* ===== OWNER CARD ===== */
.owner-card{
  position:relative;
  border-radius:36px;
  overflow:visible;
}
.owner-image{
  position:relative;overflow:hidden;border-radius:36px;
  aspect-ratio:5/4;
  box-shadow:var(--shadow-lg);
  isolation:isolate;
}
.owner-image img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.4s cubic-bezier(.19,1,.22,1);
  display:block;
}
.owner-card:hover .owner-image img{transform:scale(1.08)}
.owner-shine{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(11,35,71,.55));
  z-index:1;pointer-events:none;
}

/* Floating badges */
.badge{
  position:absolute;z-index:3;
  display:flex;align-items:center;gap:14px;
  background:var(--glass);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  border:1px solid rgba(255,255,255,.7);
  border-radius:22px;
  padding:18px 22px;
  box-shadow:var(--shadow-md);
  animation:float 6s ease-in-out infinite;
}
.badge-years{top:32px;left:-24px}
.badge-rating{bottom:32px;right:-24px;animation-delay:-3s}
.badge-num{
  font-family:'Playfair Display',serif;
  font-size:38px;font-weight:700;color:var(--navy);line-height:1;
}
.badge-num span{color:var(--gold)}
.badge-text{display:flex;flex-direction:column;line-height:1.25}
.badge-text strong{font-size:13px;color:var(--navy);font-weight:600}
.badge-text span{font-size:11px;color:var(--muted);letter-spacing:.05em}
.stars{color:var(--gold);font-size:16px;letter-spacing:2px}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* ===== CONTACT FORM ===== */
.glass{
  background:var(--glass);
  backdrop-filter:blur(24px) saturate(160%);
  -webkit-backdrop-filter:blur(24px) saturate(160%);
  border:1px solid rgba(255,255,255,.65);
}
.contact-form{
  border-radius:32px;padding:44px;
  box-shadow:var(--shadow-md);
}
.form-head{margin-bottom:32px}
.form-head h3{
  font-family:'Playfair Display',serif;
  font-size:28px;font-weight:600;color:var(--navy);letter-spacing:-.01em;
}
.form-head p{color:var(--muted);font-size:14px;margin-top:6px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{
  position:relative;display:flex;align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:0 18px 0 52px;
  transition:all .35s ease;
}
.field-full{grid-column:1/-1}
.field-textarea{align-items:flex-start;padding-top:16px}
.field .icon{
  position:absolute;left:18px;top:50%;transform:translateY(-50%);
  width:22px;height:22px;color:var(--navy);opacity:.5;
  transition:color .3s,opacity .3s;
}
.field-textarea .icon{top:20px;transform:none}
.field .icon svg{width:100%;height:100%}
.field input,.field select,.field textarea{
  width:100%;border:none;outline:none;background:transparent;
  padding:16px 0;font-size:15px;font-family:inherit;color:var(--ink);
  font-weight:400;
}
.field textarea{resize:vertical;min-height:100px}
.field select{cursor:pointer;appearance:none;color:var(--muted)}
.field select:valid{color:var(--ink)}
.field:hover{border-color:rgba(11,35,71,.2)}
.field:focus-within{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(14,165,233,.12), 0 8px 24px -12px rgba(14,165,233,.4);
  background:#fff;
}
.field:focus-within .icon{color:var(--accent);opacity:1}

/* Premium button */
.btn-premium{
  margin-top:28px;width:100%;
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  padding:20px 32px;
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 60%, #1e4a8f 100%);
  color:#fff;font-size:15px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  border:none;border-radius:16px;cursor:pointer;
  position:relative;overflow:hidden;
  box-shadow:0 12px 32px -10px rgba(11,35,71,.5);
  transition:transform .4s cubic-bezier(.19,1,.22,1), box-shadow .4s;
}
.btn-premium svg{width:18px;height:18px;transition:transform .4s}
.btn-premium::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(212,175,55,.35) 50%,transparent 70%);
  transform:translateX(-100%);transition:transform .8s ease;
}
.btn-premium:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 45px -12px rgba(11,35,71,.55), 0 0 30px -5px rgba(212,175,55,.3);
}
.btn-premium:hover svg{transform:translateX(6px)}
.btn-premium:hover::before{transform:translateX(100%)}

/* ===== RIGHT INFO CARD ===== */
.right-col{position:sticky;top:40px}
.info-card{
  position:relative;overflow:hidden;
  background:linear-gradient(160deg,#0B2347 0%,#0f2d5c 55%,#132f5c 100%);
  border-radius:30px;
  padding:44px 40px 220px;
  color:#fff;
  box-shadow:var(--shadow-lg);
  isolation:isolate;
}
.info-card::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 100% 0%,rgba(14,165,233,.25),transparent 50%),
    radial-gradient(circle at 0% 100%,rgba(212,175,55,.18),transparent 50%);
  z-index:-1;
}
.info-head{margin-bottom:32px}
.tag-gold{
  display:inline-block;font-size:11px;font-weight:600;
  color:var(--gold);letter-spacing:.3em;text-transform:uppercase;
  margin-bottom:14px;
}
.info-head h3{
  font-family:'Playfair Display',serif;
  font-size:30px;font-weight:600;letter-spacing:-.01em;
}
.info-head p{
  color:rgba(255,255,255,.65);font-size:14px;margin-top:10px;
  font-weight:300;line-height:1.7;
}
.info-list{list-style:none;display:flex;flex-direction:column;gap:20px}
.info-list li{display:flex;align-items:flex-start;gap:16px}
.info-list li.divider{
  height:1px;background:linear-gradient(90deg,transparent,rgba(212,175,55,.35),transparent);
  margin:2px 0;
}
.info-ico{
  flex-shrink:0;width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(212,175,55,.35);
  color:var(--gold);
  transition:all .4s ease;
}
.info-ico svg{width:20px;height:20px}
.info-list li:hover .info-ico{
  background:var(--gold);color:var(--navy);
  transform:translateY(-2px);
  box-shadow:0 8px 20px -5px rgba(212,175,55,.5);
}
.info-list li strong{
  display:block;font-size:11px;font-weight:600;
  color:var(--gold);letter-spacing:.2em;text-transform:uppercase;margin-bottom:4px;
}
.info-list li p{font-size:14px;color:rgba(255,255,255,.85);line-height:1.6;font-weight:300}

.car-silhouette{
  position:absolute;left:0;right:0;bottom:24px;
  padding:0 30px;opacity:.55;
  pointer-events:none;
}
.car-silhouette svg{width:100%;height:auto;display:block}

/* ===== MAP ===== */
.map-section{margin-top:80px}
.map-frame{
  position:relative;
  border-radius:35px;overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.6);
  height:520px;
  background:#e8ecf1;
  opacity:0;transform:translateY(30px);
  transition:opacity 1.2s ease, transform 1.2s ease;
}
.map-frame.visible{opacity:1;transform:translateY(0)}
.map-frame iframe{width:100%;height:100%;border:0;filter:grayscale(.35) contrast(1.05)}

.map-pin{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-100%);
  z-index:2;pointer-events:none;
}
.pin{
  width:56px;height:56px;
  background:#fff;border-radius:50%;
  display:grid;place-items:center;
  box-shadow:0 12px 30px -8px rgba(11,35,71,.5);
  animation:pinBounce 2.4s ease-in-out infinite;
}
.pin svg{width:30px;height:30px}
.pin-pulse{
  position:absolute;top:100%;left:50%;
  width:40px;height:12px;transform:translate(-50%,4px);
  border-radius:50%;background:rgba(11,35,71,.25);
  animation:pulseShadow 2.4s ease-in-out infinite;
}
@keyframes pinBounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}
@keyframes pulseShadow{
  0%,100%{transform:translate(-50%,4px) scale(1);opacity:.4}
  50%{transform:translate(-50%,4px) scale(.65);opacity:.15}
}
.map-badge{
  position:absolute;left:32px;bottom:32px;
  padding:16px 22px;border-radius:16px;
  display:flex;flex-direction:column;
  box-shadow:var(--shadow-md);
}
.map-badge strong{font-family:'Playfair Display',serif;font-size:18px;color:var(--navy)}
.map-badge span{font-size:12px;color:var(--muted);letter-spacing:.1em;text-transform:uppercase;margin-top:2px}

/* ===== FOOTER ===== */
.foot{
  margin-top:60px;text-align:center;
  font-size:12px;color:var(--muted);letter-spacing:.15em;text-transform:uppercase;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal{opacity:0;transform:translateY(28px);transition:opacity 1s ease, transform 1s cubic-bezier(.19,1,.22,1)}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px){
  .split{grid-template-columns:1fr;gap:32px}
  .right-col{position:static}
  .badge-years{left:16px}
  .badge-rating{right:16px}
}
@media (max-width:720px){
  .container{padding:56px 20px 40px}
  .hero{margin-bottom:56px}
  .form-grid{grid-template-columns:1fr}
  .contact-form{padding:28px}
  .info-card{padding:32px 28px 200px;border-radius:26px}
  .badge{padding:14px 16px;border-radius:18px}
  .badge-num{font-size:30px}
  .map-frame{height:400px;border-radius:26px}
  .map-badge{left:16px;bottom:16px;padding:12px 16px}
}


/* =========================================
   CONTACT PAGE CONTENT VISIBLE FIX
========================================= */

main.container .reveal{
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
}

main.container .map-frame{
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
}


/* =========================================
   OWNER IMAGE CARD — FINAL FIX
========================================= */

.owner-card{
  position:relative !important;

  width:100% !important;
  min-height:650px !important;

  overflow:visible !important;
  border-radius:38px !important;

  background:transparent !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  border:none !important;
  box-shadow:none !important;
}


/* REMOVE LARGE BLUR OVERLAY */

.owner-card::before,
.owner-card::after{
  display:none !important;
  content:none !important;
}


/* OWNER IMAGE BOX */

.owner-image{
  position:relative !important;

  width:100% !important;
  height:650px !important;

  overflow:hidden !important;
  border-radius:38px !important;

  background:#001c41 !important;

  box-shadow:
    0 30px 70px rgba(0,28,65,.20) !important;
}


/* OWNER IMAGE */

.owner-image img{
  position:relative !important;
  z-index:1 !important;

  width:100% !important;
  height:100% !important;

  display:block !important;
  object-fit:cover !important;
  object-position:center top !important;

  opacity:1 !important;
  filter:none !important;
  transform:none !important;

  border-radius:0 !important;
}


/* REMOVE IMAGE BLUR LAYER */

.owner-shine{
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;

  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(0,28,65,.18) 100%
    ) !important;

  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  pointer-events:none !important;
}


/* COMMON BADGE */

.owner-card .badge{
  position:absolute !important;
  z-index:10 !important;

  width:auto !important;
  height:auto !important;
  min-height:92px !important;

  display:flex !important;
  align-items:center !important;
  gap:18px !important;

  padding:18px 28px !important;

  border-radius:24px !important;

  background:rgba(255,255,255,.90) !important;

  backdrop-filter:blur(16px) !important;
  -webkit-backdrop-filter:blur(16px) !important;

  border:1px solid rgba(255,255,255,.75) !important;

  box-shadow:
    0 22px 50px rgba(0,28,65,.16) !important;

  inset:auto !important;
}


/* LEFT TOP BADGE */

.owner-card .badge-years{
  top:30px !important;
  left:-30px !important;
  right:auto !important;
  bottom:auto !important;
}


/* RIGHT BOTTOM BADGE */

.owner-card .badge-rating{
  top:auto !important;
  left:auto !important;
  right:-30px !important;
  bottom:42px !important;
}


/* YEARS NUMBER */

.owner-card .badge-num{
  font-family:"Playfair Display",serif !important;
  font-size:46px !important;
  line-height:1 !important;
  font-weight:600 !important;

  color:#001c41 !important;
  white-space:nowrap !important;
}

.owner-card .badge-num span{
  color:#d4af37 !important;
}


/* BADGE TEXT */

.owner-card .badge-text{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

.owner-card .badge-text strong{
  font-family:"Inter",sans-serif !important;
  font-size:15px !important;
  line-height:1.2 !important;
  font-weight:800 !important;

  color:#001c41 !important;
}

.owner-card .badge-text span{
  margin-top:3px !important;

  font-family:"Inter",sans-serif !important;
  font-size:13px !important;
  line-height:1.2 !important;

  color:#64748b !important;
}


/* STAR RATING */

.owner-card .stars{
  font-family:Arial,sans-serif !important;
  font-size:20px !important;
  letter-spacing:2px !important;
  line-height:1 !important;

  color:#d4af37 !important;
  white-space:nowrap !important;
}


/* TABLET */

@media(max-width:900px){

  .owner-image{
    height:550px !important;
  }

  .owner-card{
    min-height:550px !important;
  }

  .owner-card .badge-years{
    left:18px !important;
  }

  .owner-card .badge-rating{
    right:18px !important;
  }
}


/* MOBILE */

@media(max-width:600px){

  .owner-card{
    min-height:auto !important;
    padding-bottom:190px !important;
  }

  .owner-image{
    height:440px !important;
    border-radius:28px !important;
  }

  .owner-card .badge{
    width:calc(100% - 24px) !important;
    min-height:auto !important;
  }

  .owner-card .badge-years{
    top:auto !important;
    left:12px !important;
    right:auto !important;
    bottom:96px !important;
  }

  .owner-card .badge-rating{
    left:12px !important;
    right:auto !important;
    bottom:0 !important;
  }

  .owner-card .badge-num{
    font-size:36px !important;
  }
}


/* =========================================
   CREATIVE PREMIUM CONTACT FIELD HOVER
========================================= */

.contact-form .field{
  position:relative;
  overflow:hidden;

  border-radius:22px;
  background:#ffffff;

  border:1px solid rgba(0,28,65,.10);

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    border-color .35s ease,
    box-shadow .4s ease,
    background .35s ease;
}


/* ANIMATED BLUE GLOW LINE */

.contact-form .field::before{
  content:"";
  position:absolute;

  left:-100%;
  bottom:0;

  width:100%;
  height:3px;

  background:linear-gradient(
    90deg,
    #001C41,
    #00B4D8,
    #FFD166
  );

  transition:left .55s cubic-bezier(.16,1,.3,1);
}


/* SOFT LIGHT GLOW */

.contact-form .field::after{
  content:"";
  position:absolute;

  width:140px;
  height:140px;

  right:-90px;
  top:-90px;

  border-radius:50%;

  background:radial-gradient(
    circle,
    rgba(0,180,216,.18),
    transparent 70%
  );

  opacity:0;
  transform:scale(.4);

  transition:
    opacity .45s ease,
    transform .55s cubic-bezier(.16,1,.3,1);

  pointer-events:none;
}


/* INPUTS */

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea{
  position:relative;
  z-index:2;

  width:100%;

  padding-left:68px !important;
  padding-right:20px !important;

  background:transparent !important;
  border:none !important;
  outline:none !important;

  color:#001C41 !important;

  transition:
    padding-left .4s ease,
    color .35s ease;
}


/* ICON BUBBLE */

.contact-form .field .icon{
  position:relative;
  z-index:3;

  width:42px;
  height:42px;

  display:grid;
  place-items:center;

  border-radius:14px;

  color:#6f7f96;

  background:transparent;

  transition:
    color .35s ease,
    background .35s ease,
    transform .4s cubic-bezier(.16,1,.3,1),
    box-shadow .4s ease;
}

.contact-form .field .icon svg{
  width:22px;
  height:22px;
}


/* HOVER EFFECT */

.contact-form .field:hover{
  transform:translateY(-5px);

  border-color:rgba(0,180,216,.35);

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f4fbff 100%
    );

  box-shadow:
    0 18px 35px rgba(0,28,65,.10),
    0 6px 18px rgba(0,180,216,.08);
}

.contact-form .field:hover::before{
  left:0;
}

.contact-form .field:hover::after{
  opacity:1;
  transform:scale(1);
}

.contact-form .field:hover .icon{
  color:#ffffff;

  background:linear-gradient(
    135deg,
    #001C41,
    #00B4D8
  );

  transform:rotate(-6deg) scale(1.08);

  box-shadow:
    0 10px 25px rgba(0,28,65,.22);
}


/* FOCUS EFFECT */

.contact-form .field:focus-within{
  transform:translateY(-5px);

  border-color:#00B4D8;

  box-shadow:
    0 0 0 4px rgba(0,180,216,.10),
    0 20px 40px rgba(0,28,65,.12);
}

.contact-form .field:focus-within::before{
  left:0;
}

.contact-form .field:focus-within::after{
  opacity:1;
  transform:scale(1);
}

.contact-form .field:focus-within .icon{
  color:#001C41;

  background:#FFD166;

  transform:scale(1.08);

  box-shadow:
    0 10px 24px rgba(255,209,102,.30);
}


/* PLACEHOLDER */

.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder{
  color:#8997aa !important;
  opacity:1;
}

.contact-form .field:hover input::placeholder,
.contact-form .field:hover textarea::placeholder,
.contact-form .field:focus-within input::placeholder,
.contact-form .field:focus-within textarea::placeholder{
  color:#53647c !important;
}


/* SELECT TEXT */

.contact-form .field select{
  color:#53647c !important;
}


/* TEXTAREA SPECIAL HEIGHT */

.contact-form .field-textarea{
  min-height:155px;
}


/* =========================================
   CONTACT ICON ALWAYS VISIBLE FIX
========================================= */

.contact-form .field .icon{
  position:absolute !important;
  left:20px !important;
  top:50% !important;

  transform:translateY(-50%) !important;

  z-index:20 !important;

  opacity:1 !important;
  visibility:visible !important;

  width:42px !important;
  height:42px !important;

  display:grid !important;
  place-items:center !important;

  color:#7c8da8 !important;
  background:transparent !important;

  pointer-events:none;
}

/* Hover செய்யும் போதும் icon மறையாது */

.contact-form .field:hover .icon{
  opacity:1 !important;
  visibility:visible !important;

  color:#ffffff !important;

  background:linear-gradient(
    135deg,
    #001C41,
    #00B4D8
  ) !important;

  transform:
    translateY(-50%)
    rotate(-5deg)
    scale(1.06) !important;

  box-shadow:
    0 10px 24px rgba(0,28,65,.20) !important;
}

/* Focus செய்யும் போதும் icon visible */

.contact-form .field:focus-within .icon{
  opacity:1 !important;
  visibility:visible !important;

  color:#001C41 !important;
  background:#FFD166 !important;

  transform:
    translateY(-50%)
    scale(1.06) !important;
}

/* Message textarea icon position */

.contact-form .field-textarea .icon{
  top:28px !important;

  transform:none !important;
}

.contact-form .field-textarea:hover .icon{
  transform:
    rotate(-5deg)
    scale(1.06) !important;
}

.contact-form .field-textarea:focus-within .icon{
  transform:scale(1.06) !important;
}

/* =========================================
   CONTACT HERO — EXACT CENTER FIX
========================================= */

main.container{
  width:min(1360px, calc(100% - 40px)) !important;
  max-width:1360px !important;
  margin:0 auto !important;
  padding:150px 40px 60px !important;
}

/* Contact page top hero only */

main.container > header.hero{
  position:relative !important;

  width:100% !important;
  max-width:1060px !important;
  min-height:650px !important;

  margin:0 auto 90px !important;
  padding:70px 50px !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;

  text-align:center !important;
  overflow:visible !important;
}

/* Eyebrow center */

main.container > header.hero .eyebrow{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  width:100% !important;
  margin:0 auto 34px !important;
}

/* Heading exact center */

main.container > header.hero .hero-title{
  width:100% !important;
  max-width:1000px !important;

  margin:0 auto !important;

  text-align:center !important;

  font-size:clamp(52px,6vw,92px) !important;
  line-height:.98 !important;
}

/* Gold heading center */

main.container > header.hero .hero-title em{
  display:block !important;
  width:100% !important;
  margin:12px auto 0 !important;
  line-height:1.18 !important;
  text-align:center !important;
}

/* Paragraph center */

main.container > header.hero .hero-sub{
  width:100% !important;
  max-width:720px !important;

  margin:34px auto 0 !important;

  text-align:center !important;
  line-height:1.7 !important;
}

/* Mobile */

@media(max-width:700px){

  main.container{
    width:100% !important;
    padding:125px 18px 40px !important;
  }

  main.container > header.hero{
    min-height:560px !important;
    padding:55px 20px !important;
    margin-bottom:60px !important;
  }

  main.container > header.hero .hero-title{
    font-size:clamp(42px,12vw,62px) !important;
  }
} 


/* =====================================================
   FINAL FULL WIDTH HERO FIX
   KEEP THIS AT THE VERY BOTTOM OF styles.css
===================================================== */


/* பொதுவான hero section full browser width */

body > section.hero,
body > main > header.hero{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
}


/* =====================================================
   HOME PAGE HERO
===================================================== */

body > section.hero#home{
  width:100% !important;
  max-width:none !important;

  margin:0 !important;
  padding:150px 6vw 90px !important;

  min-height:100vh;
}


/* Home hero content மட்டும் readable width */

body > section.hero#home .hero-inner{
  width:100% !important;
  max-width:1440px !important;

  margin:0 auto !important;
}


/* =====================================================
   PRODUCT PAGE HERO
===================================================== */

body > section.product-page-hero{
  width:100% !important;
  max-width:none !important;

  margin:0 !important;
  padding:150px 5vw 90px !important;

  min-height:760px;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(0,180,216,.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(255,209,102,.10),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f7fbff 0%,
      #ffffff 100%
    ) !important;
}


/* Product hero inner container */

body > section.product-page-hero > .container{
  width:100% !important;
  max-width:1500px !important;

  margin:0 auto !important;
  padding:0 !important;
}


/* Product content and image full available space */

body > section.product-page-hero .hero-grid{
  width:100% !important;

  display:grid !important;
  grid-template-columns:minmax(0, .9fr) minmax(500px, 1.1fr) !important;
  gap:70px !important;

  align-items:center !important;
}


/* =====================================================
   CONTACT PAGE HERO
===================================================== */

/* main container full width */

body > main.container{
  width:100% !important;
  max-width:none !important;

  margin:0 !important;
  padding:150px 0 60px !important;
}


/* Contact hero full browser width */

body > main.container > header.hero{
  width:100% !important;
  max-width:none !important;

  min-height:700px !important;

  margin:0 0 90px !important;
  padding:80px 5vw !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;

  overflow:hidden !important;

  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(0,180,216,.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(255,209,102,.11),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    ) !important;
}


/* Contact heading மட்டும் readable width */

body > main.container > header.hero .hero-title{
  width:100% !important;
  max-width:1350px !important;

  margin:0 auto !important;
}


/* Contact paragraph மட்டும் readable width */

body > main.container > header.hero .hero-sub{
  width:100% !important;
  max-width:760px !important;

  margin:34px auto 0 !important;
}


/* Contact hero கீழே உள்ள content */

body > main.container > .split,
body > main.container > .map-section{
  width:min(1360px, calc(100% - 80px)) !important;
  max-width:1360px !important;

  margin-left:auto !important;
  margin-right:auto !important;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1000px){

  body > section.product-page-hero .hero-grid{
    grid-template-columns:1fr !important;
    gap:45px !important;
  }

  body > section.product-page-hero{
    min-height:auto;
  }

  body > main.container > .split,
  body > main.container > .map-section{
    width:calc(100% - 40px) !important;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:600px){

  body > section.hero#home,
  body > section.product-page-hero{
    padding:125px 20px 60px !important;
  }

  body > main.container{
    padding-top:120px !important;
  }

  body > main.container > header.hero{
    min-height:580px !important;
    padding:60px 20px !important;
    margin-bottom:60px !important;
  }

  body > main.container > .split,
  body > main.container > .map-section{
    width:calc(100% - 28px) !important;
  }
}



/* =========================================
   PRODUCT HERO AUTO IMAGE SLIDER
========================================= */

.product-auto-slider{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}


/* ALL IMAGES */

.product-auto-slider .product-slide{
  position:absolute !important;
  inset:0;

  width:100% !important;
  height:100% !important;

  object-fit:cover;
  object-position:center;

  opacity:0;
  visibility:hidden;

  transform:scale(1.05);

  transition:
    opacity 1s ease,
    visibility 1s ease,
    transform 1.4s ease;
}


/* CURRENT IMAGE */

.product-auto-slider .product-slide.active{
  opacity:1 !important;
  visibility:visible !important;

  transform:scale(1);
}


/* Keep existing frame size */

.product-page-hero .hero-frame{
  position:relative;
  min-height:600px;
  overflow:hidden;
}


/* =========================================
   GALLERY FILTER FINAL FIX
========================================= */

.gallery-item{
  display:block;
  opacity:1;
  transform:scale(1);
  transition:
    opacity .35s ease,
    transform .35s ease;
}

.gallery-item.gallery-hide{
  display:none !important;
}

.gallery-item.gallery-show{
  display:block !important;
  animation:galleryFadeIn .45s ease forwards;
}

@keyframes galleryFadeIn{
  from{
    opacity:0;
    transform:translateY(20px) scale(.97);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}


/* GALLERY FILTER FINAL FIX */

.gallery-filters{
  width:92%;
  max-width:1320px;
  margin:0 auto 45px;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.gallery-grid{
  width:94%;
  max-width:1500px;
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.gallery-item{
  width:100%;
  height:320px;
  border-radius:28px;
  overflow:hidden;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.page-hero{
  padding:170px 6vw 70px;
  text-align:center;
}

@media(max-width:900px){

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:600px){

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item{
    height:260px;
  }

}




/* =========================================
   PRODUCT HERO 3 IMAGE AUTO SLIDER
========================================= */

.product-hero-slider{
  position:relative;
}


/* IMAGE FRAME */

.product-slider-frame{
  position:relative !important;

  width:100% !important;
  height:550px !important;

  overflow:hidden !important;

  border-radius:30px !important;
  background:#eaf2f8 !important;
}


/* ALL SLIDER IMAGES */

.product-slider-frame .product-hero-slide{
  position:absolute !important;
  inset:0 !important;

  width:100% !important;
  height:100% !important;

  display:block !important;
  object-fit:cover !important;
  object-position:center !important;

  opacity:0 !important;
  visibility:hidden !important;

  transform:scale(1.07) !important;

  transition:
    opacity .9s ease,
    visibility .9s ease,
    transform 5s ease !important;
}


/* ACTIVE IMAGE */

.product-slider-frame .product-hero-slide.active{
  opacity:1 !important;
  visibility:visible !important;

  transform:scale(1) !important;

  z-index:2 !important;
}


/* SUBTLE OVERLAY */

.product-slider-frame::after{
  content:"";

  position:absolute;
  inset:0;

  z-index:3;

  pointer-events:none;

  background:
    linear-gradient(
      180deg,
      rgba(0,28,65,.02) 50%,
      rgba(0,28,65,.14) 100%
    );
}


/* DOTS */

.product-slider-dots{
  position:absolute;

  left:50%;
  bottom:22px;

  transform:translateX(-50%);

  display:flex;
  align-items:center;
  gap:10px;

  z-index:6;
}


/* EACH DOT */

.product-slider-dot{
  width:10px;
  height:10px;

  padding:0;

  border:none;
  border-radius:50%;

  background:rgba(255,255,255,.65);

  box-shadow:
    0 3px 12px rgba(0,0,0,.18);

  transition:
    width .35s ease,
    background .35s ease,
    transform .35s ease;
}


/* ACTIVE DOT */

.product-slider-dot.active{
  width:34px;

  border-radius:20px;

  background:#ffffff;
}


/* BADGE ABOVE IMAGE */

.product-hero-slider .hero-badge{
  z-index:8 !important;
}


/* TABLET */

@media(max-width:1000px){

  .product-slider-frame{
    height:470px !important;
  }

}


/* MOBILE */

@media(max-width:700px){

  .product-slider-frame{
    height:360px !important;
    border-radius:24px !important;
  }

  .product-slider-dots{
    bottom:16px;
  }

}


/* ==================================================
   PREMIUM SMALL VIDEO CARDS + CINEMATIC POPUP
================================================== */

body.video-popup-open {
  overflow: hidden;
}

/* MAIN SECTION */

.premium-video-showcase {
  padding: 190px 6vw 100px;
  min-height: auto;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(0, 180, 216, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 53, 102, 0.10),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f4f8fc 100%
    );
}

.premium-video-container {
  position: relative;
  z-index: 2;

  width: min(1280px, 100%);
  margin: 0 auto;
}

/* HEADING */

.premium-video-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.premium-video-heading > span {
  display: inline-block;
  margin-bottom: 14px;

  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: #00b4d8;
}

.premium-video-heading h1 {
  margin: 0 0 18px;

  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;

  color: #001c41;
}

.premium-video-heading h1 em {
  display: block;
  color: #00b4d8;
}

.premium-video-heading p {
  max-width: 680px;
  margin: 0 auto;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.75;

  color: #64748b;
}

/* FOUR SMALL YOUTUBE STYLE CARDS */

.premium-video-grid {
  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.premium-video-card {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(0, 28, 65, 0.09);
  border-radius: 20px;

  background: #001c41;

  box-shadow:
    0 16px 36px rgba(0, 28, 65, 0.10),
    0 4px 12px rgba(0, 28, 65, 0.05);

  cursor: pointer !important;

  transition:
    transform 0.5s cubic-bezier(.16, 1, .3, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

.premium-video-card video {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(.16, 1, .3, 1),
    filter 0.5s ease;
}

.premium-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      180deg,
      rgba(0, 28, 65, 0.03) 35%,
      rgba(0, 28, 65, 0.58) 100%
    );

  pointer-events: none;

  transition: background 0.4s ease;
}

/* VIDEO NUMBER */

.premium-video-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);

  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;

  color: #001c41;

  box-shadow: 0 8px 24px rgba(0, 28, 65, 0.18);
}

/* PLAY ICON */

.premium-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;

  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);
  color: #001c41;

  box-shadow:
    0 18px 45px rgba(0, 28, 65, 0.32),
    0 0 0 10px rgba(255, 255, 255, 0.10);

  transform: translate(-50%, -50%);

  transition:
    transform 0.45s cubic-bezier(.16, 1, .3, 1),
    background 0.35s ease,
    color 0.35s ease;
}

.premium-video-play i {
  margin-left: 4px;
  font-size: 19px;
}

/* CARD HOVER */

.premium-video-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 180, 216, 0.35);

  box-shadow:
    0 30px 65px rgba(0, 28, 65, 0.18),
    0 10px 30px rgba(0, 180, 216, 0.10);
}

.premium-video-card:hover video {
  transform: scale(1.07);
  filter: brightness(1.04) saturate(1.08);
}

.premium-video-card:hover .premium-video-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 28, 65, 0.02) 25%,
      rgba(0, 28, 65, 0.42) 100%
    );
}

.premium-video-card:hover .premium-video-play {
  color: #ffffff;
  background: #00b4d8;

  transform:
    translate(-50%, -50%)
    scale(1.12);
}

/* ==================================================
   CENTER VIDEO POPUP
================================================== */

.premium-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* BACKGROUND-ல் OTHER VIDEOS SHADOW மாதிரி தெரியும் */

.premium-video-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 18, 42, 0.68);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;

  transition: opacity 0.45s ease;
}

/* POPUP OPEN */

.premium-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.premium-video-modal.is-open .premium-video-backdrop {
  opacity: 1;
}

/* VIDEO BOX */

.premium-video-dialog {
  position: relative;
  z-index: 2;

  width: min(1050px, 92vw);

  opacity: 0;

  transform:
    translateY(50px)
    scale(0.86);

  transition:
    opacity 0.45s ease,
    transform 0.65s cubic-bezier(.16, 1, .3, 1);
}

.premium-video-modal.is-open .premium-video-dialog {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.premium-video-player-wrap {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;

  background: #000814;

  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.20);
}

.premium-video-player-wrap video {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;

  background: #000000;
}

/* SIDE CLOSE BUTTON */

.premium-video-close {
  position: absolute;
  right: -24px;
  top: -24px;
  z-index: 10;

  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border: 3px solid #ffffff;
  border-radius: 50%;

  background: #001c41;
  color: #ffffff;

  font-size: 22px;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35);

  cursor: pointer !important;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.premium-video-close:hover {
  background: #00b4d8;

  transform:
    rotate(90deg)
    scale(1.08);
}

/* POPUP OPEN ஆகும்போது GALLERY CARDS BACKGROUND SHADOW */

body.video-popup-open .premium-video-showcase {
  filter: brightness(0.48);
}

body.video-popup-open .premium-video-card {
  transform: scale(0.97);
}

/* ENTRANCE ANIMATION */

.premium-video-card {
  opacity: 0;
  transform: translateY(45px);
}

.premium-video-card.video-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.premium-video-card.video-card-visible:hover {
  transform: translateY(-10px);
}

/* TABLET */

@media (max-width: 900px) {
  .premium-video-showcase {
    padding: 135px 5vw 85px;
  }

  .premium-video-grid {
    gap: 18px;
  }

  .premium-video-dialog {
    width: min(900px, 94vw);
  }

  .premium-video-close {
    right: -10px;
    top: -28px;
  }
}

/* MOBILE */

@media (max-width: 680px) {
  .premium-video-showcase {
    padding: 125px 18px 70px;
  }

  .premium-video-heading {
    margin-bottom: 34px;
  }

  .premium-video-heading h1 {
    font-size: 42px;
  }

  .premium-video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .premium-video-card {
    border-radius: 16px;
  }

  .premium-video-play {
    width: 54px;
    height: 54px;
  }

  .premium-video-number {
    top: 12px;
    left: 12px;

    width: 38px;
    height: 38px;
  }

  .premium-video-modal {
    padding: 18px;
  }

  .premium-video-dialog {
    width: 100%;
  }

  .premium-video-player-wrap {
    border-width: 3px;
    border-radius: 18px;
  }

  .premium-video-close {
    right: 0;
    top: -58px;

    width: 48px;
    height: 48px;
  }
}


.premium-video-card {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   VIDEO CENTER POPUP + BACKGROUND BLUR
========================================= */

.sv-video-modal{
  position:fixed;
  inset:0;

  z-index:99999;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:40px;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .4s ease,
    visibility .4s ease;
}

.sv-video-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}


/* BACKGROUND DARK + BLUR */

.sv-video-backdrop{
  position:absolute;
  inset:0;

  background:rgba(0,8,20,.72);

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}


/* CENTER VIDEO BOX */

.sv-video-modal-box{
  position:relative;

  z-index:2;

  width:min(1000px,88vw);

  opacity:0;

  transform:
    translateY(35px)
    scale(.86);

  transition:
    opacity .45s ease,
    transform .55s cubic-bezier(.16,1,.3,1);
}

.sv-video-modal.is-open .sv-video-modal-box{
  opacity:1;

  transform:
    translateY(0)
    scale(1);
}


/* LARGE VIDEO */

.sv-main-video{
  width:100%;
  aspect-ratio:16 / 9;

  display:block;

  object-fit:contain;

  border-radius:26px;

  background:#000;

  border:4px solid rgba(255,255,255,.92);

  box-shadow:
    0 45px 120px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,255,255,.18);
}


/* CLOSE BUTTON */

.sv-video-close{
  position:absolute;

  top:-24px;
  right:-24px;

  width:54px;
  height:54px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  border-radius:50%;

  background:#ffffff;
  color:#001c41;

  font-size:22px;

  z-index:5;

  box-shadow:
    0 15px 35px rgba(0,0,0,.35);

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}

.sv-video-close:hover{
  transform:rotate(90deg) scale(1.08);

  background:#00b4d8;
  color:#ffffff;
}


/* MODAL OPEN ஆனபோது PAGE SCROLL STOP */

body.sv-modal-open{
  overflow:hidden !important;
}


/* SMALL VIDEO GRID BACKGROUND EFFECT */

body.sv-modal-open .sv-video-section{
  filter:blur(4px);
  transform:scale(.99);

  transition:
    filter .4s ease,
    transform .4s ease;
}


/* MOBILE */

@media(max-width:600px){

  .sv-video-modal{
    padding:14px;
  }

  .sv-video-modal-box{
    width:96vw;
  }

  .sv-main-video{
    border-width:2px;
    border-radius:18px;
  }

  .sv-video-close{
    top:-18px;
    right:-2px;

    width:46px;
    height:46px;

    font-size:19px;
  }

}


/* =========================================
   VIDEO POPUP FINAL WORKING FIX
========================================= */

.video-popup{
  position:fixed;
  inset:0;

  z-index:999999;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:35px;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.video-popup.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}


/* BACKGROUND BLUR */

.video-popup-overlay{
  position:absolute;
  inset:0;

  background:rgba(0,8,20,.78);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}


/* CENTER VIDEO BOX */

.video-popup-box{
  position:relative;
  z-index:2;

  width:min(1000px,90vw);

  opacity:0;

  transform:
    translateY(35px)
    scale(.88);

  transition:
    opacity .4s ease,
    transform .5s cubic-bezier(.16,1,.3,1);
}

.video-popup.open .video-popup-box{
  opacity:1;

  transform:
    translateY(0)
    scale(1);
}


/* LARGE VIDEO */

.video-popup-player{
  width:100%;
  aspect-ratio:16 / 9;

  display:block;

  object-fit:contain;

  background:#000;

  border:4px solid #ffffff;
  border-radius:26px;

  box-shadow:
    0 45px 120px rgba(0,0,0,.65);
}


/* CLOSE BUTTON */

.video-popup-close{
  position:absolute;

  top:-22px;
  right:-22px;

  width:54px;
  height:54px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  border:none;
  border-radius:50%;

  background:#ffffff;
  color:#001c41;

  font-size:22px;

  z-index:5;

  box-shadow:
    0 15px 35px rgba(0,0,0,.35);

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}

.video-popup-close:hover{
  transform:rotate(90deg) scale(1.08);

  background:#00b4d8;
  color:#ffffff;
}


/* BACKGROUND VIDEOS BLUR */

body.video-popup-active .video-grid{
  filter:blur(6px);
  transform:scale(.98);

  transition:
    filter .35s ease,
    transform .35s ease;
}

body.video-popup-active{
  overflow:hidden !important;
}


/* VIDEO CARDS CLICKABLE */

.video-card{
  cursor:pointer !important;
}

.video-card,
.video-card *{
  cursor:pointer !important;
}


@media(max-width:600px){

  .video-popup{
    padding:14px;
  }

  .video-popup-box{
    width:96vw;
  }

  .video-popup-player{
    border-width:2px;
    border-radius:18px;
  }

  .video-popup-close{
    top:-18px;
    right:-2px;

    width:46px;
    height:46px;
  }

}


/* =========================================
   MISSION BADGE SECOND IMAGE POSITION FIX
========================================= */

@media (min-width: 851px){

  .premium-mission-section .quality-badge-wrap{
    position:absolute !important;

    width:390px !important;

    top:43% !important;
    left:38% !important;

    transform:translate(-50%, -50%) !important;

    margin:0 !important;
    z-index:5 !important;

    animation:none !important;
  }


  .premium-mission-section .quality-badge-image{
    width:100% !important;
    height:auto !important;

    display:block !important;
    object-fit:contain !important;

    transform:none !important;
  }


  .premium-mission-section .mission-glow-circle{
    width:390px !important;
    height:390px !important;

    top:43% !important;
    left:38% !important;

    transform:translate(-50%, -50%) !important;
  }

}