:root {
    --primary-color: #4CAF50;
    --secondary-color: #388E3C;
    --accent-color: #81C784;
    --text-color: #2E7D32;
    --light-bg: #F1F8E9;
    --card-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
    --transition: all 0.3s ease;
    --gradient-start: #66BB6A;
    --gradient-end: #43A047;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    background: linear-gradient(to top left, #e0eafc, #cfdef3);
    font-family: 'Inter', sans-serif;
    /* padding-top: 100px; */
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    width: 100%;
    /* height: 100vh; */
    flex-direction: column
}

/* Footer Styles */
.footer {
    position: relative;
}

.footer-links a,
.footer-contact a,
.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.social-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer .form-control {
    /* background: rgba(255, 255, 255, 0.1); */
    border: none;
    color: white;
    padding: 0.75rem 1rem;
}

.footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer .btn-primary {
    padding: 0.75rem 1.5rem;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    transition: all 0.3s ease;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 10px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 10px;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
    margin-left: 0.1rem;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    border: solid var(--text-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 0.5em;
}

.dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(-45deg);
    position: absolute;
    right: 1.5rem;
    top: 1rem;
}

@media (max-width: 991.98px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .dropdown-menu {
        box-shadow: none;
        background: transparent;
    }

    .dropdown-submenu .dropdown-menu {
        left: 10%;
        box-shadow: none;
        background: rgba(0,0,0,0.03);
    }
}

.navbar.scrolled {
    box-shadow: var(--card-shadow);
}

.navbar-logo {
    height: 80px;
    width: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.tagline {
    font-size: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: none;
    position: relative;
    padding-left: 2px;
}

.navbar-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.navbar-brand:hover .navbar-logo {
    animation: float 2s ease-in-out infinite;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-brand h1 {
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.navbar-brand:hover h1 {
    transform: translateX(5px);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

/* Adjust navbar logo size and tagline for small screens */
@media (max-width: 768px) {
    .navbar-logo {
      height: 60px; /* Adjust logo size for tablets and smaller */
    }

    .navbar-brand .tagline {
      font-size: 14px;
      line-height: 1.4;
      white-space: normal; /* Allow tagline to wrap */
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 50px; /* Further reduce logo size for small phones */
    }

    .navbar-brand .tagline {
        font-size: 12px; /* Adjust font for very small screens */
    }
}
  

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 1px;
    border-radius: 0.25rem;
    min-width: 200px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease;
}

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

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a {
    padding-right: 2rem !important;
    transition: all 0.3s ease;
}

.dropdown-toggle {
    text-decoration: none;
    color: var(--bs-dropdown-link-color);
    padding: 0.75rem 1rem;
    width: 100%;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
    background-color: rgba(76, 175, 80, 0.1);
}

.dropdown-submenu .dropdown-item {
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-submenu .dropdown-item:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
}

.fa-chevron-right {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.dropdown-toggle:hover .fa-chevron-right {
    transform: translateX(3px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

/* .hero-section {
    background: url('../images/hero-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
} */
.hero-section {
    /* background: url('../images/hero-bg_small.jpg') no-repeat center center;
     */
     background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
     url('../images/hero-bg_small.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* filter: blur(1px); */
    /* opacity: 2; */
    /* z-index: 1; */
}


.hero-content {
    padding: 2rem;
    animation: fadeIn 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-section h1 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    font-weight: 800;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: -2px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.stats-container {
    margin-top: 4rem;
}

.stat-item {
    padding: 2rem;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-section .stat-card {
    padding: 2.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    color: white;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover h2,
.stat-card:hover p {
    color: white;
}

.counter {
    display: inline-block;
    transition: var(--transition);
}

.stat-card:hover .counter {
    transform: scale(1.1);
    text-shadow: 2px 2px 4px rgba(76, 175, 80, 0.2);
}

.stat-card h2 {
    color: var(--primary-color);
}

.stat-card p {
    color: var(--text-color);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.products-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.product-content {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,249,250,1) 100%);
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
    text-align: center;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    border-color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Product Page Styles */
.min-vh-75 {
    min-height: 75vh;
}

.product-hero {
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-circle {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.product-img-float {
    animation: float 6s ease-in-out infinite;
    max-height: 600px;
    object-fit: contain;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.benefit-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-info {
    border: 1px solid rgba(0,0,0,0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* .hero-section {
        padding: 50px 0;
        background-image: url('../images/hero-bg_small.jpg');
        background-size: cover;
        background-position: center;
        min-height: 60vh;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        
    } */
    .hero-section {
        position: relative;
        overflow: hidden;
        min-height: 60vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 0;
        color: white;
      }
     
      .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('../images/hero-bg_small.jpg');
        background-size: cover;
        background-position: center;
        filter: blur(8px);
        z-index: -1;
      }
      .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4); /* dark translucent overlay */
        z-index: 0;
      }
      .hero-section .hero-content {
        position: relative;
        z-index: 1;
        color: #fff;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        text-align: left;
        padding: 1rem;
      }

      .hero-section h1{
        font-size: 2.2rem;
        color: var(--primary-color);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        font-weight: 700;
      }
      .hero-section p {
        color: #ffffff; 
        font-size: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        font-weight: 400;
        line-height: 1.6;
      }

            .stat-content {
                position: relative;
                z-index: 1; /* pushes it above background layers */
              }
            .stat-number {
                font-size: 2rem;
                font-weight: bold;
                color:#ffffff;
              }
              
            .stat-label {
                font-size: 1rem;
                color:var(--primary-color);
              }
              .stat-number,
              .stat-label {
                  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
              }
          
    

    .product-img-float {
        max-height: 400px;
    }

    .bg-circle {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .category-card {
        margin-bottom: 1rem;
    }
}

/* Related Products Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img {
    transition: transform 0.3s ease;
    max-height: 200px;
    object-fit: contain;
}

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

.product-info {
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(249,250,251,0.5) 100%);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

/* .circular-logo {
    height: 100px;
    width: 100px;
    border-radius: 70%;
    border: 5px solid #ccc;
    padding: 0;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    object-fit: contain;
  } */
  
.bg-forest {
    background-color: #F2F0EF !important;
    color: black !important;
}

/* About Us Section */
.about-section .about-image-container {
    position: relative;
    overflow: hidden;
}

.about-section .about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
}

.about-section .accordion-button {
    font-weight: 600;
    color: var(--text-color);
}

.about-section .accordion-button:not(.collapsed) {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.about-section .accordion-item {
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.about-section .accordion-body ul {
    padding-left: 1.2rem;
}

.about-section .accordion-body li {
    margin-bottom: 0.5rem;
}

.title-logo {
    height: 50px; /* Adjust the height as needed */
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
}

.feature-card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}


.title-logo-top {
    height: 60px; /* Adjust as needed */
}

@media (max-width: 767.98px) {
    .about-section .display-4,
    .products-section .display-4 {
        flex-direction: column;
    }

    .title-logo {
        height: 40px; /* Smaller logo for mobile */
        margin: 0 0 0.5rem 0 !important; /* Center logo above text */
    }

    .title-logo-top {
        height: 50px; /* Adjust for mobile */
    }
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: white;
    margin-top: 80px; /* Adjust for fixed navbar */
}

.story-mission-vision-section .info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.story-mission-vision-section .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.story-mission-vision-section .info-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.leadership-section .director-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.leadership-section .director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.director-image-container {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden; /* Ensure rounded-rectangle clipping for child image */
}

.director-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    border-radius: 16px; /* Rounded-rectangle corners */
}

.director-card .card-body {
    padding: 2.5rem;
}

.about-hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about-hero.jpg') no-repeat center center;
    background-size: cover;
}

.story-mission-vision-section .info-card {
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
}

.director-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .director-card .text-md-end {
        text-align: center !important;
    }
}

.header-solid .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.director-social {
    position: absolute;
    top: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.director-card .card-body:not(.text-md-end) .director-social {
    right: 1.5rem;
}

.director-card .card-body.text-md-end .director-social {
    left: 1.5rem;
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: white;
    margin-top: 80px; /* Adjust for fixed navbar */
}

.contact-section {
    background-color: #f8f9fa;
}

.contact-form-wrapper, .contact-info-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-wrapper i {
    color: var(--primary-color);
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.map-section {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.map-section:hover {
    filter: grayscale(0);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}