
body,html{
  overflow-x: hidden;
   font-family: sans-serif;

      font-family: 'Sweet Sans Pro', sans-serif !important;
}

h1,h2,h3,h4,strong {

 font-family: 'Sweet Sans Pro', sans-serif !important;

font-weight: 600!important;
font-style: normal;
    
  }

p, summary{
    color: #434343 !important;
    font-size: 14px !important;
    letter-spacing: 0.1px;
 /* font-family: "amandine", sans-serif; */
    /* font-family: "the-seasons", serif; */
    font-family: "Sweet Sans Pro x", Verdana, sans-serif;
}
li, .mt-3{
font-size: 16px !important;
 
   
  letter-spacing: 1px;
 
}
li p{
  display: inline;
  margin: 0;
   
}
#footer .footer-links ul li a{
    font-size: 15px !important;
    letter-spacing: 0px !important;
}
strong{
    color: black !important;
    
}
h4{
  font: size 1.5rem;
  /* font-weight: 300!important;
  color: black; */
}



/* h1,h2,h3,strong
{
    font-family: 'Playfair Display', serif;
} */
/* navbar */
.mar-30 {
    margin-right: 8px;
}
/* service */
.glass-services{
padding:90px 0;
background:linear-gradient(135deg,#eef7f7,#f0faf9);

}
.glass-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:60px;
color:#222;
}

.glass-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.glass-card{
position:relative;
border-radius:18px;
overflow:hidden;
height:260px;
display:block;
}

.glass-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

/* glass overlay */

.glass-overlay{
position:absolute;
bottom:0;
width:100%;
padding:25px;
color:white;

background:linear-gradient(
180deg,
rgba(0,0,0,0) 0%,
rgba(0,0,0,0.65) 100%
);

backdrop-filter:blur(6px);
}

.glass-overlay h3{
font-size:18px;
font-weight:600;
}

/* hover effect */

.glass-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg,#47b8b8,#6be0d2);
opacity:0;
transition:0.4s;
}

.glass-card:hover::before{
opacity:0.25;
}

.glass-card:hover img{
transform:scale(1.1);
}

/* responsive */

@media(max-width:992px){
.glass-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.glass-grid{
grid-template-columns:1fr;
}
}

/* header */

  section{
            margin: 80px 20px;
            background-color: #fff;
        }
        @media(max-width:792px){
          section{
            margin: 30px 20px;
          }
        }
        .container{
            max-width: 1400px;
            margin: 0 auto;
        }
        .header-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
            gap: 30px;
        }
        .header-card{
            transform: translateY(-10px);
        }
        .header-img{
            overflow: hidden;
            /* padding: 20px; */
        }
        .header-img img{
            
            width: 100%;
            height: 412px;
            border-radius:15px;
           
            /* padding: 40px; */
        }
        .header-img img:hover{
            transition: all 0.55s ease;
            transform: rotate(0deg);

        }
        .header-content{
            padding: 8px 8px;
        }
        .header-content h3{
            text-transform: uppercase;
            /* padding: 10px; */
            font-size: 40px;
            color: black;

        }
        .header-content p{
            font-size: 18px;
            padding: 0px 0 10px 0;
            color: rgb(54, 54, 54);
        }
.header-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   
    font-weight: 300;
    font-size: 18px;
      color: #3F6167;
}

.header-buttons a {
    text-decoration: none;
    text-transform: capitalize;
  
    font-size: 17px;
 font-family: 'Sweet Sans Pro', sans-serif !important;}

/* Book button */
.book {
    background-color:#88d3cf;
    padding: 10px ;
    border-radius: 10px;
color: #3F6167;;
    transition: all 0.35s ease-out;
}

.book:hover {
    transition: all 0.35s ease;
    transform: translateY(-5px);
    background-color: #b7ab81;
    color: #fff;
}


/* before after */
/* SECTION */

.before-after-section{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding:80px 70px;
position:relative;
overflow:hidden;

background:linear-gradient(177deg,#5fbab6,#3fa7a3,#2f8f8c);
}


/* SECTION HEADING */

.section-heading{
grid-column:1/-1;
text-align:center;
max-width:750px;
margin:0 auto 30px auto;
position:relative;
z-index:2;
}

.section-heading h1{
font-size:32px;
color:white;
margin-bottom:15px;
font-weight:600;
}

.section-heading p{
font-size:17px;
line-height:1.6;
color:rgba(0, 0, 0, 0.9)!important;
}


/* ANIMATED WAVES */

.before-after-section::before{
content:"";
position:absolute;
top:-60%;
left:-60%;
width:220%;
height:220%;

background:radial-gradient(circle,
rgba(255,255,255,0.35) 0%,
rgba(255,255,255,0.15) 30%,
transparent 65%);

animation:waveMove 14s linear infinite;

z-index:0;
}

.before-after-section::after{
content:"";
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;

background:radial-gradient(circle,
rgba(255,255,255,0.25) 0%,
transparent 60%);

animation:waveMoveReverse 18s linear infinite;

z-index:0;
}


@keyframes waveMove{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

@keyframes waveMoveReverse{
0%{transform:rotate(360deg);}
100%{transform:rotate(0deg);}
}


/* CARD */

.result-card{
position:relative;
z-index:2;

background:rgba(255,255,255,0.45);
backdrop-filter:blur(15px);

padding:25px;
border-radius:24px;

border:1px solid rgba(255,255,255,0.6);

box-shadow:
0 15px 35px rgba(0,0,0,0.08),
0 0 0 4px rgba(140,230,224,0.3);

transition:all .4s ease;
}


.result-card:hover{
transform:translateY(-10px) scale(1.02);

box-shadow:
0 25px 60px rgba(0,0,0,0.15),
0 0 0 6px rgba(140,230,224,0.35);
}


/* IMAGE */

.image-wrapper{
display:flex;
justify-content:center;
align-items:center;
}

.image-box img{
width:100%;
border-radius:14px;
transition:transform .4s ease;
}

.result-card:hover img{
transform:scale(1.05);
}

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


/* Large tablets */

@media (max-width:1200px){

.before-after-section{
grid-template-columns:repeat(2,1fr);
padding:70px 50px;
}

.section-heading h1{
font-size:36px;
}

}


/* Tablets */

@media (max-width:900px){

.before-after-section{
grid-template-columns:1fr;
padding:60px 40px;
gap:30px;
}

.section-heading h1{
font-size:32px;
}

.section-heading p{
font-size:15px;
}

}


/* Mobile */

@media (max-width:600px){

.before-after-section{
padding:40px 20px;
gap:25px;
}

.result-card{
padding:18px;
}

.image-box img{
border-radius:10px;
}

.section-heading h1{
font-size:26px;
}

.section-heading p{
font-size:14px;
}

}

/* Pricing button */
.pricing {
    border: 2px solid rgb(71, 184, 184);
    padding: 10px;
    color: rgb(71, 184, 184);
   
    border-radius: 10px;
}
.pricing:hover {
    transition: all 0.35s ease;
    transform: translateY(-5px);
    background-color:#B7AB81;
    color: #fff;
    border: 2px solid #B7AB81;
    
}

@media(max-width:712px)
{
    .header-content h3{
        font-size: 26px;
    }
    
   .header-img img {
        margin-top: 0px;
        padding-top: 0px;
        width: 100%;
        height: 93%;
}
    }
/* know section */

.know-container{
    max-width: 1000px;
    margin: 0 auto;
    background-color: whitesmoke;
    padding: 40px 0px 40px 0px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgb(71, 184, 184);
    margin-bottom: 30px;
}
.know-container h3{
    text-align: center;
    font-size: 22px;
    color: #000000;
    font-weight: bold;
}
.know-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.did_you_know{
    color: #fff !important;
}


.know-card{
    max-width: 424px;
    padding: 10px 20px;
    line-height: 1.9;
}

.k-container{
    max-width: 900px;
    margin: 0 auto;
    
    line-height: 1.9;
    padding: 15px;
    border-radius: 15px;
    background-color:rgb(71, 184, 184);
    /* border-left: 2px solid rgb(71, 184, 184); */
}
/* why choose us section */

.why-container{
    max-width: 1100px;
    margin: 0 auto;
}
.why{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px , 1fr));
    gap: 30px;
}
.why-container h2{
  
    text-align: center;

    font-size: 27px;
    color:#000;
}
.why-container p{
    /* text-align: center; */
    font-weight: 400;
    color: #666;
    
}
.why-card{
    padding: 30px 20px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.35s ease,box-shadow all 0.35s ease;
     background-color: rgb(249, 249, 249);
     outline: 2px solid transparent;
    outline-offset: -2px;
     outline: 2px solid rgb(71, 184, 184);
}
.card-icon img{
    width: 70px;
    height: 70px;
}
.card-content p{
    color: rgb(87, 85, 85);
}
.card-content h3{
    color: #000000 ;
    font-weight: 500;
    font-size: 20px;
}
.why-card:hover{
   transition: all 0.35s ease;
  
    outline-offset: -2px;
    scale: calc(1.01);
    transform: translateY(-10px);
}
@media(max-width:412px){
    .why-card{
        /* max-width: 270px; */
        margin: 0 auto;
    }
}
/* dental implants */

/* SECTION SPACING */
.implant-eligibility {
  margin: 80px 20px;
  font-family: 'Sweet Sans Pro', sans-serif !important;
}

.implant-eligibility h2 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #000;
}

.spacer {
  padding: 20px 0;
}

/* CONTAINER */
.dental-container {
  max-width: 1100px;
  margin:0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* CARD BASE */
.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
}

/* HEADER (ICON + TITLE) */
.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px !important;
}

.card-header h3 {
  margin: 0 ;          /* kills default browser margin */
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

@media(max-width:712px){
  .card-header h3{
    text-align: left !important;
    font-size: 13px;
    line-height: 15px;
  }
}
/* ICONS */
.icon1 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  color: #fff;
}

.icon.success { background: #3bb7a4; }
.icon.info    { background: #8b6b4a; }
.icon.danger  { background: #ef4444; }

/* LISTS */
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin-bottom: 16px;
  color: #555;
}

.card li p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.1px;
}
.card.ideal-candidate ul li strong
     {
    letter-spacing: 0.1px;
}
.card.additional-treatment li strong{
    letter-spacing: 0.1px !important;
}

.card.not-recommended li strong{
    letter-spacing: 0.1px !important;
}


/* SPECIAL BACKGROUNDS */
.additional-treatment {
  background: #d9c1a1;
}

.additional-treatment h3,
.additional-treatment li {
  color: #000;
}

.not-recommended {
  background: #fff1f1;
  border: 1px solid #fca5a5;
}

/* RIGHT COLUMN */
.right-column {
  display: grid;
  gap: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dental-container {
    grid-template-columns: 1fr;
  }
}

/* why choose us for implant */
.why-choose-container{
    max-width: 1200px;
    margin: 0 auto;
}
.why-choose{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  align-items: start;
}


.why-choose-img{
    overflow: hidden;
    margin-top: 100px;
    
}

.why-choose-img img{
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}
.why-choose-top h3{
   color: black ;
   font-size: 29px;
   font-weight: bold;
}

.why-choose-top p{
    color: #666;
    font-size: 18px;
}

.why-choose-content strong{
    font-weight: bold;
}

.why-choose-content li {
    list-style: none;
}
.why-choose-content ul {
  padding: 0;
  margin: 30px 0 0;
}

.why-choose-content li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.why-choose-content .icon {
  width: 42px;
  height: 42px;
  background: #6bc4be;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.why-choose-content .text strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.why-choose-content .text p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.why-choose-content .feature-item .text strong{
    letter-spacing: 0.1px !important;
}
@media (max-width: 768px) {

  .guide-content h2
  {
    font-size: 22px!important;
  }
  .why-london-content h2 {
    font-size: 22px!important;
  }
.glass-title

 {
    text-align: center;
    font-size: 24px;
 }

  .implant-eligibility h2 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
  }
  .why-choose{
    grid-template-columns: 1fr;
  }
.why-container h2{
  
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color:#000;
}
  .why-choose-img{
    margin-top: 0;
    text-align: center;
  }
  
.why-choose-content .text strong {
    font-size: 16px;
}
  .why-choose-img img{
    margin: 0 auto;
  }

  .why-choose-top h3{
            font-size: 22px;
        margin-top: 20px;
  }
}
/* implant process  */

.implant-section h2{
    color: #000000;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}
.process-container{
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap; 
}

.process-card{
    width: 25%; 
    max-width: 350px;
    padding: 20px;
    /* text-align: center; */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
     background-color: rgb(249, 249, 249);
}

/* Hover effect – no layout shift */
.process-card:hover{
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 40px rgba(71,184,184,0.35);
    outline: 2px solid rgb(71, 184, 184);
    outline-offset: -2px;
}


.icon {
    margin: 10px 10px;
}

.process-content h3{
  margin-top: 25px;
    color: #000000;
    font-size: 19px;
    font-weight: bold;
}
.process-content p{
    /* text-align: center; */
    color: #666;
}

@media (max-width: 992px){
    .process-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-card{
        width: 45%;
    }
}

@media (max-width: 576px){
    .process-card{
        width: 100%;
    }
}

/* pricing section */
.pricing-section{
    padding: 80px 8px;
    background: #f9fbfb;
    
}

.pricing-header{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}
.pricing-header h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color:#000000;
}

.pricing-header p{
    color: #666;
}

.pricing-card{
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 24px;
    border-bottom: 1px solid #e6e6e6;
}
#top-price{
    background-color:#88d3cf;
}
.pricing-row h3{
    color: #000000;
    font-weight: bold;
    font-size: 22px;
}
.pricing-row h4{
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}

.pricing-row p{
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

.pricing-row span{
    font-weight: 600;
    white-space: nowrap;
}

@media(max-width:992px){
  .pricing-header h2{
    font-size: 28px;
  }
}

/* form css */
.guide-section{
    min-height: 60vh;
    background: linear-gradient(120deg, #88d3cf, #fff);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.guide-container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.guide-badge{
    display: inline-block;
    background: #fff;
    color: #3bb7a4;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.guide-content h2{
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 600;
}

.guide-intro{
    max-width: 520px;
    margin-bottom: 25px;
    color: #222 !important;
}

.guide-list{
    list-style: none;
    padding: 0;
}

.guide-list li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 15px;
}
.twitter_bg
{
  background-color: #ffffff;
}
.guide-list li::before{
    content: "✔";
    position: absolute;
    left: 0;
    color: #b8aa78 !important;
    font-weight: bold;
}

/* RIGHT CARD */
.guide-card{
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    position: relative;
}

.pdf-icon{
    width: 56px;
    height: 56px;
    background: #5fbfb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.guide-card h3{
    font-size: 20px;
    margin-bottom: 6px;
}

.card-subtitle{
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* FORM */
.guide-form label{
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.guide-form input{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 14px;
}

.checkbox{
    display: flex;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 18px;
}

/* BUTTON */
.download-btn{
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: #5fbfb2;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: a 0.3s ease;
}

.download-btn:hover{
    background: #49a99e;
}

@media(max-width:992.98px){
  .download-btn{
    font-size: 10px;
  }
}

.secure-text{
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .guide-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



/* why london choose  */
.why-london-section{
  padding: 40px 0px 10px ;
  background:#fff;
 
}

.why-london-container{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap:60px;
}

/* LEFT */
.why-london-content h2{
  font-size:32px;
  line-height:1.2;
  margin-bottom:20px;
  color: #000;
  font-weight: bold;
  
}

.why-london-content p{
  color:#444;
  margin-bottom:18px;
}

.why-london-content h3{
  margin:30px 0 16px;
  font-size:22px;
  color: #000;
  font-weight: bold;
}

.implant-types{
  list-style:none;
  padding:0;
}

.implant-types li{
  position:relative;
  padding-left:26px;
  margin-bottom:16px;
}

.implant-types li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#4db6ac;
  font-weight:bold;
}

.implant-types strong{
  display:block;
  font-size:15px;
  
}

.implant-types span{
  font-size:14px;
  color:#555;
}

/* RIGHT */
.why-london-side{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.candidate-card{
  background:#f7f7f7;
  padding:26px;
  border-radius:14px;
}

.candidate-card h4{
  margin-bottom:10px;
  color: #4db6ac;
}
.candidate-card h3, .facts-card h4{
  font-size: 20px;
}
.candidate-card p{
  font-size:14px;
  color:#555;
  margin-bottom:18px;
}




.check-list{
  list-style:none;
  padding:0;
}

.check-list li{
  position:relative;
  padding-left:32px;
  margin-bottom:14px;
  font-size:14px;
  color: #666;
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:2px;
  background:#4db6ac;
  color:#fff;
  width:20px;
  height:20px;
  border-radius:50%;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.check-list strong{
  display:block;
  font-weight:600;
}

/* FACTS */
.facts-card{
  background: linear-gradient(120deg, #88d3cf, #b8aa78);
  color:#fff;
  padding:26px;
  border-radius:14px;
}

.facts-card h4{
  margin-bottom:14px;
}

.facts-card ul{
  list-style:none;
  padding:0;
}

.facts-card li{
  position:relative;
  padding-left:22px;
  margin-bottom:12px;
  font-size:14px;
}

.facts-card li::before{
  content:"›";
  position:absolute;
  left:0;
  font-size:18px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .why-london-container{
    grid-template-columns:1fr;
  }
}


/* FAQs */
.faq-section{
  margin: 30px 0 !important;
  padding:10px 20px !important;
}

.faq-container{
  max-width:900px;
  margin:0 auto;
}

.faq-container h2{
  text-align:center;
  font-size:34px;
  margin-bottom:12px;
  color: #4db6ac;
}

.faq-subtitle{
  text-align:center;
  color:#666;
  margin-bottom:40px;
}

/* FAQ ITEMS */
.faq-item{
  background:#f7f7f7;
  border-radius:12px;
  padding:18px 22px;
  margin-bottom:14px;
}

.faq-item summary{
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* REMOVE DEFAULT MARKER */
.faq-item summary::-webkit-details-marker{
  display:none;
}

/* CUSTOM ARROW */
.faq-item summary::after{
  content:"⏷";
  font-size:18px;
  transition:transform 0.3s ease;
}

/* ROTATE WHEN OPEN */
.faq-item[open] summary::after{
  transform:rotate(180deg);
}

/* CONTENT */
.faq-item p{
  font-size:14px;
  color:#444;
  margin-top:14px;
}
/* testmoninals */
.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
 
}

.badge {
  display: inline-block;
  background: #5cc3b5;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.testimonials-section h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
}

.video-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-card {
  text-align: left;
}

.video-thumb {
  position: relative;
  height: 220px;
  border-radius: 14px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumb:hover {
  transform: translateY(-4px);
}

.play-btn {
  width: 70px;
  height: 70px;
  background: red;
  border-radius: 50%;
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-left: 16px solid #5cc3b5;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.play-text {
  position: absolute;
  bottom: 28px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.video-card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}

.video-card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.stars {
  color: #d4b48a;
  font-size: 16px;
}

.hint {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

.hint span {
  color: #5cc3b5;
  margin-right: 6px;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 10px;
}

.video-modal iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}/* ===============================
   CONTACT SECTION (NO OVERFLOW)
================================ */

/* Safety net for this section only */
.contact-section,
.contact-section * {
  box-sizing: border-box;
}

/* Wrapper */
.contact-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 20px;

  overflow-x: hidden; /* KEY FIX */
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

/* ===============================
   MAP
================================ */
.map-box {
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.map-box iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ===============================
   CONTACT CARD
================================ */
.contact-card {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #88d3cf, #B7AB81 );
  border-radius: 14px;
  padding: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Title */
.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #ffffff;
}

/* ===============================
   CONTACT ITEMS
================================ */
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
  color: #ffffff;
  width: 100%;
}
.contact-item p{
  color: #fff!important;
}
.item-text {
  flex: 1;
  min-width: 0;
}

.contact-item strong {
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  
}

.contact-item p {
  font-size: 15px!important;
  line-height: 1.5;
  margin-bottom: 4px;
  color: #ffffff;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  word-break: break-word;
}

.contact-item small {
  font-size: 12px;
  opacity: 0.9;
}

/* ===============================
   ICONS
================================ */
.icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 60px;
  height: 60px;
}

/* ===============================
   BUTTONS
================================ */
.contact-buttons {
  display: flex;
  gap: 14px;
  margin-top: auto;
  width: 100%;
  flex-wrap: wrap; /* prevents overflow */
}

.btn {
  flex: 1;
  min-width: 0;
  padding: 14px 0;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
/* .contact-buttons{

} */
.btn-primary {
  background: #88d3cf !important;
  color: #ffffff;
  border-color: transparent !important;
}

.btn-secondary {
  background: #88d3cf!important;
  color: #ffffff;
  border-color: transparent !important;
}

/* ===============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 900px) {
  .contact-section {
    padding: 20px 16px;
  }

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

  .map-box iframe {
    min-height: 300px;
  }

  .contact-card {
    padding: 24px;
  }

  /* .contact-buttons {
    flex-direction: column;
  } */
}




/* footer */

#footer {
    background-color: #333333;
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 25px #88d2cf solid;
    color: #BAB8B8;
    font-size: 14px;
    line-height: 26px;
}
#footer a {
    color: #BAB8B8!important;
    text-decoration: none!important;
}
.sds-footer-dark {
    background: #3b3b3b;
    color: #dcdcdc;
    font-family: 'Sweet Sans Pro', sans-serif !important;
    font-size: 13px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
}

/* Text & links */
.footer-col p,
.footer-col li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: rgb(172, 168, 168) !important;
    letter-spacing: 1.2;
}

.footer-col a {
    color: #BAB8B8;
    text-decoration: none;
    letter-spacing: 1px;
}


/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul {
    padding-left: 1rem!important;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
   
}
.social-icons img{
     width: 36px;
    height: 36px;
}

.social-icons a {
    width: 26px;
    height: 26px;
   
    color: #3b3b3b;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact column */
.contact-list li {
    margin-bottom: 10px;
    
}
.footer-col li::before{
    content: "• ";
}

/* Responsive */
@media (max-width: 768px) {
    .footer-inner {
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }
}



/* testimonials */
.reviews-section {
  background: #f8f8f8;
  padding: 80px 20px;
}

.reviews-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4fa6a0;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.review-count {
  font-size: 13px;
  color: #777;
}

.review-stars {
  color: #fbbc04;
  font-size: 15px;
  margin-bottom: 12px;
}

.review-time {
  color: #777;
  font-size: 13px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .reviews-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
}

.google-review-wrap {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.google-review-btn {
display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 19px;
    /* font-weight: 600; */
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: #88d3cf;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    /* transition: all 0.35s ease; */
  font-family: 'Sweet Sans Pro', sans-serif !important;
}

.google-review-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(66, 133, 244, 0.4);
  background: #b7ab81;
  color:white!important;
  
}

.google-review-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
}

/* Mobile polish */
@media (max-width: 576px) {
  .google-review-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ===============================
   REVIEWS SUMMARY (INLINE)
================================ */

.reviews-summary {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 20px;
  text-align: center;
}

.summary-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.summary-star-icon {
  font-size: 50px;
  color: #f4b400; /* Google gold */
  line-height: 1;
}

.summary-rating {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.summary-stars {
  font-size: 22px;
  color: #f4b400;
  letter-spacing: 2px;
}

.summary-text {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

/* Mobile refinement */
@media (max-width: 600px) {
  .summary-rating {
    font-size: 34px;
  }

  .summary-stars {
    font-size: 20px;
  }

  .summary-star-icon {
    font-size: 22px;
  }
}
/* cta  */

/* ===== CTA SECTION ===== */

.cta {
  background: #88d3cf !important;
  padding: 60px 0px;
  margin: 60px 0px 0px;
  text-align: center;
  
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.cta-icon img {
  width: 50px;
}

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.cta-features span {
  font-size: 15px;
  opacity: 0.9;
}

.contact-buttons {
    padding: 12px 22px;
    color: #000000;
    font-weight: 300;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-group a{
    
    font-size: 16px !important;
    background-color: #88d3cf !important;
   
}
.btn {
  padding: 18px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ffffff;
  color: #4fa6a0;
}

.btn.primary:hover {

  transform: translateY(-3px);
}

.btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #4fa6a0;
}
.btn1.primary {
  background: #4fa6a0;
  color: #fff;
   padding: 18px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn1.primary:hover{
  background-color:#b7ab81;
  color: #fff;
}
.cta-note {
  font-size: 14px;
  opacity: 0.85;
}
#footer .col-lg-3.col-6 h4{
    font-size: 18px !important;
}
/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .cta h2 {
    font-size: 32px;
  }

  .cta-text {
    font-size: 16px;
  }
}

/* ===== Serving Patients Section ===== */

/* .locations-section {
  padding: 30px 0px;
} */

.locations-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 50px 30px;
  text-align: center;
}

.locations-box h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.locations-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.locations-tags span {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  white-space: nowrap;
}

.locations-text {
  font-size: 15px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .locations-box {
    padding: 40px 20px;
  }

  .locations-box h2 {
    font-size: 24px;
  }

  .locations-tags span {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/* doctors css */

.doctor-slider-section {
  padding: 10px 0;
  margin: 30px 0;
}
.doctor-slider-section h3{
  text-align: center;
  font-weight: bold;
}
.doctorSwiper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}


.doctor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #e6f4f3;
  padding: 20px 15px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   width: 100%;
  max-width: 290px; 
  text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
   box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
   margin-bottom: 10px;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.doctor-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  background: #fff;
}
.why-london-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
}
.doctor-card h4 {
  font-size: 14px;
  color: #000000;
  text-align: center;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* Swiper arrows styling */
.swiper-button-next,
.swiper-button-prev {
  color: #88d3cf !important;
}
@media (max-width: 320px) {
  .doctor-slider-section {
    padding: 30px 10px;
  }

  .doctor-card {
    padding: 18px 12px;
    width: 250px !important;

  }

  .doctor-card img {
    width: 100px;
    height: 100px;
  }

  .doctor-card h4 {
    font-size: 14px;
  }

  /* Prevent arrows from pushing layout */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-group {
        max-width: 434px!important;
  }

  .know-card {
    max-width: 694px;
    padding: 10px 20px;
    line-height: 1.9;
    text-align: center;
}
.header-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;

}
.header-img img

 {
    width: 100%;
    height: 500px;
 }
}