/* ===============================
   ROOT VARIABLES (Brand Colors)
================================ */
:root {
  --primary-color: #214167;  
  --secondary-color: #75B442;     
  --card-title: #669A98;
  --text-dark: #333;
  --text-light: #555;
  --bg-light: #f9f9f9;
  --white: #fff;
}

/* ===============================
   GLOBAL STYLES
================================ */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  scroll-behavior: smooth;
  margin-top: 0;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  font-size: 48px;
}


h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--primary-color);
}

h1{
  font-size: 2.2rem;
}

h2{
  font-size: 1.65rem;
}

p{
  font-size: 1.05rem!important;
}

/* Paragraphs */
p, a, li, span {
  line-height: 1.7;
}

h1 span, h2 span {
   color: var(--primary-color);
}

p {
  color: var(--text-light);
  line-height: 1.7;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(35 35 35 / 75%) !important;
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px; /* distance from bottom */
  right: 10px;  /* distance from right */
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  border: none;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}


/* Popup Overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* Popup Content */
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
}

.popup-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.popup-content button {
  width: 100%;
  background: var(--secondary-color);
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.popup-content button:hover {
  background: var(--primary-color);;
}

/* Close Button */
.close {
    position: absolute;
    top: -1px;
    right: -1px;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 0.85;
}

.close:hover{
  background: var(--secondary-color);
}


/* ===============================
   TOP BAR
================================ */
.top-bar {
  background: var(--primary-color);
  font-size: 0.9rem;
}

.top-bar a:hover {
  color: var(--secondary-color) !important;
}


/* ===============================
   NAVBAR
================================ */
.navbar {
  background: #ffffff !important;     /* Always white */
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo correct fix (NO absolute positioning) */
.logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Branding Text (if used) */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center; 
}


/* ===============================
   NAV LINKS
================================ */
.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  margin-left: 18px;
  padding-bottom: 5px;
  transition: 0.3s ease;
}

/* Modern hover */
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Modern active look */
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--primary-color);
}


/* Dropdown */
.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
}

.dropdown-item {
  padding: 10px 16px;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: rgba(33, 65, 103, 0.08);
  color: var(--primary-color);
}

.dropdown-item.active {
  background-color: var(--primary-color);
  color: #fff;
}


/* ============== MOBILE NAV FIX ============== */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0.3);
}


/* ===============================
   HERO SECTION
================================ */
.hero {
  height: 85vh;
  background: linear-gradient(135deg, rgba(33,65,103,0.5), rgba(117,180,66,0.4)),
              url('../images/banner/banner2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 5%;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff; /* Bright for contrast */
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for readability */
  margin-bottom: 25px;
}

.hero-text .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  background: var(--secondary-color);
  border: none;
  transition: 0.3s;
}

.hero-text .btn:hover {
  background: var(--primary-color);
}

.hero-img-wrapper {
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    height: auto;
    padding: 40px 20px;
  }

  .hero-text, .hero-img-wrapper {
    width: 100%;
    max-width: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-img {
    margin-bottom: 25px;
  }
}


/* ===============================
   BUTTONS
================================ */
.btn-primary,
.btn-success,
.btn-custom {
  background: var(--secondary-color);
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(255,86,19,0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-success:hover,
.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(1,159,82,0.3);
  background: var(--primary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background: var(--primary-color);;
  color: var(--white);
  border-color: transparent;
}

/* ===============================
   SECTIONS
================================ */
section {
  padding: 40px 0;
}

section.bg-light {
  background-color: var(--bg-light);
}

section.bg-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
}

/* ===============================
   Home Page About Section
================================ */

#about-home {
  background:  #f9f9f9!important;
  padding: 80px 0;
}


/* Text Content */


#about-home p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}


/* Icon Card Grid */
#about-home .about-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-start;
  margin-top: 20px;
}

#about-home .about-icons .icon-box {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  flex: 0 0 48%; /* 2 per row with gap */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  min-height: 140px; /* same height for all */
}

#about-home .about-icons .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Icon Wrapper */
#about-home .about-icons .icon-box i {
  font-size: 2.2rem;
  color: var(--primary-color)!important;
  background: rgba(33,65,103,0.1);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 70px;
  height: 70px;
}

/* Hover Icon Circle Gradient */
#about-home .about-icons .icon-box:hover i {
  background: linear-gradient(135deg, #214167, #75B442);
  color: #fff!important;
}

/* Card Title */
#about-home .about-icons h6 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  #about-home .about-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #about-home {
    padding: 60px 15px;
  }

  #about-home h2 {
    font-size: 2rem;
    text-align: center;
  }

  #about-home p {
    font-size: 1rem;
    text-align: center;
  }

  #about-home .btn-custom {
    display: block;
    margin: 20px auto 0;
  }

  #about-home .about-icons .icon-box {
    width: 120px;
    min-height: 200px;
    padding: 20px;
  }

  #about-home .about-icons i {
    font-size: 1.5rem;
    padding: 15px;
    margin-bottom: 10px;
  }

  #about-home .about-icons h6 {
    font-size: 0.95rem;
  }
}

/* ===== Profile Section ===== */
.profile {
  background: linear-gradient(135deg, #f9f9f9, #f1f6f9);
}

.profile-img-wrapper {
  position: relative;
  display: inline-block;
}

.profile-img-wrapper img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border: 5px solid #75B442; /* Secondary Green */
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.status-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #214167, #75B442);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/*.profile h2 {
  font-size: 2rem;
}*/

.profile h5 {
  /*color: var(--secondary-color);*/
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark) !important;
}

.profile p {
  line-height: 1.7;
  color: var(--text-dark);
}

.social-link {
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 50%;
  color: var(--white);
  transition: 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* ===============================
   SERVICES CARD STYLE
================================ */

#services{
  background:  #f9f9f9!important;
}


.services-box {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.services-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.services-box i {
  font-size: 2.5rem;
  color: var(--primary-color); 
  background: rgba(33,65,103,0.1); 
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services-box:hover i {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.services-box h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.services-box p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ===============================
   WHY CHOOSE RHS SECTION
================================ */
#why-rhs {
  background: linear-gradient(135deg, #f9f9f9, #f1f6f9);
}


.why-box {
  background: linear-gradient(135deg, rgba(33,65,103,0.08), rgba(117,180,66,0.08));
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.why-item {
  text-align: left;
}

.why-item i {
  color: var(--secondary-color);
  /*margin-bottom: 10px;*/
  transition: all 0.3s ease;
}

.why-item i:hover {
  color: var(--primary-color);
}


.why-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.icon-title i {
  color: var(--secondary-color);
  font-size: 2.2rem; 
  margin-right: 8px;
}

.icon-title h5 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem; 
}

.why-item p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Left Column Bullet Styling */
ul.list-unstyled li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

ul.list-unstyled li i {
  margin-right: 8px;
  color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .why-box {
    margin-top: 30px;
  }
}


/* ===== Specialists Section ===== */
#specialists {
    background:  #f9f9f9!important;
}


.specialist-card {
  background-color: #fff;
  border-radius: 18px;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  min-height: 280px; /* uniform height */
}

.specialist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.specialist-card .specialist-img img {
  border: 4px solid #fff;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  padding: 5px;
  transition: all 0.3s ease;
}

.specialist-card:hover .specialist-img img {
  transform: scale(1.05);
  border-color: var(--primary-color);
}

.specialist-card h5 {
  color: var(--primary-color);
  margin-top: 10px;
}

.specialist-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .specialist-card {
    min-height: auto;
  }
  #specialists h2 {
    font-size: 2rem;
  }
}

/* ===== CTA Section ===== */
#cta {
  background: linear-gradient(135deg, rgba(33,65,103,0.9), rgba(75,180,66,0.9));
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 80px 20px;
}

#cta h2 span {
  color: var(--secondary-color);
}


#cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

/* Button */

/* Decorative circles */
.cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.cta-circle.c1 {
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.15);
  top: -50px;
  left: -50px;
}

.cta-circle.c2 {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.15);
  bottom: -80px;
  right: -80px;
}

/* Responsive */
@media (max-width: 768px) {
  #cta h3 {
    font-size: 2rem;
  }
  #cta p {
    font-size: 1rem;
  }
  #cta .btn-custom {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* ====== SERVICES PAGE CUSTOM STYLES ====== */
.page-hero {
  background: linear-gradient(rgba(1,159,82,0.3), rgba(255,86,19,0.3)),
              url('../images/banner/banner3.jpg') center/cover no-repeat;
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
}

.page-hero span {
  color: var(--primary-color);
}

.page-hero p {
  color: #000;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Detailed Services Section */
.service-hero{
  background: linear-gradient(rgba(1, 159, 82, 0.3), rgba(255, 86, 19, 0.3)), url('../images/banner/service_banner.jpg') center / cover no-repeat;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-hero h1{
  color: var(--primary-color);;
}

#detailed-services img {
  max-width: 450px;    
  border-radius: 16px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

#detailed-services img:hover {
  transform: scale(1.03);
}

#detailed-services h2 {
  color: var(--primary-color);
}

#detailed-services h2 span {
  color: var(--primary-color);
}

#detailed-services p {
  color: var(--text-dark);
  font-size: 1rem;
}

#detailed-services ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

#detailed-services .row {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  #detailed-services .row {
    flex-direction: column !important;
  }
  #detailed-services img {
    margin-bottom: 20px;
  }
}

/* ===============================
   DOCTOR PROFILE PAGE
================================ */

.doctor-hero.compact {
  padding: 80px 0;
  background: #fff;
}

.doctor-photo img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  border: 4px solid var(--secondary-color);
}

.doctor-name {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.doctor-bio {
  color: var(--text-dark); 
  margin-bottom: 6px;
}

/* section titles smaller, compact */
.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* awards */
.award-card {
  background: #f9fbfc;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 12px 14px;
  transition: transform 0.2s ease;
}
.award-card h5 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 6px;
}
.award-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* academic lists */
.bullet-list {
  columns: 2;           /* 2 equal columns */
  -webkit-columns: 2;
  -moz-columns: 2;
   list-style: disc;
  column-gap: 40px;     /* Space between columns */
  padding-left: 18px;
  color: var(--text-dark);
}

.bullet-list li {
  break-inside: avoid;  /* Items ko split hone se bachata hai */
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}




/* education timeline compact */
.education-timeline.compact {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid rgba(33,65,103,0.15);
}
.edu-item {
  padding: 10px 0 10px 16px;
  position: relative;
  margin-bottom: 8px;
}
.edu-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 14px;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}
.edu-item h6 {
  margin: 0 0 4px 0;
  color: var(--secondary-color);
}
.edu-body p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
}


/*About Page css */

/* ===============================
   ABOUT PAGE (Theme-Matched)
================================ */

/* Hero Section */
.about-hero {
  height: 55vh;
  background: linear-gradient(rgba(255,86,19,0.3), rgba(1,159,82,0.4)),
              url('../images/banner/about-banner.jpg') center/cover no-repeat;
  text-align: center;
  justify-content: center;
}
.about-hero h1 {
  color: #fff;
  font-size: 2.5rem;
}
.about-hero span {
  color: var(--primary-color);
}
.about-hero p {
  color: #000;
  font-size: 1.1rem;
}

.about-we-are ul li i{
      vertical-align: bottom;
}

/* Cards (Mission, Vision, Core, Why Choose) */
.about-card, .core-card, .why-card {
  transition: all 0.3s ease;
  border-radius: 16px;
}
.about-card:hover, .core-card:hover, .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.icon-main {
  font-size: 2.2rem!important;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.mission-vision h4,
.our-strength h4,
.about-why-use h4{
    color: var(--primary-color);
    font-size: 1rem;
}


/* Who We Are */
#about .text-muted, .text-muted {
  color: var(--text-dark);
}
ul.list-unstyled li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* CTA Banner */
.about-cta {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 70px 0;
}
.about-cta h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}


/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
    padding: 40px 0;
  }
  .about-hero h1 {
    font-size: 1.8rem;
  }
}

/* ===============================
   CONTACT PAGE (Theme-Matched)
================================ */

.contact-hero {
  height: 55vh;
  background: linear-gradient(rgba(255,86,19,0.3), rgba(1,159,82,0.4)),
              url('../images/banner/contact-banner.jpg') center/cover no-repeat;
  justify-content: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  color: #fff;
}
.contact-hero span {
  color: var(--primary-color);
}
.contact-hero p {
  color: #000;
  font-size: 1.1rem;
}

/* Contact Card */
.contact-card {
  border-radius: 16px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Form */
.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: none;
  transition: 0.3s;
}

input.form-control{
  height: 40px;
  font-size: 1rem;
}

textarea.form-control{
   font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(255,86,19,0.3);
}

/* Button */
.btn-theme {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background: var(--secondary-color);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
}
.social-icon {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon i {
  color: var(--primary-color);
  font-size: 24px;
}
.social-icon:hover {
  background: var(--primary-color);
}
.social-icon:hover i {
  color: #fff;
}

/* CTA Banner */
/*.contact-cta {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
.contact-cta h2 {
  color: #fff;
}*/

.contact-cta .btn {
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: var(--primary-color);
}
.contact-cta .btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
}



/* ===============================
   FOOTER
================================ */

/* Upper Section */
.footer-upper {
   background: rgba(31, 31, 31, 0.95);
   color: #fff;
}

/* Headings */
.footer h4, .footer h6 {
  color: var(--secondary-color);
}

/* Text */
.footer p, .footer a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Social Buttons */
.footer .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.2);
}

/* Bottom Section */
.footer-bottom {
   background: var(--secondary-color);
  color: #fff;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-upper .row {
    text-align: center;
  }
  .footer-upper .d-flex {
    justify-content: center !important;
  }
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero p {
    font-size: 1rem;
  }
  section {
    padding: 60px 0;
  }
}
