:root{
  --yellow-main:#FFC300;
  --yellow-soft:#ffe680;
  --nav-light:#fdfcfb;
  --nav-light-2:#f7f7ff;
  --text-dark:#222222;
}

.main-nav{
  background-image: linear-gradient(
    120deg,
    var(--nav-light),
    var(--nav-light-2),
    #fff7d6
  );
  padding: 0.7rem 0;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.clinic-name{
  color: var(--yellow-main);
  font-weight: 700;
  letter-spacing: .5px;
}

/* even spacing */
.nav-menu{
  display:flex;
  align-items:center;
  gap:1.4rem;
}

/* colorful hover underline + glow */
.nav-link{
  position:relative;
  color: var(--text-light);
  font-weight:500;
  text-transform:uppercase;
  font-size:.9rem;
  letter-spacing:.08em;
  padding:0.4rem 0;
  transition: color .3s, transform .3s;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:3px;
  background:linear-gradient(90deg,var(--yellow-main),var(--yellow-soft));
  border-radius:8px;
  box-shadow:0 0 12px rgba(255,195,0,.7);
  transition:width .35s ease-out;
}

.nav-link:hover,
.nav-link.active{
  color:#c79400;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

/* dropdown */
.dropdown-menu{
  background:#111;
  border:1px solid var(--yellow-main);
  animation:fadeDown .35s ease-out;
}

.dropdown-item{
  color:#fff;
}

.dropdown-item:hover{
  background:var(--yellow-main);
  color:#000;
}

/* appointment button */
.book-btn{
  background:var(--yellow-main);
  color:#000;
  font-weight:700;
  padding:.45rem 1.2rem;
  border-radius:999px;
  box-shadow:0 6px 22px rgba(255,195,0,.5);
  transition:transform .25s, box-shadow .25s, background .25s;
  text-transform:uppercase;
  font-size:.85rem;
}

.book-btn:hover{
  background:#ffd54a;
  transform:translateY(-3px) scale(1.04);
  box-shadow:0 10px 30px rgba(255,213,74,.8);
}

@keyframes fadeDown{
  from{opacity:0;transform:translateY(-10px);}
  to{opacity:1;transform:translateY(0);}
}

.nav-scrolled{
  background:#000000f2;
  padding:0.3rem 0;
  transition:padding .25s, background .25s;
}

/* keep navbar and its dropdown on top of everything */
.main-nav{
      /* or fixed, if you use fixed */
  top:0;
  z-index:1000;
}

.main-nav .dropdown-menu{
  z-index:1100;
}

/* make sure hero/video is below navbar */
.video-hero,
.hero-video{
  position:relative;
  z-index:1;
}






/* hero */

:root{
  --yellow-main:#FFC300;
  --yellow-soft:#ffe680;
  --hero-teal:#0bc6c7; /* accent like reference screenshot */
}

/* hero base */
.video-hero{
  position:relative;
  min-height: calc(100vh - 80px);
  color:#ffffff;
  overflow:hidden;
}

/* background video */
.hero-video{
  position:absolute;
  top:50%;
  left:50%;
  min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
  transform:translate(-50%,-50%);
  object-fit:cover;
  filter:brightness(0.55);
}

/* gradient overlay using brand colors */
.hero-overlay{
  position:absolute;
  inset:0;
 
  mix-blend-mode:overlay;
}

/* content on top */
.hero-content{
  position:relative;
  z-index:3;
  padding-top:5rem;
  padding-bottom:5rem;
}

/* text styles */
.hero-title{
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight:800;
  line-height:1.1;
}
.hero-title span{
  color:var(--yellow-main);
}

.hero-sub{
  margin-top:1rem;
  max-width:32rem;
  font-size:1rem;
  line-height:1.6;
}

/* buttons */
.hero-actions{
  margin-top:1.8rem;
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}

.hero-btn-primary{
  background:var(--yellow-main);
  color:#000;
  font-weight:700;
  padding:.75rem 1.8rem;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  transition:transform .25s, box-shadow .25s, background .25s;
}
.hero-btn-primary:hover{
  background:#ffd85b;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 14px 40px rgba(0,0,0,.55);
}

.hero-btn-outline{
  border:2px solid #ffffff;
  color:#ffffff;
  border-radius:999px;
  padding:.7rem 1.6rem;
  font-weight:600;
  backdrop-filter:blur(4px);
  background:rgba(255,255,255,0.06);
  transition:background .25s, color .25s, transform .25s;
}
.hero-btn-outline:hover{
  background:#ffffff;
  color:#000;
  transform:translateY(-3px);
}

/* animated pill tags */
.hero-tags{
  margin-top:1.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
}
.hero-tags span{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:.35rem .9rem;
  border-radius:999px;
  background:rgba(0,0,0,0.4);
  border:1px solid rgba(255,255,255,0.5);
  animation:floatTag 5s ease-in-out infinite;
}
.hero-tags span:nth-child(2){ animation-delay:.8s;}
.hero-tags span:nth-child(3){ animation-delay:1.6s;}

@keyframes floatTag{
  0%,100%{ transform:translateY(0); opacity:1;}
  50%{ transform:translateY(-6px); opacity:.9;}
}

/* responsive tweaks */
@media (max-width: 767.98px){
  .video-hero{
    text-align:center;
  }
  .hero-content{
    padding-top:4rem;
    padding-bottom:4rem;
  }
  .hero-actions{
    justify-content:center;
  }
}


/* about us */
:root{
  --yellow-main:#ffc300;
  --yellow-soft:#fff3b0;
  --yellow-bg:#fff9e5;
  --dark:#111111;
  --teal:#00a6b8;
}

/* ===== ABOUT SECTION WRAPPER ===== */
.about-section{
  padding:6rem 0 6rem;
  background:linear-gradient(135deg,#ffffff,var(--yellow-bg));
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease-out;
}
.about-section.visible{
  opacity:1;
  transform:translateY(0);
}

/* ===== LEFT : DOCTOR CARD ===== */
.doctor-card{
  background:var(--yellow-main);
  color:var(--dark);
  border-radius:40px 40px 120px 40px;
  padding:3.3rem 2.4rem 3rem;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
  height: 580px;
}

/* animated shine */
.doctor-card::before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.9),rgba(255,255,255,0));
  opacity:.7;
  animation:pulseGlow 5s ease-in-out infinite;
}

/* BIG round doctor image */
.doctor-img-wrap.large-photo{
  width:400px;
  height:260px;
 border-radius: 20%;
  overflow:hidden;
  border:6px solid #ffffff;
  box-shadow:0 14px 35px rgba(0,0,0,.25);
  position:relative;
}
.doctor-img-wrap.large-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
  transition:transform .5s ease;
}
.doctor-card:hover .doctor-img-wrap.large-photo img{
  transform:scale(1.12);
}

/* center image on large screens */
@media (min-width:992px){
  .doctor-img-wrap.large-photo{
    margin-left:auto;
    margin-right:auto;
  }
}

/* experience badge */
.badge-exp{
  position:absolute;
  bottom:16px;
  right:22px;
  background:var(--teal);
  color:#fff;
  padding:.45rem 1rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,166,184,.6);
}

/* doctor text */
.dr-title{
  font-size:1.9rem;
  font-weight:800;
  margin-top:1.3rem;
}
.dr-text{
  margin-top:1rem;
  color:#333;
  line-height:1.7;
  max-width:540px;
}
.dr-sign{
  margin-top:1.1rem;
  font-weight:700;
  font-size:1.05rem;
}

/* button */
.about-btn{
  margin-top:1.6rem;
  background:var(--dark);
  color:#fff;
  border-radius:999px;
  padding:.7rem 1.9rem;
  font-weight:700;
  border:none;
  box-shadow:0 14px 32px rgba(0,0,0,.4);
  transition:transform .25s, box-shadow .25s, background .25s;
}
.about-btn:hover{
  background:#333;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 18px 45px rgba(0,0,0,.55);
}

/* ===== RIGHT : ICON GRID (4 POINTS) ===== */
.about-icons-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.7rem 2.2rem;
}

/* tooth-style cards */
.tooth-card{
  position:relative;
  padding:1.7rem 1.3rem 1.5rem;
  text-align:center;
  border-radius:60px 60px 80px 80px;
  border:3px solid #f1c94a;
  background:#ffffff;
  box-shadow:0 14px 38px rgba(0,0,0,.12);
  transition:transform .3s, box-shadow .3s, border-color .3s;
  animation:floatFeature 6s ease-in-out infinite;
}
.tooth-card:nth-child(2){animation-delay:1.5s;}
.tooth-card:nth-child(3){animation-delay:2.2s;}
.tooth-card:nth-child(4){animation-delay:3.8s;}

.tooth-icon{
  width:58px;
  height:58px;
  margin:0 auto .7rem;
  border-radius:50%;
  background:linear-gradient(135deg,#f1c94a,#ffde66);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dark);
  font-size:1.5rem;
  box-shadow:0 8px 20px rgba(241,201,74,.7);
}
.tooth-card h5{
  font-size:1rem;
  margin-top:.35rem;
  font-weight:700;
}
.tooth-card p{
  font-size:.86rem;
  margin-top:.4rem;
  color:#555;
}

/* hover */
.tooth-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 50px rgba(0,0,0,.2);
  border-color:var(--teal);
}

/* ===== ANIMATIONS ===== */
@keyframes floatFeature{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
@keyframes pulseGlow{
  0%,100%{transform:scale(1); opacity:.7;}
  50%{transform:scale(1.2); opacity:1;}
}

/* ===== RESPONSIVE ===== */
@media (max-width:991.98px){
  .about-section{
    padding:4.5rem 0 4.5rem;
  }
  .doctor-card{
    margin-bottom:2.3rem;
    
  }
}

/* already have this for large screens */
/* @media (min-width:992px){ ... } */

/* NEW: center at tablet sizes (>=768 and <992) */
@media (min-width:768px) and (max-width:991.98px){
  .doctor-card{
    text-align:center;
  }
  .doctor-img-wrap.large-photo{
    margin-left:auto;
    margin-right:auto;   /* centers image */
  }
  .dr-text{
    margin-left:auto;
    margin-right:auto;
  }
}



/* on small screens stack and center */
@media (max-width:767.98px){
  .about-section{
    text-align:center;
  }
  .about-icons-grid{
    grid-template-columns:1fr;
    max-width:420px;
    margin:2rem auto 0;
  }
  
}
/* ===== SMALL MOBILES (up to 480, incl. 320) ===== */
@media (max-width:480px){

  .about-section{
    padding:3.5rem 0 3.5rem;
    text-align:center;
  }

  .doctor-card{
    border-radius:32px;
    padding:2.2rem 1.4rem 2.4rem;
  }

  .doctor-img-wrap.large-photo{
    width:210px;
    height:210px;
    margin:0 auto;
  }

  .dr-title{
    font-size:1.4rem;
    line-height:1.3;
  }

  .dr-text{
    font-size:.9rem;
    max-width:100%;
  }

  .about-btn{
    width:100%;
  }

  /* 4 points: one column, centered and a bit narrower */
  .about-icons-grid{
    grid-template-columns:1fr;
    max-width:320px;
    margin:2.2rem auto 0;
    gap:1.2rem;
  }

  .tooth-card{
    padding:1.4rem 1rem 1.3rem;
  }
}

/* counter */
.stats-section{
  padding:3.5rem 0;
  background:linear-gradient(90deg,#fff9e5,#ffffff);
}

.stat-card{
  background:#ffffff;
  border-radius:26px;
  padding:1.4rem 1rem;
  text-align:center;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  border:2px solid rgba(255,195,0,.4);
  transition:transform .25s, box-shadow .25s, border-color .25s;
  position:relative;
  overflow:hidden;
}
.stat-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at 0 0,rgba(255,195,0,.25),transparent 60%);
  opacity:0;
  transform:translate3d(-30px,-30px,0);
  transition:opacity .35s, transform .35s;
}
.stat-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 55px rgba(0,0,0,.16);
  border-color:#ffc300;
}
.stat-card:hover::before{
  opacity:1;
  transform:translate3d(0,0,0);
}

.stat-number{
  display:inline-block;
  font-size:2rem;
  font-weight:800;
  color:#111;
}
.stat-plus{
  font-size:1.5rem;
  font-weight:800;
  color:#00a6b8;
  margin-left:.1rem;
}
.stat-label{
  margin-top:.4rem;
  font-size:.9rem;
  line-height:1.4;
  color:#444;
}

/* small devices */
@media (max-width:575.98px){
  .stats-section{
    padding:3rem 0;
  }
  .stat-card{
    margin-bottom:.5rem;
  }
}
.stat-card{
  background:#ffffff;
  border-radius:26px;
  padding:1.6rem 1rem;
  text-align:center;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  border:2px solid rgba(255,195,0,.4);
  transition:transform .25s, box-shadow .25s, border-color .25s;
  position:relative;
  overflow:hidden;
}

.stat-icon{
  width:52px;
  height:52px;
  margin:0 auto .6rem;
  border-radius:50%;
  background:linear-gradient(135deg,#ffc300,#ffe680);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-size:1.5rem;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
}


/* Services */
.services-section{
  background:radial-gradient(circle at top,#fff7cc,#ffffff 55%);
}

/* titles */
.section-title{
  font-weight:800;
  font-size:2rem;
}
.section-title span{
  color:#ffc300;
}
.section-sub{
  max-width:560px;
  margin:0 auto;
  color:#555;
}

/* base card */
.service-card{
  position:relative;
  background:#ffffff;
  border-radius:28px;
  padding:1.6rem 1.3rem 1.7rem;
  cursor:pointer;
  overflow:hidden;
  opacity:0;
  transform:translateY(30px);
  transition:
    opacity .6s ease,
    transform .6s ease,
    box-shadow .3s ease,
    background .3s ease;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* gradient border glow */
.service-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background:linear-gradient(135deg,#ffc300,#ffe680,#00a6b8);
  opacity:0;
  transition:opacity .4s ease;
  z-index:-1;
}
.service-card::after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:inherit;
  background:#ffffff;
  z-index:-1;
}

/* icon */
.service-icon{
  width:60px;
  height:60px;
  border-radius:22px;
  background:radial-gradient(circle,#ffc300,#ffde66);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-size:1.7rem;
  box-shadow:0 12px 28px rgba(255,195,0,.55);
  margin-bottom:.9rem;
  transform:translateY(0);
  transition:transform .3s ease;
}

/* heading */
.service-title{
  font-size:1.1rem;
  font-weight:800;
  margin-bottom:.6rem;
}

/* image */
.service-img{
  border-radius:20px;
  overflow:hidden;
  margin-top:.4rem;
}
.service-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  transform:scale(1.03);
  transition:transform .45s ease;
}
.service-link{
  text-decoration:none;
  color:inherit;
  display:block;
}
.service-link:hover .service-card{
  transform:translateY(-4px);
}

/* video*/

.service-img img,
.service-img video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:inherit; /* if card has rounded corners */
}

/* same fixed height for all service images */
.service-img{
  position:relative;
  height:220px;        /* adjust 180–240px as you like */
  overflow:hidden;
  border-radius:18px;  /* match your design */
}

/* make image / video fill the box */
.service-img img,
.service-img video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}



/* hover / active animation */

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 26px 70px rgba(0,0,0,.22);
}
.service-card:hover::before{
  opacity:1;
}
.service-card:hover .service-img img{
  transform:scale(1.12);
}
.service-card:hover .service-icon{
  transform:translateY(-4px);
}

/* scroll reveal */
.service-card.visible{
  opacity:1;
  transform:translateY(0);
}

/* staggered animation delay */
.service-card:nth-child(1){ transition-delay:.05s;}
.service-card:nth-child(2){ transition-delay:.1s;}
.service-card:nth-child(3){ transition-delay:.15s;}
.service-card:nth-child(4){ transition-delay:.2s;}
.service-card:nth-child(5){ transition-delay:.25s;}
.service-card:nth-child(6){ transition-delay:.3s;}

@media (max-width:767.98px){
  .service-img img{ height:160px; }
}


/* the smile gallary */
.smile-gallery-section{
  background:#f7fbff;
}



.ba-slider{
  position:relative;
  width:100%;
  max-width:600px;      /* larger width if container allows */
  margin:0 auto;
  overflow:hidden;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}
.ba-img{
  width:100%;
  height:360px;         /* increase height */
  object-fit:cover;
  display:block;
}

/* both images */
.ba-img{
  width:100%;
  display:block;
  pointer-events:none;
}

/* after image clipped by JS */
.ba-after{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  object-fit:cover;
  clip-path:inset(0 50% 0 0); /* start 50% */
}

/* handle line + labels */
.ba-handle{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:3px;
  height:100%;
  background:#ffc300;
  box-shadow:0 0 0 2px #fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-direction:column;
  padding:.6rem 0;
  pointer-events:none;
}

.ba-handle span{
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:.15rem .6rem;
  border-radius:999px;
}

/* responsive */
@media (max-width:575.98px){
  .ba-slider{
    max-width:100%;
  }
}

/* clipping stays same */
.ba-after{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  object-fit:cover;
  clip-path:inset(0 50% 0 0);
}

/* vertical line handle */
.ba-handle-line{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:3px;
  height:100%;
  background:#ffc300;
  box-shadow:0 0 0 2px #fff;
  pointer-events:none;
}

/* labels on left/right */
.ba-label{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:.18rem .7rem;
  border-radius:999px;
  background:rgba(0,0,0,.6);
  color:#fff;
  pointer-events:none;
}
.ba-label-before{
  left:12px;
}
.ba-label-after{
  right:12px;
}


/* Testominals */
.testimonials-section{
  background:radial-gradient(circle at top,#fff7cc,#ffffff 55%);
  text-align:center;
}

.testimonials-section .section-title{
  font-weight:800;
  font-size:2rem;
  margin-bottom:2rem;
}
.testimonials-section .section-title span{
  color:#ffc300;
}

/* slider layout */
.testimonial-slider{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:0.8rem;
}

.ts-viewport{
  overflow:hidden;
  flex:1;
}

.ts-track{
  display:flex;
  will-change:transform;
  transform:translateX(0);
}

/* 3 cards visible on desktop */
.ts-card{
  flex:0 0 33.3333%;
  padding:1.6rem 1.3rem 1.8rem;
  margin:0 .75rem;
  background:#fff;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
  text-align:left;
}

.ts-text{
  margin-bottom:1.2rem;
  color:#333;
  font-size:.95rem;
  line-height:1.6;
}
.ts-person{
  display:flex;
  align-items:center;
  gap:.8rem;
}
.ts-person img{
  width:52px;
  height:52px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid #ffc300;
}
.ts-person h4{
  margin:0;
  font-size:1rem;
  font-weight:700;
}
.ts-person span{
  font-size:.8rem;
  color:#555;
}

/* buttons */
.ts-btn{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.ts-btn:hover{
  background:#ffc300;
  color:#111;
}

/* 1 at a time on mobile */
@media (max-width:767.98px){
  .ts-card{
    flex:0 0 100%;
    margin:0;
  }
}


/* Contact us */

.contact-section{
  background:linear-gradient(180deg,#ffffff,#fff7cc);
}

.contact-section .section-title{
  font-weight:800;
  font-size:2.2rem;
}
.contact-section .section-title span{
  color:#ffc300;
}
.contact-section .section-sub{
  max-width:620px;
  margin:0 auto;
  color:#555;
}

/* big shell */
.contact-shell{
  position:relative;
  margin-top:1rem;
  padding:2.4rem 2.2rem;
  border-radius:40px;
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#f9fafb;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
}

/* bubbles */
.bubble{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle,#ffc300,#ffea8a);
  opacity:.18;
  filter:blur(1px);
  animation:floatBubble 14s infinite ease-in-out;
}
.bubble-1{ width:180px;height:180px;top:-40px;left:-40px; }
.bubble-2{ width:140px;height:140px;bottom:-40px;right:10%;animation-delay:3s;}
.bubble-3{ width:110px;height:110px;top:40%;right:-30px;animation-delay:6s;}

@keyframes floatBubble{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* left details */
.contact-left{
  position:relative;
  z-index:2;
}
.contact-left h3{
  font-weight:800;
  font-size:1.4rem;
  margin-bottom:1rem;
}
.contact-left p{
  margin-bottom:.4rem;
  font-size:.97rem;
}
.contact-left i{
  margin-right:.6rem;
  color:#ffc300;
}

.quick-tags{
  margin-top:1.2rem;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.quick-tags span{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  font-size:.8rem;
}

/* form */
.contact-form{
  position:relative;
  z-index:2;
}
.input-wrap.big{
  display:flex;
  flex-direction:column;
  gap:.2rem;
}
.input-wrap.big label{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#9ca3af;
}
.input-wrap.big label i{
  margin-right:.4rem;
  color:#ffc300;
}

.input-wrap.big .form-control,
.input-wrap.big .form-select{
  background:rgba(15,23,42,.9);
  border-radius:18px;
  border:1px solid rgba(148,163,184,.6);
  color:#e5e7eb;
  padding:.7rem .9rem;
  font-size:.93rem;
  box-shadow:none;
  transition:border-color .25s, box-shadow .25s, transform .15s, background .25s;
}
.input-wrap.big .form-control::placeholder{
  color:#6b7280;
}

/* focus effect */
.input-wrap.big .form-control:focus,
.input-wrap.big .form-select:focus{
  border-color:#ffc300;
  background:rgba(15,23,42,1);
  box-shadow:0 0 0 0.13rem rgba(255,195,0,.35);
  transform:translateY(-1px);
}

/* button */
.contact-btn{
  background:linear-gradient(135deg,#ffc300,#ffde6a);
  color:#111827;
  border:none;
  border-radius:999px;
  padding:.8rem 2.1rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  box-shadow:0 18px 40px rgba(0,0,0,.4);
  transition:transform .25s, box-shadow .25s, filter .25s;
}
.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 60px rgba(0,0,0,.5);
  filter:brightness(1.05);
}
.contact-btn i{
  font-size:.95rem;
}

/* responsive */
@media (max-width:767.98px){
  .contact-shell{
    padding:2rem 1.4rem;
    border-radius:30px;
  }
  .contact-left{
    margin-bottom:1.4rem;
    text-align:center;
  }
  .quick-tags{
    justify-content:center;
  }
}

/* Footer */

.site-footer{
  position:relative;
  background:linear-gradient(135deg,#ffffff,#fef3c7); /* white to soft cream */
  color:#111827;
  padding-top:3.2rem;
  padding-bottom:1.6rem;
  overflow:hidden;
}

/* glowing border on top */
.footer-top-glow{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:140%;
  height:3px;
  background:linear-gradient(90deg,transparent,#fbbf24,transparent);
  box-shadow:0 0 18px rgba(251,191,36,.9);
  opacity:.9;
}

/* layout */
.footer-row{
  position:relative;
  z-index:2;
}
.footer-block h3,
.footer-block h4{
  font-weight:700;
  margin-bottom:1rem;
  color:#111827;
}
.footer-block h4{
  font-size:1.05rem;
}

/* logo + intro */
.footer-logo{
  display:flex;
  align-items:center;
  gap:.7rem;
}
.footer-logo img{
  width:100px;
  height:auto;
  margin-left: 50px;
}
.footer-logo span{
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.03em;
}
.footer-text{
  font-size:.9rem;
  color:#4b5563; /* slate gray */
  max-width:260px;
}

/* social icons */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:.6rem;
}
.footer-social a{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(148,163,184,.8);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111827;
  font-size:.8rem;
  text-decoration:none;
  background:#ffffff;
  transition:background .25s, color .25s, transform .2s, box-shadow .25s;
}
.footer-social a:hover{
  background:#facc15; /* warm yellow */
  color:#111827;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

/* links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:.3rem;
}
.footer-links a{
  color:#00060d;
  font-size:.9rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  position:relative;
  transition:color .25s, transform .2s;
}
.footer-links a i{
  color:#fbbf24;
  font-size:.75rem;
}
.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:2px;
  background:#facc15;
  transition:width .25s;
}
.footer-links a:hover{
  color:#111827;
  transform:translateX(3px);
}
.footer-links a:hover::after{
  width:100%;
}

/* contact mini */
.footer-block p{
  font-size:.9rem;
  margin-bottom:.3rem;
  color:#00060f;
}
.footer-block p i{
  margin-right:.45rem;
  color:#fbbf24;
}

/* CTA button */
.footer-cta-btn{
  margin-top:.9rem;
  background:linear-gradient(135deg,#facc15,#fde68a);
  color:#111827;
  border:none;
  border-radius:999px;
  padding:.55rem 1.4rem;
  font-size:.9rem;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  transition:background .25s, transform .2s, box-shadow .25s;
}
.footer-cta-btn i{
  font-size:.9rem;
}
.footer-cta-btn:hover{
  background:#fbbf24;
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

/* bottom bar */
.footer-bottom{
  margin-top:2.2rem;
  border-top:1px solid rgba(209,213,219,.9);
  padding-top:.7rem;
  display:flex;
  flex-wrap:wrap;
 
  align-items:center;
  font-size:.8rem;
  color:#00040b;
  align-items: center;
  justify-content: center;
}
.footer-made span{
  color:#fbbf24;
}

/* responsive */
@media (max-width:767.98px){
  .footer-text{
    max-width:none;
  }
  .footer-bottom{
    flex-direction:column;
    gap:.3rem;
    text-align:center;
  }
}


.footer-block p a{
  color:inherit;
  text-decoration:none;
}
.footer-block p a:hover{
  text-decoration:underline;
}
.footer-bottom a{
  color:#f59e0b;
  text-decoration:none;
  margin-left:.25rem;
}
.footer-bottom a:hover{
  text-decoration:underline;
}

.pra{
   color:inherit;
  text-decoration:none;
}
.pra:hover{
  text-decoration:underline;
}



.change{
  margin-left: 80px;
}


@media (max-width:576px){
  
.change{
  margin: 0px;
}
.footer-block{
  margin-top: 10px;
}
}





/* desktop-only alignment */
@media (min-width:992px){
  .footer-block p{
    display:flex;
    align-items:center;
    gap:.4rem;
    margin-bottom:.3rem;
  }

  .footer-block p i{
    flex:0 0 auto;
  }

  /* default: links can wrap */
  .footer-block p a{
    white-space:normal;
    word-break:normal;
  }

  /* email only: keep in one line beside icon */
  .footer-block p:nth-of-type(3) a{
    white-space:nowrap;
    word-break:break-all;
  }
}
