/* floating icon  */
.floating-stack {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-stack .diamond {
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.floating-stack .diamond i {
  transform: rotate(-45deg);
  color: #fff;
  font-size: 18px;
}

/* Colors */
.floating-stack .call {
  background: #0072bf;
}

.floating-stack .mail {
  background: #0e2736;
}

.floating-stack .whatsapp {
  background: #27a300;
}

/* Hover */
.floating-stack .diamond:hover {
  transform: rotate(45deg) scale(1.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
/* floating icon  */


/* trust indicator  */
/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: #f8fafc;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}
.trust-grid .trust-card h4{
      color: #003b49;
}
.trust-header h3 {
    color: #007C9A;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

/* Card */
.trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Icon */
.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(24,106,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Text */
.trust-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.trust-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* trust indicator  */

/* diagnostic  */
.diagnostic-glass-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #bef5fb, #3f9bad)    ; */
    position: relative;
    overflow: hidden;
    background-color: #062135;
    background-image: -webkit-repeating-radial-gradient(center center, #fff3, #fff3 1px, #0000 0, #0000 100%);
    background-size: 3px 3px;
}

/* Soft background glow */
.diagnostic-glass-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.15);
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

.glass-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #fff;
}


/* Grid */
.glass-grid {
    row-gap: 30px;
}

/* Glass Card */
.glass-card {
    height: 100%;
    padding: 32px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: #fff;
    transition: all 0.35s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.28);
}

/* Icon */
.glass-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Text */
.glass-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.glass-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-header h2 {
        font-size: 30px;
    }
}


/* diagnostic  */

/* FAQ */

/* FAQ Container */
.service-faq-acnescar.faq-container {
    max-width: 800px;
    margin: 24px auto 0;
    padding: 20px;
}

/* Accordion Button */
.service-faq-acnescar .accordion-button {
  background-color: #ffffff;
  color: #333;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Active Button */
.service-faq-acnescar .accordion-button:not(.collapsed) {
  background-color: #1f303f;
  color: #ffffff;
}

  .accordion-button:not(.collapsed)::after{
    content: "\2b";
    font-family: "FontAwesome";
    position: absolute;
    right: 25px;
    top: 25px;
    transform: rotate(45deg);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}

/* .accordion-button.collapsed::after {
    content: "\2b";
    font-family: "FontAwesome";
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(45deg);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
} */

/* Focus State */
.service-faq-acnescar .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(35, 34, 138, 0.25);
}

/* Accordion Body */
.service-faq-acnescar .accordion-body {
  background-color: #f8f9fa;
  border-left: 4px solid #1f303f;
  animation: acneSlideDown 0.3s ease-out;
  font-size: 15px;
  color: #444;
}

/* Animation */
@keyframes acneSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon */
.service-faq-acnescar .faq-icon {
  margin-right: 10px;
  color: #edbe00;
}

/* Accordion Item */
.service-faq-acnescar .accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}
/* service heading */

.service-heading{
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 2.2em;
    color: #1f3a50;

}
.section-content-btn{
      border: 1px solid #8080805c;
    /* padding: 15px 20px; */
    background: #bef1de36;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

}
/* slider  */
#slider{
  width:100%;
  margin:0 auto;
  position:relative;
  overflow:hidden;
  /* box-shadow:0px 0px 4px rgba(0, 0, 4, 0.4); */
}

.slide{
  width:100%;
  
  display:none;
  animation-name:fade;
  animation-duration:1s;
  
}
img{
 width:100%; 
}
@keyframes fade{
  from{opacity:0.5;}
  to{opacity:1;}
}

.controls{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:1.5em;
  padding:15px 10px;
  border-radius:5px;
  
}

.controls:hover{
  background:white;
  transition:0.3s;
}

.controls:active{
  color:grey;
}

#left-arrow{
  left:10px;
}

#right-arrow{
  right:10px;
}

#dots-con{
  
  text-align:center;
}
.dot{
  display:inline-block;
  background:grey;
  padding:6px;
  border-radius:50%;
  margin:10px 5px;
}

.active{
  background:#00355d;
}

@media (max-width:576px){
  #slider{width:100%;
  
  }
  
  .controls{
    font-size:1em;
  }
  
  #dots-con{
    display:none;
  }
}
/* slider  */

/* about css  */
.skm-about {
  padding: 50px 0;
  background: #ffffff;
}

.skm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Images */
.skm-about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.skm-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.img-lg {
  grid-column: span 2;
}

.skm-exp-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #132944;
  color: #fff;
  padding: 22px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(37,99,235,0.35);
}

.skm-exp-badge strong {
  font-size: 30px;
  display: block;
  line-height: 1;
}

.skm-exp-badge span {
  font-size: 14px;
}

/* Content */
.skm-subtitle {
  color: #132944;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.skm-about-content h2 {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.skm-about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

/* Contact */
.skm-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
}

.skm-call-icon {
  width: 50px;
  height: 50px;
  background: #132944;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.skm-contact span {
  font-size: 14px;
  color: #666;
}

.skm-contact strong {
  display: block;
  font-size: 18px;
  color: #111;
}

/* Responsive */
@media (max-width: 992px) {
  .skm-about-grid {
    grid-template-columns: 1fr;
  }

  .skm-exp-badge {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 576px) {
  .skm-about-content h2 {
    font-size: 30px;
  }
}
.skm-about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.img-lg {
  grid-column: span 2;
}




/* why us  */
.skm-why-choose {
    padding:50px 0;
    background: #ffffff;
}

.skm-section-title h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.skm-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.skm-why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: left;
    border: 1px solid #e5edff;
    transition: all 0.3s ease;
}

.skm-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.skm-why-icon {
    width: 64px;
    height: 64px;
    background: #132944;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.skm-why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.skm-why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .skm-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .skm-why-grid {
        grid-template-columns: 1fr;
    }
}

/* why us  */

/* cta  */
.skm-cta {
    padding: 60px 0;
}

.skm-cta-box {
    background: #132944;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Content */
.skm-cta-content {
    max-width: 55%;
    padding: 60px;
    color: #ffffff;
}

.skm-cta-content h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.skm-cta-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 28px;
}

/* Button */
.skm-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #132944;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.skm-cta-btn:hover {
    background: #e8efff;
}

/* Image */
.skm-cta-image {
    position: relative;
    max-width: 45%;
    align-self: stretch; /* makes it full height */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.skm-cta-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: contain;
    padding: 0;
    margin: 0;
}


/* Decorative Dots */
.skm-cta-dots {
    position: absolute;
    top: 40px;
    right: 200px;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 992px) {
    .skm-cta-box {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .skm-cta-content {
        max-width: 100%;
    }

    .skm-cta-image {
        max-width: 70%;
        margin-top: 30px;
    }

    .skm-cta-dots {
        display: none;
    }
}

@media (max-width: 576px) {
    .skm-cta-content h2 {
        font-size: 28px;
    }
}
@media (max-width: 992px) {
    .skm-cta-box {
        flex-direction: column;
    }

    .skm-cta-content {
        max-width: 100%;
        padding: 40px;
        text-align: center;
    }

    .skm-cta-image {
        max-width: 100%;
        padding: 0;
    }

    .skm-cta-image img {
        max-height: 300px;
    }
}

/* cta  */
/* about css  */
.glass-icon img{
  width: 40px;
}

/* facilities  */
.skm-facilities {
    padding: 90px 0;
}

.skm-facility-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.skm-facility-card:hover {
    transform: translateY(-6px);
}

.skm-facility-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.skm-facility-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.skm-facility-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.skm-facility-card .btn-sm {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

/* facilities  */

.skm-timing-location {
    padding: 90px 0;
}

.skm-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.skm-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

/* Timing List */
.timing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timing-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 15px;
}

.timing-list li.closed span:last-child {
    color: #dc2626;
    font-weight: 600;
}

/* Location */
.clinic-address {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 10px 18px;
    border-radius: 30px;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.btn-solid {
    padding: 10px 20px;
    border-radius: 30px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.location-note {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

/* Map */
.skm-map-wrap {
    margin-top: 50px;
    border-radius: 18px;
    overflow: hidden;
}

.skm-map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .timing-list li {
        flex-direction: column;
        gap: 4px;
    }
}
/* Services Grid Spacing */
.service-list {
    row-gap: 30px; /* vertical gap */
}

/* Extra safety for older browsers */
.service-card {
    margin-bottom: 20px;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .service-list {
        row-gap: 15px;
    }

    .service-card {
        border-radius: 16px;
    }
}
/* About Section Spacing */

/* About Section Spacing */
/* .about-us > div {
    margin-bottom: 60px;
} */

/* .about-image-content-box-2 {
    margin-bottom: 0px;
} */

.about-image figure img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}
.about-image-content ul {
    padding: 20px;
    margin-top: 15px;
}

.about-image-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .section-title-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}
@media (max-width: 992px) {
    .about-us .section-row > .col-lg-7,
    .about-us .section-row > .col-lg-5 {
        margin-bottom: 12px;
    }
}
.about-image-content-box-2 {
    padding-top: 10px;
}

.about-image figure {
    margin-bottom: 18px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.about-image-content ul {
    padding: 18px 20px;
    margin: 0;
    border-radius: 14px;
}

.about-image-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .section-title-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}
