 /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --jungle-green: #29AB87;
            --mustard: #F5C965; /* #E8B44C; */
            --mustard-dark: #E8B44C; /* #D4A043; */
            --mustard-light: #FDD57F; /*#F5C965;*/
            --dark-green: #1e7d63;
            --dark-gray: #333333;
            --light-gray: #555;
            --bg-light: #E8F5F1;
            --bg-lighter: #F0F9F6;
            --transition-speed: 0.3s;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Rubik", sans-serif;
            line-height: 1.6;
            font-size: 16px;
            color: var(--light-gray);
            font-weight: 400;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background Elements */
        body::before,
        body::after {
            content: '';
            position: fixed;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.4;
        }

        body::before {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(41, 171, 135, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        body::after {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 180, 76, 0.15) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }

        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--jungle-green) 0%, var(--dark-green) 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            left: 5%;
            animation: morph 15s ease-in-out infinite, float 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--mustard) 0%, var(--mustard-light) 100%);
            border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            bottom: 20%;
            right: 10%;
            animation: morph 12s ease-in-out infinite reverse, float 18s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, rgba(41, 171, 135, 0.5) 0%, rgba(30, 125, 99, 0.5) 100%);
            border-radius: 50% 50% 30% 70% / 30% 70% 50% 50%;
            top: 50%;
            left: 50%;
            animation: morph 18s ease-in-out infinite, float 25s ease-in-out infinite;
        }

        @keyframes morph {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--dark-gray);
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

        a {
            color: var(--jungle-green);
            text-decoration: none;
            transition: all var(--transition-speed) ease;
        }

        a:hover {
            color: var(--dark-green);
        }

        section {
            padding: 80px 0;
        }

        /* Improved accessibility for skip link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--jungle-green);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 10000;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all var(--transition-speed) ease;
        }

        .header.scrolled {
            padding: 5px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
        }

        .navbar {
            padding: 15px 0;
        }

        /* .navbar-brand {
            font-size: 24px;
            font-weight: 900;
            color: var(--jungle-green) !important;
            transition: transform var(--transition-speed) ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand span {
            color: var(--mustard);
        } */

        .navbar-brand {
            display: flex !important;
            align-items: center;
            gap: 12px;
        }

        .navbar-brand .brand-logo,
        .navbar-brand .custom-logo {
            height: 45px;
            width: auto;
            margin: 0;
        }

        .navbar-brand .brand-text span {
            color: var(--mustard);
        }

        .navbar-brand .brand-text {
            font-size: 24px;
            font-weight: 900;
            color: var(--jungle-green) !important;
        }

        .navbar-toggler {
            background: var(--jungle-green);
            border: none;
            padding: 10px 15px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(41, 171, 135, 0.25);
        }

        .main-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
        }

        .main-menu > li {
            padding: 0 15px;
        }

        .main-menu > li > a {
            font-weight: 700;
            color: var(--dark-gray) !important;
            text-transform: uppercase;
            font-size: 14px;
            position: relative;
            padding: 10px 0;
            display: block;
        }

        .main-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--jungle-green);
            transition: width var(--transition-speed) ease;
        }

        .main-menu li a:hover::after,
        .main-menu li a.active::after {
            width: 100%;
        }

        .main-menu li a:hover,
        .main-menu li a.active {
            color: var(--jungle-green) !important;
        }

        /* Hero Section with Carousel */
        .hero-section {
            margin-top: 70px;
            padding: 0;
        }

        .hero-carousel {
            position: relative;
        }

        .hero-slide {
            background: linear-gradient(135deg, rgba(41, 171, 135, 0.9) 0%, rgba(30, 125, 99, 0.9) 100%);
            padding: 100px 0;
            color: white;
            min-height: 550px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .hero-slide-1 {
            background-image: linear-gradient(135deg, rgba(41, 171, 135, 0.85) 0%, rgba(30, 125, 99, 0.85) 100%), 
                              url('../images/hero_img_1.jpg');
        }

        .hero-slide-2 {
            background-image: linear-gradient(135deg, rgba(41, 171, 135, 0.85) 0%, rgba(30, 125, 99, 0.85) 100%), 
                              url('../images/hero_img_2.jpg');
        }

        .hero-slide-3 {
            background-image: linear-gradient(135deg, rgba(41, 171, 135, 0.85) 0%, rgba(30, 125, 99, 0.85) 100%), 
                              url('../images/hero_img_3.jpg');
        }

        /* Animated background pattern */
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(232, 180, 76, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
            animation: backgroundShift 15s ease-in-out infinite;
            z-index: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 60px,
                rgba(255, 255, 255, 0.02) 60px,
                rgba(255, 255, 255, 0.02) 120px
            );
            animation: diagonalMove 20s linear infinite;
            z-index: 1;
        }

        @keyframes backgroundShift {
            0%, 100% {
                transform: scale(1) translate(0, 0);
            }
            50% {
                transform: scale(1.1) translate(30px, -30px);
            }
        }

        @keyframes diagonalMove {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(60px, 60px);
            }
        }

        /* Floating particles */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle linear infinite;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        .hero-slide h1 {
            font-size: 42px;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
            position: relative;
            z-index: 2;
        }

        .hero-slide p {
            font-size: 18px;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            line-height: 1.8;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 2;
        }

        .hero-slide .palm-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: bounce 2s ease infinite;
            position: relative;
            z-index: 2;
            display: inline-block;
        }

        .hero-slide .btn-mustard,
        .hero-slide .btn-outline-light {
            position: relative;
            z-index: 2;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .btn-mustard {
            background: var(--mustard);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            border: 2px solid var(--mustard);
            display: inline-block;
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(232, 180, 76, 0.3);
        }

        .btn-mustard::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--mustard-dark);
            transition: left var(--transition-speed) ease;
            z-index: -1;
        }

        .btn-mustard:hover::before {
            left: 0;
        }

        .btn-mustard:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 180, 76, 0.4);
            color: white;
        }

        .btn-outline-light {
            background: transparent;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            border: 2px solid white;
            display: inline-block;
            margin-left: 15px;
            transition: all var(--transition-speed) ease;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--jungle-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }

        .hero-slide .btn-mustard,
        .hero-slide .btn-outline-light {
            display: inline-block;
            vertical-align: middle;
        }

        .btn-outline-light {
            margin-left: 15px;
            margin-top: 0;
        }

        @media (max-width: 991px) {
            .btn-outline-light {
                margin-left: 0;
                margin-top: 10px;
                display: block;
                width: fit-content;
            }
        }
        /* Owl Carousel Custom Styling */
        .owl-carousel .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2) !important;
            color: white !important;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px !important;
            transition: all var(--transition-speed) ease;
            display: flex !important;
            align-items: center;
            justify-content: center;
            line-height: 1 !important;
            padding: 0 !important;
        }

        .owl-carousel .owl-nav button span {
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .owl-carousel .owl-nav button:hover {
            background: var(--mustard) !important;
            color: var(--dark-gray) !important;
            transform: translateY(-50%) scale(1.1);
        }

        .owl-carousel .owl-nav button:focus {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .owl-carousel .owl-nav .owl-prev {
            left: 20px;
        }

        .owl-carousel .owl-nav .owl-next {
            right: 20px;
        }

        .owl-carousel .owl-dots {
            text-align: center;
            margin-top: 30px;
            position: absolute;
            bottom: 30px;
            width: 100%;
        }

        .owl-carousel .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            margin: 0 5px;
            transition: all var(--transition-speed) ease;
            cursor: pointer;
        }

        .owl-carousel .owl-dot:hover {
            background: rgba(255,255,255,0.6);
        }

        .owl-carousel .owl-dot.active {
            background: var(--mustard);
            width: 30px;
            border-radius: 10px;
        }

        /* Mission Section */
        .mission-section {
            padding: 80px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 180, 76, 0.1) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .mission-content {
            position: relative;
            z-index: 1;
        }

        .mission-image {
            position: relative;
            z-index: 1;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(180deg, rgba(232, 245, 241, 0.96) 0%, rgba(232, 245, 241, 0.94) 100%),
                        url('../images/about_bg.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            margin-top: -20px;
        }

        .about-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 180, 76, 0.15) 0%, transparent 70%);
            top: -100px;
            right: -150px;
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(180deg, transparent 0%, rgba(232, 180, 76, 0.05) 100%);
            pointer-events: none;
        }

        .video-container {
            max-height: 400px;
            overflow: hidden;
        }

        .video-placeholder {
            padding-top: 56.25% !important; /* 16:9 aspect ratio instead of 75% (4:3) */
        }

        .video-container img,
        .video-container video {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.15;
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--mustard-dark) 0%, var(--mustard) 50%, var(--mustard-light) 100%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--light-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .objective-box {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.95) 100%),
                        url('../images/about_bg.jpg');
            background-size: cover;
            background-position: center;
            backdrop-filter: blur(5px);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            border-left: 4px solid var(--jungle-green);
            transition: all var(--transition-speed) ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .objective-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(41, 171, 135, 0.05) 50%,
                transparent 60%
            );
            transform: rotate(0deg);
            transition: transform 0.6s ease;
        }

        .objective-box:hover::before {
            transform: rotate(180deg);
        }

        .objective-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(41, 171, 135, 0.15);
        }

        .objective-box h3 {
            color: var(--jungle-green);
            margin-bottom: 25px;
            font-size: 24px;
            position: relative;
            z-index: 1;
        }

        .objective-box ul {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .objective-box ul {
            list-style: none;
            padding: 0;
        }

        .objective-box ul li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            transition: padding-left var(--transition-speed) ease;
        }

        .objective-box ul li:hover {
            padding-left: 40px;
        }

        .objective-box ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--jungle-green);
            transition: transform var(--transition-speed) ease;
        }

        .objective-box ul li:hover:before {
            transform: scale(1.2);
        }

        /* Services Section */
        .services-section {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%),
                        url('../images/about_bg.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(41, 171, 135, 0.08) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .services-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(232, 180, 76, 0.1) 0%, transparent 70%);
            top: 50px;
            right: 50px;
            border-radius: 50%;
            animation: float 12s ease-in-out infinite reverse;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            border-top: 4px solid var(--jungle-green);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(41, 171, 135, 0.05) 0%, rgba(255, 219, 88, 0.05) 100%);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(41, 171, 135, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: 0;
        }

        .service-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(41, 171, 135, 0.2);
            border-top-color: var(--mustard);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-card i {
            color: var(--mustard);
            margin-bottom: 20px;
            transition: all var(--transition-speed) ease;
        }

        .big-i {
            font-size: 50px;
        }

        .service-card:hover i {
            transform: scale(1.1) rotateY(360deg);
            color: var(--dark-green);
        }

        .service-card h3 {
            color: var(--jungle-green);
            font-size: 20px;
            margin-bottom: 15px;
        }

        /* Target Population Section */
        .target-section {
            background: linear-gradient(180deg, rgba(240, 249, 246, 0.95) 0%, rgba(232, 245, 241, 0.93) 100%),
                        url('../images/about_bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        .target-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(41, 171, 135, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate-slow 30s linear infinite;
        }

        @keyframes rotate-slow {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .target-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.4s ease;
            text-align: center;
            border: 2px solid transparent;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .target-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                transparent 0%,
                rgba(41, 171, 135, 0.03) 50%,
                transparent 100%
            );
            transform: translateX(-100%) rotate(45deg);
            transition: transform 0.6s ease;
        }

        .target-card:hover::before {
            transform: translateX(100%) rotate(45deg);
        }

        .target-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(41, 171, 135, 0.15);
            border-color: var(--jungle-green);
        }

        .target-card h4 {
            color: var(--jungle-green);
            margin-bottom: 15px;
            font-size: 20px;
            position: relative;
            z-index: 1;
        }

        .target-card p {
            position: relative;
            z-index: 1;
        }

        .target-card i {
            font-size: 50px;
            color: var(--mustard);
            margin-bottom: 20px;
            transition: all var(--transition-speed) ease;
            position: relative;
            z-index: 1;
        }

        .target-card:hover i {
            transform: scale(1.1) rotateY(360deg);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.95) 100%),
                        url('../images/about_bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 180, 76, 0.12) 0%, transparent 70%);
            bottom: -150px;
            right: -150px;
            animation: pulse 10s ease-in-out infinite;
        }

        .contact-form .form-control {
            height: 50px;
            border: 2px solid rgba(232, 180, 76, 0.2);
            border-radius: 10px;
            padding: 0 20px;
            margin-bottom: 20px;
            transition: all var(--transition-speed) ease;
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
        }

        .contact-form textarea.form-control {
            height: 150px;
            padding: 20px;
            resize: vertical;
        }

        .contact-form .form-control:focus {
            border-color: var(--jungle-green);
            box-shadow: 0 0 0 0.2rem rgba(41, 171, 135, 0.1);
            background: rgba(255, 255, 255, 1);
        }

        .contact-info {
            background: linear-gradient(135deg, var(--jungle-green) 0%, var(--dark-green) 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .contact-info::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(232, 180, 76, 0.15) 0%, transparent 60%);
            animation: rotate 15s linear infinite reverse;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .contact-info > * {
            position: relative;
            z-index: 1;
        }

        .contact-info h3 {
            color: white;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.4s ease;
        }

        .contact-item:hover::before {
            left: 100%;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(5px);
        }

        .contact-item i {
            font-size: 24px;
            color: var(--mustard);
            margin-right: 20px;
            margin-top: 5px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .contact-item:hover i {
            transform: scale(1.2) rotate(360deg);
        }

        .contact-item div {
            position: relative;
            z-index: 1;
        }

        .contact-item div h4 {
            color: white;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .contact-item div p {
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        .message {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            display: none;
        }
        
        .message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .message.show {
            display: block;
            animation: slideIn 0.3s ease;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, rgba(30, 125, 99, 0.97) 0%, rgba(30, 125, 99, 0.95) 100%),
                        url('../images/about_bg.jpg');
            background-size: cover;
            background-position: center;
            color: var(--bg-light);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 80px,
                    rgba(255, 255, 255, 0.02) 80px,
                    rgba(255, 255, 255, 0.02) 160px
                );
            pointer-events: none;
        }

        .footer-widget {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-widget h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 25px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--mustard) 0%, var(--mustard-light) 100%);
            border-radius: 2px;
        }

        .footer-widget ul {
            padding: 0;
            list-style: none;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: rgba(255,255,255,0.8);
            transition: all var(--transition-speed) ease;
            display: inline-block;
        }

        .footer-widget ul li a:hover {
            color: var(--mustard);
            padding-left: 5px;
        }

        .footer-widget p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--mustard);
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
        }

        .social-links a:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-links a i {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .social-links a:hover i {
            color: var(--dark-gray);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            color: rgba(255,255,255,0.8);
            position: relative;
            z-index: 1;
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--mustard);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(232, 180, 76, 0.4);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--mustard-dark);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(232, 180, 76, 0.5);
        }

        /* Loading Animation */
        .loading-spinner {
            display: none;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .hero-slide h1 {
                font-size: 32px;
            }

            .hero-slide {
                padding: 80px 0;
                min-height: 450px;
            }

            .hero-slide .palm-icon {
                font-size: 60px;
            }

            .btn-outline-light {
                margin-left: 0;
                margin-top: 10px;
            }

            section {
                padding: 60px 0;
            }

            .navbar-collapse {
                background: #f8f9fa;
                padding: 15px;
                border-radius: 10px;
                margin-top: 15px;
            }

            .owl-carousel .owl-nav button {
                width: 40px;
                height: 40px;
                font-size: 18px !important;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .stat-item h3 {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .hero-slide h1 {
                font-size: 26px;
            }

            .hero-slide p {
                font-size: 16px;
            }

            .btn-mustard,
            .btn-outline-light {
                padding: 12px 30px;
                font-size: 14px;
            }

            .scroll-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }