/* =====================================================
ROOT VARIABLES
===================================================== */
:root{
  --brand:#0179b4;
  --brand-dark:#005f8f;
  --brand-light:#88d8ff;
  --text-dark:#1f2937;
  --text-body:#4b5563;
  --text-muted:#6b7280;
  --bg-soft:#f5fcff;
}

/* =====================================================
RESET & GLOBAL
===================================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Manrope",sans-serif;
}

body{
  background:linear-gradient(180deg,#f5fcff,#ebfaff);
  color:var(--text-body);
}

img{max-width:100%;height:auto;}
section{overflow-x:hidden;}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}
.btn-primary,
.btn-secondary,
.portfolio-btn,
.help-form button,
.hero button a{
  display:inline-block;
  padding:16px 36px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.3px;
  text-decoration:none;
  background:linear-gradient(120deg,var(--brand),var(--brand-dark));
  color:#fff;
  border:none;
  cursor:pointer;
  transition:all .35s ease;
}

.btn-secondary{
  background:#fff;
  color:var(--brand);
  border:2px solid var(--brand);
}

.btn-primary:hover,
.btn-secondary:hover,
.portfolio-btn:hover,
.help-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(1,121,180,.35);
}

.btn-primary:active,
.btn-secondary:active,
.portfolio-btn:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(1,121,180,.25);
}


/* =====================================================
HEADER
===================================================== */
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:90px;
}

.logo{width:110px;}

.nav{
  display:flex;
  gap:36px;
}

.nav a{
  position:relative;
  text-decoration:none;
  font-weight:600;
  color:#3d3d3d;
  padding-bottom:6px;
}

.nav a.active,
.nav a:hover{
  color:var(--brand);
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:var(--brand);
  transition:.3s;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

/* =====================================================
HEADER
===================================================== */
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:90px;
}

.logo{width:110px;}

.nav{
  display:flex;
  gap:36px;
}

.nav a{
  position:relative;
  text-decoration:none;
  font-weight:600;
  color:#3d3d3d;
  padding-bottom:6px;
}

.nav a.active,
.nav a:hover{
  color:var(--brand);
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:var(--brand);
  transition:.3s;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

/* =====================================================
MOBILE NAV
===================================================== */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:#0a2e72;
  border-radius:2px;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:#fff;
  padding:20px;
  gap:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mobile-menu a{
  text-decoration:none;
  font-weight:600;
  color:#3d3d3d;
}

.mobile-menu.active{display:flex;}
/* ================================
HAMBURGER ANIMATION
================================ */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* Smooth animation */
.hamburger span{
  transition:all .3s ease;
}

/* content */
/* =====================================================
ABOUT STORY
===================================================== */
.about-story{
  padding:100px 0;
  background:#ffffff;
}

.story-flex{
  display:flex;
  align-items:center;
  gap:70px;
}

.story-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
}

.story-content{
  max-width:600px;
}

.story-content h2{
  font-size:38px;
  font-weight:700;
  margin-bottom:24px;
  color:#1f2937;
}

.story-content h2 span{
  color:#0179b4;
}

.story-content p{
  font-size:15.8px;
  line-height:1.85;
  color:#4b5563;
  margin-bottom:16px;
}

/* =====================================================
ABOUT SECTION – COMMON
===================================================== */
.about-section{
  background:#f9fcff;
  padding:110px 0;
}

.about-section h3,
.about-section h4{
  text-align:center;
  font-size:34px;
  font-weight:700;
  color:#1f2937;
  margin-bottom:22px;
}

.about-section h3 span,
.about-section h4 span{
  color:#0179b4;
}

/* =====================================================
TRUSTED BRANDS (CENTER + CAROUSEL)
===================================================== */
.brand-carousel-section{
  margin-bottom:100px;
  text-align:center;
}

.brand-title{
  font-size:36px;
  font-weight:700;
  color:#1f2937;
}

.brand-title span{
  color:#0179b4;
}

.brand-sub{
  max-width:620px;
  margin:12px auto 0;
  color:#6b7280;
  line-height:1.6;
}

.brand-carousel{
  margin-top:60px;
  overflow:hidden;
}

.brand-track{
  display:flex;
  gap:70px;
  width:max-content;
  animation:brandScroll 30s linear infinite;
}

.brand-card{
  min-width:210px;
  background:#fff;
  padding:30px;
  border-radius:16px;
  border:1px solid #e5f3fb;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-card img{
  max-width:150px;
  max-height:65px;
  filter:grayscale(100%);
  opacity:.8;
  transition:.35s ease;
}

.brand-card:hover img{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.08);
}

@keyframes brandScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.brand-carousel:hover .brand-track{
  animation-play-state:paused;
}

/* =====================================================
CLINICAL AREAS & APPROACH
===================================================== */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  margin:90px 0;
}

.about-text{
  text-align:center;
}

.about-text p{
  max-width:520px;
  margin:0 auto 16px;
  color:#4b5563;
  line-height:1.7;
}

.about-list{
  list-style:none;
  padding:0;
  max-width:420px;
  margin:0 auto;
}

.about-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:14px;
  text-align:left;
  color:#4b5563;
}

.about-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#0179b4;
  font-weight:700;
}

/* =====================================================
OUR PURPOSE
===================================================== */
.about-block{
  max-width:780px;
  margin:100px auto;
  text-align:center;
}

.about-block p{
  line-height:1.8;
  color:#4b5563;
}

/* =====================================================
VISION & MISSION
===================================================== */
/* =====================================================
VISION & MISSION – WITH ICONS
===================================================== */

.vm-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin:100px 0;
}

.vm-card{
  background:#ffffff;
  padding:44px 36px;
  border-radius:20px;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);
  text-align:center;
  transition:all .35s ease;
  position:relative;
}

.vm-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 60px rgba(1,121,180,0.18);
}

/* ICON */
.vm-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  background:linear-gradient(135deg,#0179b4,#88d8ff);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
}

.vm-icon i{
  font-size:30px;
  color:#ffffff;
}

/* TEXT */
.vm-card h4{
  font-size:28px;
  font-weight:700;
  color:var(--text-dark);
  margin-bottom:14px;
}

.vm-card p{
  font-size:15.5px;
  line-height:1.8;
  color:var(--text-body);
}

/* RESPONSIVE */
@media(max-width:900px){
  .vm-grid{
    grid-template-columns:1fr;
  }
}
/* =====================================================
SECTION HEADING – FIXED & POLISHED
===================================================== */

.section-heading{
  text-align:center;
  margin-bottom:48px;
}

.section-heading h2{
  font-size:38px;
  font-weight:700;
  line-height:1.25;
  color:var(--text-dark);
  letter-spacing:-0.5px;
}

/* 🔥 SPAN FIX – SAME AS OUR STORY */
.section-heading h2 span{
  background:linear-gradient(135deg,var(--brand),var(--brand-light));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  display:inline-block;
}

/* Subtitle */
.section-sub{
  margin-top:12px;
  font-size:15.5px;
  line-height:1.6;
  color:var(--text-muted);
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}

/* MOBILE */
@media (max-width:768px){
  .section-heading h2{
    font-size:28px;
  }
}

/* =====================================================
CORE VALUES
===================================================== */
/* =====================================================
CORE VALUES – IMPROVED CARD DESIGN
===================================================== */

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:60px;
}

.value-card{
  background:#ffffff;
  padding:42px 28px;
  border-radius:20px;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);
  text-align:center;
  transition:all .35s ease;
  min-height:260px; /* 🔑 equal size */
  display:flex;
  flex-direction:column;
  align-items:center;
}

.value-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 60px rgba(1,121,180,0.18);
}

/* ICON STYLE */
.value-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(135deg,#0179b4,#88d8ff);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.value-icon i{
  font-size:28px;
  color:#ffffff;
}

/* TEXT */
.value-card h5{
  font-size:18px;
  font-weight:700;
  color:#1f2937;
  margin-bottom:10px;
}

.value-card p{
  font-size:14.8px;
  line-height:1.6;
  color:#4b5563;
}

/* =====================================================
RESPONSIVE
===================================================== */
@media(max-width:900px){
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .values-grid{
    grid-template-columns:1fr;
  }
}

/* =====================================================
RESPONSIVE
===================================================== */
@media(max-width:900px){
  .story-flex,
  .about-grid,
  .vm-grid{
    flex-direction:column;
    grid-template-columns:1fr;
    text-align:center;
  }

  .story-content{
    margin:auto;
  }

  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .story-content h2,
  .about-section h3{
    font-size:28px;
  }
}

@media(max-width:520px){
  .values-grid{
    grid-template-columns:1fr;
  }

  .brand-track{
    gap:40px;
    animation-duration:22s;
  }
}


/* ================================
FLOATING SOCIAL ICONS (RIGHT SIDE)
================================ */
.social-float{
  position:fixed;
  right:24px;
  bottom:120px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:9999;
}

/* ICON BASE */
.social-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
  transition:all .3s ease;
}

/* ICON IMAGE */
.social-icon img{
  width:26px;
  height:26px;
}

/* BRAND COLORS */
.social-icon.whatsapp{
  background:#25d366;
}

.social-icon.instagram{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.social-icon.linkedin{
  background:#0077b5;
}

/* HOVER EFFECT */
.social-icon:hover{
  transform:translateX(-6px) scale(1.1);
  box-shadow:0 14px 36px rgba(0,0,0,.35);
}

/* CLICK EFFECT */
.social-icon:active{
  transform:scale(.95);
}

/* ================================
MOBILE OPTIMIZATION
================================ */
@media(max-width:600px){
  .social-float{
    right:16px;
    bottom:90px;
  }

  .social-icon{
    width:46px;
    height:46px;
  }

  .social-icon img{
    width:22px;
    height:22px;
  }
}


/* =====================================================
HELP DESK
===================================================== */
.helpdesk{
  background:#f0f9ff;
  text-align:center;
  padding:80px 24px;
}

.helpdesk span{color:#00a4f4;}

.help-form{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.help-form input{
  padding:16px;
  width:260px;
  border-radius:12px;
  border:1px solid #ccecff;
}

.help-form button{
  background:#00a4f4;
  color:#fff;
  padding:16px 28px;
  border-radius:12px;
  border:none;
  font-weight:700;
}

/* FOOTER */
.footer{
  background:#f2faff;
  padding:60px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.footer-logo{width:120px;margin-bottom:12px;}

.footer h4{color:#00a4f4;margin-bottom:12px;}

.footer a, .footer p{
  color:#6d6d6d;
  font-size:15px;
  text-decoration:none;
  display:block;
  margin-bottom:8px;
}
.footer-bottom{
  text-align:center;
  margin-top:40px;
  color:#b0b0b0;
  font-size:14px;
}
/* ================================
SHOW HAMBURGER IN MOBILE
================================ */
@media (max-width: 900px){
  .nav,
  .desktop-cta{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .mobile-menu{
    display:none;
  }

  .mobile-menu.active{
    display:flex;
  }
}

