* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --accent-color: #3498db;
            --dark-color: #1a252f;
            --light-color: #f8f9fa;
            --text-primary: #2c3e50;
            --text-secondary: #5a6c7d;
            --gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            --shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        /* Sections */
        .section {
            padding: 5rem 0;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Feature Cards */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .feature-text {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .feature-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .feature-link:hover {
            transform: translateX(3px);
        }

        /* Split sections */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 5rem 0;
        }

        .split-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }

        .split-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .split-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .split-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: var(--transition);
        }

        .split-image:hover img {
            transform: scale(1.02);
        }

        /* Contact Section */
        .contact-section {
            background: var(--light-color);
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 2rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .form-group input:hover,
        .form-group textarea:hover {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-section p,
        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            text-align: left;
        }

        .footer-section  a:hover, .footer-bottom a:hover {
            color: white;
        }
        
        

        .footer a {
            color: #94a3b8;
            text-decoration: none;
        }
        .footer-bottom {
            color: #94a3b8;
            border-top: 1px solid #306dae;
            padding-top: 2rem;
            margin-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .split-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Gallery Section */
        .gallery-container {
            position: relative;
            max-width: 100%;
            margin: 3rem auto 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .gallery-slideshow {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .gallery-slide.active {
            opacity: 1;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(44, 62, 80, 0.9));
            padding: 3rem 2rem 2rem;
            color: white;
            text-align: center;
        }

        .slide-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .slide-description {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Navigation Controls */
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-color);
            z-index: 10;
        }

        .gallery-nav:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-prev {
            left: 20px;
        }

        .gallery-next {
            right: 20px;
        }

        /* Dots Indicator */
        .gallery-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .gallery-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gallery-slideshow {
                height: 350px;
            }

            .slide-overlay {
                padding: 2rem 1rem 1rem;
            }

            .slide-title {
                font-size: 1.4rem;
            }

            .slide-description {
                font-size: 1rem;
            }

            .gallery-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .gallery-prev {
                left: 10px;
            }

            .gallery-next {
                right: 10px;
            }
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Pulse animation for CTA */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
            100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /********** Template CSS **********/
:root {
    --primary: #c9d744;
    --secondary: #BDBDBF;
    --light: #F4F5F8;
    --dark: #32441a;
}
.bg-dark {
    background-color: #32441a;
}

.bg-light.d-none.d-lg-flex {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden; /* Ensures the curve is respected */
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
    padding: 8px 20px; 
    font-size: 14px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 30px;
    height: 38px;
}

.btn-lg-square {
    width: 20px;
    height: 20px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    margin-right: 30px;
    padding: 10px 0;
    /* color: var(--light); */
    color: #ff0000;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
}

/* Updated navbar-dark styles with new colors */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #30ACAE;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #306DAE;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #306DAE;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}
.nav-abou {
    border-radius: 0;
    background-color: #222; /* Dark background */
    display: inline-block;
    padding: 10px;
}
.nav-abou .nav-item {
    margin: 0 5px;
}.nav-abou .nav-link {
    background-color: #444; /* Box color */
    border: 2px solid #555;
    color: white;
    padding: 10px 15px;
    border-radius: 0; /* Makes it a rectangle */
    text-align: center;
    min-width: 200px;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 36, 41, .8);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}
.carousel-caption h5{
    font-size: 28px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 20px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item {
    height: 100vh;
}

#header-carousel .carousel-item img {
    height: 100vh; 
    object-fit: cover;
}

.bg-hero {
    background: linear-gradient(rgba(34, 36, 41, .8), rgba(34, 36, 41, .8)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
    padding: 5px 0;
}

.programe::after {
    position :absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: var(--dark);
    z-index: -1;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-item .team-overlay {
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 36, 41, .9);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}
.team-item .position-relative img {
    height: 400px; /* Adjust this value to match the actual height of team-4.jpg */
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    width: 100%; /* Maintain full width */
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

@media (min-width: 991.98px) {
    .credit {
        background: var(--primary);
    }
}

/* About Section Styles */
:root {
    --primary: #32441a;
    --secondary: #c9d744;
    --dark: #212529;
    --light: #c9d744;
    --text-light: #6C757D;
    --white: #FFFFFF;
}

.about-section {
    position: relative;
    overflow: hidden;
}

/* Section Title Styling */
.section-title-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.section-title-badge {
    background:  #32441a;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(50,68,26,0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.section-title-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(50,68,26,0.4);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
S
.section-title-separator {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.section-title-separator span {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-title-separator span:before,
.section-title-separator span:after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    opacity: 0.5;
}

.section-title-separator span:before {
    left: -40px;
}

.section-title-separator span:after {
    right: -40px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* About Image Styling */
.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-card {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
}

.about-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-img-front,
.about-img-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    overflow: hidden;
}

.about-img-front {
    transform: rotateY(0deg);
}

.about-img-back {
    transform: rotateY(180deg);
    background: var(--dark);
    /* background: linear-gradient(145deg, var(--primary), var(--dark)); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.about-img-card:hover .about-img-front {
    transform: rotateY(180deg);
}

.about-img-card:hover .about-img-back {
    transform: rotateY(360deg);
}

.about-img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    border-radius: 15px;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    text-align: center;
}

.badge-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    display: inline-block;
}

.badge-content span {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-content p {
    font-size: 0.8rem;
    margin: 0;
}

.back-content {
    text-align: center;
    color: var(--white);
}

.back-content h4 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.back-content p {
    margin-bottom: 30px;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
    background: var(--light);
}

.shape-1,
.shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: rgba(50, 68, 26, 0.1);
    top: -30px;
    left: -30px;
    animation: morph1 8s ease-in-out infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(11, 56, 97, 0.1);
    bottom: -50px;
    right: -50px;
    animation: morph2 10s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes morph1 {
    0%, 100% {
        border-radius: 50%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes morph2 {
    0%, 100% {
        border-radius: 50%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* About Content Styling */
.about-content {
    padding: 20px;
}

.animated-progress-wrapper {
    margin-bottom: 30px;
}

.animated-progress {
    margin-bottom: 20px;
}

.animated-progress p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(45deg, var(--primary), #32441a);
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* About Tabs Styling */
.about-tabs {
    margin: 40px 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    background: var(--light);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: transparent;
    border: none;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active:before {
    width: 80%;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: flex;
}
.tab-btn.active {
    background-color: #c9d744; /* Change as needed */
    color: white;
    border-radius: 5px;
}

.pane-icon {
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(50, 68, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.pane-content {
    flex: 1;
}

.pane-content h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.pane-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary,
.btn-outline {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #374151;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(50, 68, 26, 0.3);
}

.btn-primary:hover {
    background: #0B1215;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 68, 26, 0.4);
}

.btn-outline {
    background: #0B1215;
    border: 2px solid #0B1215;
    color: var(--white);
}

.btn-outline:hover {
    background: #c9d744;
    color: #32441a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(50, 68, 26, 0.3);
}

/* Feature Cards Styling */
.feature-section {
    position: relative;
}

.feature-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 70px;
    height: 3px;
    background: var(--primary);
}

.features-row {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, var(--dark), #32441a);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover:before {
    height: 100%;
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(50, 60, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    background: var(--white);
    transform: rotateY(360deg);
}

.feature-card h4 {
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.feature-card:hover h4,
.feature-card:hover p {
    color: var(--white);
}

.feature-hover {
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-hover {
    opacity: 1;
}

.feature-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.feature-link:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.feature-link:hover:after {
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-img-card {
        height: 350px;
    }
    
    .floating-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-content h2 {
        font-size: 2rem;
    }
    
    .tab-pane.active {
        flex-direction: column;
    }
    
    .pane-icon {
        margin: 0 auto 20px;
    }
    
    .pane-content {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-img-card {
        height: 300px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
        width: 90px;
        height: 90px;
    }
    
    .badge-content h2 {
        font-size: 1.8rem;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        padding: 10px;
    }
    
    .tab-btn.active:before {
        width: 40%;
    }
}

/* Services Section Styles */
:root {
    --primary: #32441a;
    --secondary: #c9d744;
    --dark: #212529;
    --light: #F8F9FA;
    --text-light: #6C757D;
    --white: #FFFFFF;
}

.service-section {
    position: relative;
    background-color: black;
    overflow: hidden;
}

/* Section Header Styles */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-badge {
    background: #32441a;
    color: light;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(50, 68, 26, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(50, 68, 26, 0.2);
    z-index: -1;
}

.section-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.section-divider span {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-divider span:before, 
.section-divider span:after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    opacity: 0.5;
}

.section-divider span:before {
    left: -40px;
}

.section-divider span:after {
    right: -40px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Rest of the CSS continues with all the remaining styles... */

/* Gallery Section Styles */
.gallery-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(50, 68, 26, 0.1);
    color: #32441a;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

  /* Centered Heading */
        .text-center {
            text-align: center;
            width: 100%;
            margin-bottom: 60px;
        }

        /* Equal two-column layout */
        /* .equal-columns {
            display: flex;
            gap: 40px;
            justify-content: space-between;
            align-items: center;
        } */

        .equal-columns {
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    align-items: flex-start; /* Align content at top */
    flex-wrap: nowrap; /* Prevent wrapping */
    width: 100%;
    max-width: 1200px; /* Optional container constraint */
    margin: 0 auto;
    padding: 0 2rem;
}

        .equal-columns > div {
            flex: 1 1 50%;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            /* .equal-columns {
                flex-direction: column;
            }

            .text-center {
                margin-bottom: 30px;
            } */

             .equal-columns {
        flex-direction: column;
    }

    .our-story,
    .about-img {
        width: 100%; /* Stack full width on small screens */
    }
        }


.section-title {
    font-size: 2.5rem;
    color: #32441a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title .highlight {
    color: #32441a;
}

.section-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-divider span {
    height: 4px;
    width: 70px;
    background: #32441a;
    border-radius: 2px;
}

.section-subtitle {
    color: #32441a;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(50, 58, 26, 0.7);
    color: #c9d744;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    font-weight: 600;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* Companies Section Styles */
.company-logos {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    max-width: 150px;
    height: auto;
}

.features-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  min-height: 100vh; /* Full viewport height */
}

.feature-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  color:  #ffffff;
  background: #374151;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: #306dae; /* Customize icon color */
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin-bottom: 1rem;
}

.feature-item p {
  text-align: left;
}

.service-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  min-height: 100vh; /* Full viewport height */
}

.service-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-item {
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  color: #306dae; /* Customize icon color */
  margin-bottom: 1rem;
}

.service-item h3 {
  margin-bottom: 1rem;
}

.service-item p {
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 2rem; /* space between boxes */
  padding: 4rem 2rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
  }
}


.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8ed851;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #FF0000;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0000;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}
