* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2a9d8f;
            --primary-dark: #21867a;
            --primary-light: rgba(42, 157, 143, 0.1);
            --secondary-color: #e76f51;
            --text-dark: #333333;
            --text-medium: #555555;
            --text-light: #777777;
            --background-light: #f8f9fa;
            --white: #ffffff;
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition-slow: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-normal: 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--background-light);
            line-height: 1.6;
            padding-top: 70px; /* To accommodate fixed navbar */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--primary-color);
            padding: 0 20px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            height: 70px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(42, 157, 143, 0.95);
            backdrop-filter: blur(5px);
            height: 60px;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            z-index: 1002; /* Keep logo above overlay */
        }


        .logo-img {
            height: 70px;
           
        }

        /* Desktop Menu Styles */
        .menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            transition: all 0.3s ease;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            display: block;
            color: white;
            text-align: center;
            padding: 25px 16px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .scrolled .menu a {
            padding: 20px 16px;
        }

        .menu a:hover {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }

        /* Dropdown Styles */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }

        .dropdown:after {
            content: "▼";
            font-size: 10px;
            color: white;
            position: absolute;
            right: 5px;
            top: 25px;
            transition: transform 0.3s ease;
        }

        .scrolled .dropdown:after {
            top: 20px;
        }

        .dropdown:hover:after {
            transform: rotate(180deg);
        }

        /* Login & Signup Buttons */
        .auth-buttons {
            display: flex;
            align-items: center;
        }

        .login-btn {
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .login-btn:hover {
            background-color: #e05d3d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .login-btn i {
            margin-right: 8px;
        }

        .signup-btn {
            display: flex;
            align-items: center;
            background-color: transparent;
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .signup-btn:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .signup-btn i {
            margin-right: 8px;
        }

        /* Menu Toggle Button */
        .menu-toggle {
            display: none;
            background-color: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 1002; /* Above overlay */
            transition: all 0.3s ease;
            position: relative;
            padding: 10px;
            width: 44px;
            height: 44px;
            border-radius: 4px;
        }

        .menu-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-toggle:focus {
            outline: none;
        }

        /* Animated Hamburger Icon */
        .hamburger {
            width: 24px;
            height: 20px;
            position: relative;
            margin: 0 auto;
            transform: rotate(0deg);
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 9px;
        }

        .hamburger span:nth-child(4) {
            top: 18px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger.open span:nth-child(1) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.open span:nth-child(4) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px; /* Start off-screen */
            width: 280px;
            height: 100%;
            background-color: var(--primary-color);
            z-index: 1001;
            transition: right 0.3s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            padding-top: 70px; /* Space for navbar */
        }

        .mobile-menu.open {
            right: 0; /* Slide in */
        }

        /* Close button in mobile menu */
        .menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .menu-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        /* Mobile menu list styles */
        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-list a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .mobile-menu-list a:hover {
            background-color: var(--primary-dark);
        }

        /* Mobile dropdown styles */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown > a {
            position: relative;
        }

        .mobile-dropdown > a:after {
            content: "▼";
            font-size: 10px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s;
        }

        .mobile-dropdown.active > a:after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-dropdown-content {
            display: none;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .mobile-dropdown-content a {
            padding-left: 40px;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        /* Mobile auth buttons */
        .mobile-auth-buttons {
            padding: 20px;
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 10px;
        }

        .mobile-auth-buttons .signup-btn,
        .mobile-auth-buttons .login-btn {
            margin: 5px 0;
            width: 100%;
            justify-content: center;
        }

        .mobile-auth-buttons .signup-btn {
            margin-bottom: 10px;
            margin-left: 0;
        }

        .mobile-auth-buttons .login-btn {
            margin-left: 0;
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive styles */
        @media (max-width: 768px) {

            .menu {
                display: none;
            }

            .auth-buttons {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
            
             .logo-img {
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0 15px;
            }

            .logo-img {
                height: 50px;
            }

            .mobile-menu {
                width: 250px;
                right: -250px;
            }
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
                font-size: 16px;
            }
        }

        /* Add a placeholder main content for testing */
        .content {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        .content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* Active Menu */
        .menu a:hover, .menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .dropdown-content a:hover, .dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }
        .mobile-menu a:hover, .mobile-menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .mobile-dropdown-content a:hover, .mobile-dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/500') no-repeat center center;
            background-size: cover;
            height: 400px;
            color: var(--white);
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero p {
            font-size: 18px;
            margin-top: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .text-center {
            text-align: center;
        }

        /* Our Story Section */
        .our-story {
            background-color: var(--white);
        }

        .story-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .story-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .story-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            transition: var(--transition-normal);
        }

        .story-image img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .story-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-color);
            border-radius: 10px;
            top: 15px;
            left: 15px;
            z-index: -1;
        }

        .story-content {
            flex: 1;
            min-width: 300px;
        }

        .story-content h2 {
            font-size: 30px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .story-content h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

        .story-content p {
            margin-bottom: 20px;
            color: var(--text-medium);
        }

        /* Vision Mission Section */
        .vision-mission {
            background-color: var(--primary-light);
        }

        .vm-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .vm-card {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition-slow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: var(--transition-normal);
        }
        
        .vm-card.mission::before {
            background-color: var(--secondary-color);
        }

        .vm-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-md);
        }

        .vm-card:hover::before {
            height: 10px;
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-color);
            font-size: 32px;
            transition: var(--transition-normal);
        }

        .mission .vm-icon {
            background-color: rgba(231, 111, 81, 0.1);
            color: var(--secondary-color);
        }

        .vm-card:hover .vm-icon {
            transform: rotateY(180deg);
        }

        .vm-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .vm-card p {
            color: var(--text-medium);
        }

        /* Team Section */
        .team {
            background-color: var(--white);
        }

        .team-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .team-member {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
            position: relative;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .member-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-normal);
        }

        .team-member:hover .member-image img {
            transform: scale(1.05);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .member-info .position {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .member-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-normal);
        }

        .member-social a:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
            color: var(--white);
            padding: 60px 0;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            padding: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .stat-number::after {
            content: '+';
            position: absolute;
            font-size: 24px;
            top: 0;
            right: -15px;
            color: var(--secondary-color);
        }

        .stat-text {
            font-size: 18px;
            font-weight: 500;
        }

        /* Values Section */
        .values {
            background-color: var(--background-light);
        }

        .values-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }

        .value-card {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            background-color: var(--white);
            padding: 30px 25px;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .value-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0) 100%);
            top: 0;
            left: 0;
            z-index: -1;
            transition: var(--transition-normal);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .value-card:hover::before {
            height: 100%;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 28px;
            transition: var(--transition-normal);
        }

        .value-card:hover .value-icon {
            background-color: var(--primary-color);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .value-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }

        .value-card h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .value-card p {
            color: var(--text-medium);
            font-size: 15px;
        }

        /* CTA Section */
        .cta {
            background: url('/api/placeholder/1200/400') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            position: relative;
            text-align: center;
            color: var(--white);
            padding: 100px 0;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(rgba(42, 157, 143, 0.85), rgba(231, 111, 81, 0.85));
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: var(--white);
            color: var(--primary-color);
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-normal);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--white);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            background-color: transparent;
            color: var(--white);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        /* Footer Styles */
        .footer {
            background-color: #263238;
            color: #f5f5f5;
            padding: 60px 0 0 0;
            font-family: 'Poppins', sans-serif;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 40px;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #e76f51;
        }
        
        .footer-section p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #b0bec5;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a:before {
            content: '›';
            position: absolute;
            left: 0;
            top: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #e76f51;
            padding-left: 20px;
        }
        
        .footer-links a:hover:before {
            left: 5px;
        }
        
        /* Advanced Social Icons */
        .social-icons-container {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            justify-content: flex-start;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #37474f;
            color: #f5f5f5;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-icon:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            transform: scale(0);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
            border-radius: 50%;
        }
        
        .social-icon i {
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .social-icon:hover i {
            transform: scale(1.2);
        }
        
        .social-icon:hover:before {
            transform: scale(1);
        }
        
        /* Social icon specific colors */
        .social-icon.facebook:before {
            background-color: #3b5998;
        }
        
        .social-icon.whatsapp:before {
            background-color: #25d366;
        }
        
        .social-icon.phone:before {
            background-color: #4CAF50;
        }
        
        .social-icon.instagram:before {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        /* Tooltip */
        .social-icon .tooltip {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background-color: #000;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .social-icon .tooltip:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px;
            transform: translateX(-50%);
            border-width: 5px 5px 0;
            border-style: solid;
            border-color: #000 transparent transparent;
        }
        
        .social-icon:hover .tooltip {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            top: -45px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            background-color: #37474f;
            color: white;
            border-radius: 4px 0 0 4px;
            font-family: 'Poppins', sans-serif;
        }
        
        .newsletter-form input::placeholder {
            color: #90a4ae;
        }
        
        .newsletter-form button {
            padding: 10px 15px;
            background-color: #2a9d8f;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #e76f51;
        }

        .footer-bottom {
            background-color: #1e272c;
            padding: 20px;
            text-align: center;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            margin: 0;
            color: #90a4ae;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #90a4ae;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #e76f51;
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            .section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 15px;
                justify-content: space-between;
            }

            .menu {
                flex-direction: column;
                display: none;
                width: 100%;
                background-color: #2a9d8f;
                position: absolute;
                top: 70px;
                left: 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out, opacity 0.3s ease;
                opacity: 0;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
            }

            .scrolled .menu {
                top: 60px;
            }

            .menu li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .menu a {
                text-align: left;
                padding: 15px 20px;
            }

            .dropdown-content {
                position: static;
                background-color: rgba(0, 0, 0, 0.1);
                box-shadow: none;
                width: 100%;
                max-height: 0;
                padding: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
                transform: none;
                opacity: 1;
                border-radius: 0;
            }

            .dropdown-content a {
                padding-left: 40px;
                color: white;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .dropdown:after {
                right: 20px;
            }

            .menu-toggle {
                display: block;
            }

            .dropdown.active .dropdown-content {
                max-height: 1000px;
                display: block;
            }

            .menu.show {
                display: block;
                max-height: 1000px;
                opacity: 1;
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active:after {
                transform: rotate(180deg);
            }

            .hero {
                height: 350px;
            }
            .hero h1 {
                font-size: 32px;
            }
            .hero p {
                font-size: 16px;
            }
            .section-title {
                font-size: 28px;
            }
            .story-image::after {
                display: none;
            }
            .story-content h2 {
                font-size: 24px;
            }
            .btn {
                display: block;
                margin-bottom: 15px;
                width: 100%;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }
            .btn-outline {
                margin-left: auto;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
            
            .social-icons-container {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .stat-number {
                font-size: 36px;
            }
            .stat-text {
                font-size: 16px;
            }
        }
        /* Contact Widget Container */
        .contact-widget {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Main Button */
        .contact-main-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #2a9d8f;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 10;
        }

        .contact-main-btn i {
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .contact-main-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background-color: #21867a;
        }

        .contact-main-btn.active i {
            transform: rotate(135deg);
        }

        /* Contact Options Container */
        .contact-options {
            position: absolute;
            bottom: 100%;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .contact-options.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        /* Individual Contact Options */
        .contact-option {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transform: scale(0);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .contact-options.active .contact-option {
            transform: scale(1);
            pointer-events: auto;
        }

        /* Delay each option animation */
        .contact-options.active .contact-option:nth-child(1) {
            transition-delay: 0.1s;
        }

        .contact-options.active .contact-option:nth-child(2) {
            transition-delay: 0.2s;
        }

        .contact-options.active .contact-option:nth-child(3) {
            transition-delay: 0.3s;
        }

        .contact-option-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-option-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(0);
            transition: all 0.3s ease;
            border-radius: 50%;
            z-index: -1;
        }

        .contact-option-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-option-btn:hover:before {
            transform: scale(1);
        }

        .contact-option-btn i {
            font-size: 20px;
            color: white;
        }

        /* WhatsApp Button */
        .contact-whatsapp {
            background-color: #25d366;
        }

        /* Messenger Button */
        .contact-messenger {
            background-color: #0084ff;
        }

        /* Call Button */
        .contact-call {
            background-color: #4CAF50;
        }

        /* Label for each option */
        .contact-option-label {
            background-color: white;
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            margin-left: 10px;
            font-weight: 500;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .contact-option:hover .contact-option-label {
            opacity: 1;
            transform: translateX(0);
        }

        /* Pulse animation for the main button */
        .pulse {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(42, 157, 143, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
            }
        }

        /* For mobile screens */
        @media (max-width: 768px) {
            .contact-widget {
                left: 10px;
                bottom: 10px;
            }

            .contact-main-btn {
                width: 50px;
                height: 50px;
            }

            .contact-main-btn i {
                font-size: 20px;
            }

            .contact-option-btn {
                width: 40px;
                height: 40px;
            }

            .contact-option-btn i {
                font-size: 16px;
            }

            .contact-option-label {
                font-size: 12px;
                padding: 4px 10px;
            }
        }
        /* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    width: 50px; /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Make it fully rounded */
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Show the button */
.back-to-top.show {
    display: flex !important; /* Ensure it's displayed as flex for centering */
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

 /* Full Page Preloader Styles */
        #full-preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color, #2a9d8f);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* Preloader container */
        .preloader-container {
            text-align: center;
            color: white;
            font-family: 'Poppins', sans-serif;
        }

        /* Spinner styles */
        .preloader-spinner {
            border: 8px solid rgba(255, 255, 255, 0.3);
            border-top: 8px solid white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 0.8s linear infinite;
        }

        /* Spinner animation */
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Hide the preloader after page load */
        #full-preloader.hide {
            opacity: 0;
            visibility: hidden;
        }

        /* Responsive adjustments for the preloader */
        @media (max-width: 1200px) {
            .preloader-spinner {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 992px) {
            .preloader-spinner {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .preloader-spinner {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .preloader-spinner {
                width: 40px;
                height: 40px;
            }
        }