

/* header section ------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


   /* Header Styles - No root styles used */
        .header-wrapper-top {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: transform 0.4s ease-in-out;
           
        }
        
        .header-container-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #8B4513;
            padding: 0 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border-bottom: 3px solid #dcae3c;
            height: 80px;
        
        }
        
        /* Logo Section */
        .logo-section-top {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        
        .logo-placeholder {
            width: 50px;
            height: 50px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .site-title-top {
            font-size: 14px;
            font-weight: 700;
            color: white;
            font-family: 'Georgia', serif;
        }
        
        /* Navigation Menu */
        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            text-decoration: none;
            color: white;
            font-weight: 500;
            padding: 10px 0;
            display: block;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .nav-link:hover {
            color: #FFD700;
        }
        
        /* Active link styling */
        .nav-link.active {
            color: #FFD700;
            border-bottom: 2px solid #FFD700;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background-color: #A0522D;
            padding: 15px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-nav-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .mobile-nav-link {
            text-decoration: none;
            color: white;
            font-weight: 500;
            padding: 12px 0;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 18px;
        }
        
        .mobile-nav-link.active {
            color: #FFD700;
            font-weight: 600;
        }
        
        
        
       
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                gap: 15px;
            }
            
            .nav-link {
                font-size: 15px;
            }
            
            .site-title {
                font-size: 22px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu.active {
                display: block;
            }
            
            .logo-placeholder {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .site-title {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                padding: 0 10px;
            }
            
            .logo-section {
                gap: 10px;
            }
            
            .site-title {
                font-size: 15px;
            }
            
            .logo-placeholder {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .content {
                margin-top: 110px;
                padding: 15px;
            }
        }

/* home section ----------------------------------------------------------------------------------------------------------------------------------------------------*/

* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: sans-serif; }

  /* HERO SECTION */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh; /* full screen */
    overflow: hidden;
    background: #000;
   margin-top: 60px;
  }

  /* VIDEO BASE STYLES */
  .hero video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* --------------- PC / LARGE SCREENS --------------- */
  @media (min-width: 768px) {
    .hero video {
      object-fit: cover;   /* fill screen */
      object-position: center;
    }
  }

  /* --------------- MOBILE / SMALL SCREENS --------------- */
  @media (max-width: 767px) {
    .hero {
      height: auto; /* video adjusts to natural height */
    }

    .hero video {
      object-fit: contain;  /* full original video, no crop */
      object-position: top center;
      height: auto;         /* natural height */
      position: relative;   /* allows next section right below */
    }
  }

  /* NEXT SECTION */
  .next-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    font-size: 20px;
  }


  /* typical section ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #0d1f0d;
            color: white;
        } */

        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(13, 31, 13, 0.3) 0%,
                rgba(44, 85, 48, 0.2) 50%,
                rgba(13, 31, 13, 0.5) 100%
            );
            z-index: 2;
        }

        .content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1200px;
            padding: 0 20px;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            background: linear-gradient(to right, #d4af37, #ffd700, #d4af37);
            /* -webkit-background-clip: text; */
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
            }
        }

        .typing-text {
            font-size: 1.8rem;
            margin-bottom: 40px;
            min-height: 60px;
            color: #f0f0f0;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .typing-cursor {
            display: inline-block;
            width: 3px;
            background-color: #d4af37;
            margin-left: 5px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .search-box {
            width: 100%;
            padding: 18px 25px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            outline: none;
        }

        .search-box:focus {
            background: white;
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
            transform: translateY(-3px);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #2c5530;
            font-size: 1.3rem;
            cursor: pointer;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 15px;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 10;
            overflow: hidden;
            max-height: 300px;
            display: flex;
            flex-direction: column;
        }

        .dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content {
            overflow-y: auto;
            max-height: 250px;
            padding: 5px 0;
            scrollbar-width: thin;
            scrollbar-color: #d4af37 #f0f0f0;
        }

        .dropdown-content::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-content::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 3px;
        }

        .dropdown-content::-webkit-scrollbar-thumb {
            background: #d4af37;
            border-radius: 3px;
        }

        .dropdown-content::-webkit-scrollbar-thumb:hover {
            background: #b8941f;
        }

        .dropdown-item {
            padding: 15px 25px;
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: #f8f8f8;
            padding-left: 30px;
            color: #2c5530;
        }

        .dropdown-item i {
            margin-right: 12px;
            color: #d4af37;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .scroll-indicator {
            padding: 10px;
            text-align: center;
            background: #f8f8f8;
            color: #666;
            font-size: 0.8rem;
            border-top: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .scroll-indicator i {
            color: #d4af37;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-3px);
            }
            60% {
                transform: translateY(-2px);
            }
        }

        .button-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-donate {
            background: linear-gradient(to right, #d4af37, #ffd700);
            color: #1a2f1a;
        }

        .btn-contact {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .btn-donate:hover {
            background: linear-gradient(to right, #ffd700, #d4af37);
        }

        .btn-contact:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            font-size: 2rem;
            color: rgba(212, 175, 55, 0.3);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .video-controls {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 4;
            display: flex;
            gap: 10px;
        }

        .control-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .loading-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0d1f0d;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            transition: opacity 0.5s ease;
        }

        .loader {
            text-align: center;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(212, 175, 55, 0.3);
            border-top: 4px solid #d4af37;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader-text {
            color: #d4af37;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .title {
                font-size: 3rem;
            }
            
            .typing-text {
                font-size: 1.4rem;
                min-height: 50px;
            }
            
            .search-box {
                padding: 15px 20px;
            }
            
            .btn {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .dropdown {
                max-height: 250px;
            }

            .dropdown-content {
                max-height: 200px;
            }

            .video-controls {
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2.2rem;
            }
            
            .typing-text {
                font-size: 1.1rem;
                min-height: 40px;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 220px;
                justify-content: center;
            }

            .dropdown-item {
                padding: 12px 20px;
            }

            .video-controls {
                bottom: 15px;
                right: 15px;
            }
        }

        /* Mobile optimization for video */
        @media (max-width: 768px) and (orientation: portrait) {
            .video-background video {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
        }

        /* circular gallery  ---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


         /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            -webkit-tap-highlight-color: transparent;
        } */

        .gallery {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding-top: 20px;
            width: 100%;
            max-width: 800px;
        }

        .title {
            font-size: clamp(1.8rem, 5vw, 3rem);
            background: linear-gradient(90deg, #cbced3, #8f77c7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
            line-height: 1.2;
            padding: 0 15px;
        }

        .subtitle {
            font-size: clamp(0.9rem, 3vw, 1.2rem);
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto 25px;
            line-height: 1.5;
            padding: 0 20px;
        }

        .simple-button {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border: none;
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-top: 5px;
            letter-spacing: 0.5px;
            width: auto;
            min-width: 160px;
        }

        .simple-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .simple-button:active {
            transform: translateY(1px);
        }

        /* Main gallery container - fixed size for all devices */
        .gallery-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            padding: 20px;
            max-width: 900px;
        }

        .gallery-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive sizing for different screens */
        @media (max-width: 768px) {
            .gallery-container {
                max-width: 400px;
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .gallery-container {
                max-width: 320px;
                height: 320px;
            }
        }

        @media (max-width: 360px) {
            .gallery-container {
                max-width: 280px;
                height: 280px;
            }
        }

        /* Center image - always circular */
        .center-image {
            position: absolute;
            width: clamp(120px, 25vw, 180px);
            height: clamp(120px, 25vw, 180px);
            border-radius: 50%;
            overflow: hidden;
            z-index: 10;
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 4px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transform-origin: center;
        }

        .center-image.enlarged {
            transform: scale(1.8);
            z-index: 100;
            box-shadow: 0 0 50px rgba(59, 130, 246, 0.9);
            border-width: 5px;
        }

        .center-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Orbit container */
        .orbit {
            position: absolute;
            width: 100%;
            height: 100%;
            animation: rotate 60s linear infinite;
            will-change: transform;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Orbital images */
        .orbital-image {
            position: absolute;
            width: clamp(80px, 17vw, 120px);
            height: clamp(80px, 17vw, 120px);
            border-radius: 50%;
            overflow: hidden;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
            border: 3px solid rgba(255, 255, 255, 0.2);
            z-index: 5;
            touch-action: manipulation;
        }

        .orbital-image:hover, .orbital-image:active {
            transform: translate(-50%, -50%) scale(1.15);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
            border-color: rgba(139, 92, 246, 0.5);
            z-index: 20;
        }

        .orbital-image.active {
            transform: translate(-50%, -50%) scale(1.25);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.9);
            border-color: #3b82f6;
            z-index: 30;
        }

        .orbital-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Full screen overlay for enlarged square image */
        .image-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 23, 42, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 20px;
        }

        .image-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .enlarged-square {
            width: 90%;
            max-width: 600px;
            height: auto;
            max-height: 80vh;
            background: #1e293b;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
            border: 2px solid #3b82f6;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .image-overlay.active .enlarged-square {
            transform: scale(1);
        }

        .enlarged-square img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(30, 41, 59, 0.9);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            line-height: 1;
        }

        .close-btn:hover, .close-btn:active {
            background: #3b82f6;
        }

        .image-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(30, 41, 59, 0.9);
            padding: 15px;
            text-align: center;
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            color: #e2e8f0;
        }

        /* .footer {
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.5);
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            text-align: center;
            padding: 0 20px;
            width: 100%;
            max-width: 800px;
        } */

        /* Touch-friendly controls */
        .touch-hint {
            display: none;
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: #94a3b8;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .touch-hint {
                display: block;
            }
            
            .gallery-wrapper {
                padding-bottom: 50px;
            }
        }

        /* Loading screen */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0f172a;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            border-top-color: #3b82f6;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            color: #cbd5e1;
            font-size: 1rem;
        }

        /* Prevent body scroll when overlay is open */
        body.no-scroll {
            overflow: hidden;
            height: 100vh;
        }

        /* slide gallery -----------------------------------------------------------------------------------------------------------------------------------------------*/

         /* Root styling removed, using final-one naming convention */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .slide-gallery {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #1a1a2e;
            color: #f1f1f1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .final-one-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .final-one-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #4cc9f0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .final-one-subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #b0b0b0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-one-slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            background-color: #16213e;
            padding: 40px 0;
        }

        .final-one-slider-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 400px;
            align-items: center;
            gap: 20px;
        }

        .final-one-slide {
            flex: 0 0 calc(33.333% - 13.33px);
            padding: 0;
            transition: all 0.8s ease;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .final-one-image-container {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.8s ease;
        }

        .final-one-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .final-one-slide-center .final-one-image-container {
            transform: scale(1.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        .final-one-slide-side .final-one-image-container {
            transform: scale(0.85);
            opacity: 0.8;
            z-index: 1;
        }

        .final-one-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px 15px 10px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .final-one-slide-center .final-one-image-caption {
            opacity: 1;
        }

        /* Arrow buttons */
        .final-one-arrow-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(22, 33, 62, 0.8);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .final-one-arrow-btn:hover {
            background-color: #4cc9f0;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.3);
        }

        .final-one-arrow-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .final-one-arrow-left {
            left: 20px;
        }

        .final-one-arrow-right {
            right: 20px;
        }

        /* Hide arrows on very small screens */
        @media (max-width: 480px) {
            .final-one-arrow-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .final-one-arrow-left {
                left: 10px;
            }
            
            .final-one-arrow-right {
                right: 10px;
            }
        }

        /* Instructions */
        .final-one-instructions {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background-color: rgba(15, 52, 96, 0.2);
            border-radius: 10px;
            max-width: 800px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        @media (max-width: 992px) {
            .final-one-slide {
                flex: 0 0 calc(50% - 10px);
            }
            
            .final-one-slider-track {
                height: 350px;
                gap: 20px;
            }
            
            .final-one-slide-center .final-one-image-container {
                transform: scale(1.1);
            }
        }

        @media (max-width: 768px) {
            .final-one-slide {
                flex: 0 0 100%;
            }
            
            .final-one-slider-track {
                height: 300px;
                gap: 0;
            }
            
            .final-one-title {
                font-size: 2rem;
            }
            
            .final-one-subtitle {
                font-size: 1rem;
            }
            
            .final-one-slide-center .final-one-image-container {
                transform: scale(1.05);
            }
        }

        @media (max-width: 480px) {
            .final-one-slider-track {
                height: 250px;
            }
            
            .final-one-instructions {
                font-size: 0.85rem;
            }
        }



        /* contact section ----------------------------------------------------------------------------------------------------------------------------------------------*/

         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contact-main {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #121a41 0%, #0b3549 100%);
            color: #333;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-title {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            font-weight: 700;
        }

        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        /* Contact Info Card */
        .contact-card {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .card-title {
            font-size: 1.8rem;
            color: #667eea;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
        }

        .card-title i {
            font-size: 1.8rem;
            color: #764ba2;
        }

        .info-grid {
            display: grid;
            gap: 20px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: #f8f9ff;
            border-radius: 15px;
            transition: all 0.3s ease;
            border-left: 4px solid #667eea;
        }

        .info-item:hover {
            background: #edf2ff;
            transform: translateX(5px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .info-item:hover .info-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .info-content h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
        }

        .info-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f2ff;
            color: #667eea;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Form Card */
        .form-card {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .form-card:hover {
            transform: translateY(-5px);
        }

        .form-title {
            font-size: 1.8rem;
            color: #764ba2;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
        }

        .form-title i {
            font-size: 1.8rem;
            color: #667eea;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            color: #444;
            font-weight: 500;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-label i {
            color: #667eea;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            background: #f8f9ff;
            border: 2px solid #e1e5ff;
            border-radius: 12px;
            color: #333;
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-input.error {
            border-color: #ff4757;
            animation: shake 0.5s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .error-message {
            color: #ff4757;
            font-size: 0.85rem;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            display: none;
        }

        .error-message.show {
            display: flex;
        }

        .phone-input-group {
            display: flex;
            gap: 10px;
        }

        .country-code {
            flex: 0 0 100px;
            position: relative;
        }

        .country-code select {
            width: 100%;
            padding: 15px;
            background: #f8f9ff;
            border: 2px solid #e1e5ff;
            border-radius: 12px;
            color: #333;
            font-size: 1rem;
            cursor: pointer;
            appearance: none;
            outline: none;
        }

        .country-code::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #667eea;
            pointer-events: none;
        }

        .phone-input {
            flex: 1;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn i {
            transition: transform 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        .whatsapp-btn {
            width: 100%;
            padding: 18px;
            background: #25D366;
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: none;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            text-decoration: none;
        }

        .whatsapp-btn.show {
            display: flex;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

        .success-message {
            background: #d4ffd4;
            border: 2px solid #25D366;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .success-message i {
            font-size: 2rem;
            color: #25D366;
            margin-bottom: 15px;
        }

        .success-message h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .success-message p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Floating Icons Background - Subtle */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
        }

        .floating-icon {
            position: absolute;
            font-size: 20px;
            color: white;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(100px, 100px) rotate(360deg); }
        }

        /* Responsive Design - Mobile First */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .contact-wrapper {
                gap: 20px;
            }
            
            .contact-card, .form-card {
                padding: 30px 25px;
                min-width: 100%;
            }
            
            .card-title, .form-title {
                font-size: 1.5rem;
            }
            
            .info-item {
                padding: 15px;
            }
            
            .info-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .phone-input-group {
                flex-direction: column;
            }
            
            .country-code {
                flex: 0 0 auto;
                width: 100%;
            }
            
            .social-links {
                gap: 12px;
            }
            
            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 1.7rem;
            }
            
            .contact-card, .form-card {
                padding: 25px 20px;
            }
            
            .card-title, .form-title {
                font-size: 1.3rem;
                gap: 10px;
            }
            
            .card-title i, .form-title i {
                font-size: 1.5rem;
            }
            
            .form-input, .country-code select {
                padding: 14px 15px;
                font-size: 0.95rem;
            }
            
            .submit-btn, .whatsapp-btn {
                padding: 16px;
                font-size: 1rem;
            }
            
            .info-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            
            .info-content h3 {
                font-size: 1rem;
            }
            
            .info-content p {
                font-size: 0.9rem;
            }
        }

        @media (min-width: 1200px) {
            .contact-wrapper {
                gap: 40px;
            }
            
            .contact-card, .form-card {
                max-width: 550px;
            }
        }

  /* footer secttion ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        } */

        .main-content {
            flex: 1;
            padding: 40px 20px;
            text-align: center;
        }

        .main-content h1 {
            color: #2c5530;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .main-content p {
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            left: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(to right, #1a2f1a, #2c5530, #1a2f1a);
            color: #fff;
            padding: 60px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #d4af37, #ffd700, #d4af37);
        }

        .footer-wave {
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 40px;
        }

        .footer-wave .shape-fill {
            fill: #f5f7fa;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section {
            margin-bottom: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo i {
            font-size: 2.5rem;
            color: #d4af37;
            margin-right: 15px;
        }

        .footer-logo h2 {
            font-size: 1.8rem;
            color: #fff;
        }

        .footer-section p {
            line-height: 1.8;
            margin-bottom: 20px;
            color: #e0e0e0;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: #d4af37;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #d4af37;
        }

        .links ul {
            list-style: none;
        }

        .links ul li {
            margin-bottom: 12px;
        }

        .links ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .links ul li a:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .links ul li a i {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 5px;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .contact-item.whatsapp-enabled:hover {
            background: rgba(37, 211, 102, 0.1);
        }

        .contact-item i {
            margin-right: 15px;
            color: #d4af37;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .contact-item.whatsapp-enabled i {
            color: #25d366;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-details p {
            margin: 0;
            color: #e0e0e0;
        }

        .whatsapp-indicator {
            display: inline-flex;
            align-items: center;
            background: rgba(37, 211, 102, 0.2);
            color: #25d366;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-top: 5px;
        }

        .whatsapp-indicator i {
            margin-right: 5px;
            font-size: 0.8rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a.whatsapp {
            background: rgba(37, 211, 102, 0.2);
        }

        .social-links a:hover {
            background: #d4af37;
            transform: translateY(-5px);
        }

        .social-links a.whatsapp:hover {
            background: #25d366;
        }

        .newsletter p {
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 15px;
            position: relative;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: #d4af37;
            color: #1a2f1a;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .newsletter-form button:hover {
            background: #ffd700;
        }

        .newsletter-whatsapp-note {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 211, 102, 0.1);
            padding: 10px 15px;
            border-radius: 5px;
            margin-top: 10px;
            font-size: 0.9rem;
        }

        .newsletter-whatsapp-note i {
            color: #25d366;
            font-size: 1.2rem;
        }

        .trust-badges {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .trust-badge i {
            margin-right: 8px;
            color: #d4af37;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            margin-top: 40px;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #e0e0e0;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #d4af37;
        }

        .back-to-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #d4af37;
            color: #1a2f1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #ffd700;
            transform: translateY(-5px);
        }

        /* WhatsApp Modal */
        .whatsapp-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .modal-header i {
            font-size: 2.5rem;
            color: #25d366;
            margin-right: 15px;
        }

        .modal-header h3 {
            color: #2c5530;
            font-size: 1.8rem;
        }

        .modal-body p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.6;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 25px;
        }

        .modal-button {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-button.primary {
            background: #25d366;
            color: white;
        }

        .modal-button.secondary {
            background: #e0e0e0;
            color: #333;
        }

        .modal-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid #25d366;
            color: #25d366;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
            text-align: center;
        }

        .success-message i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 4px;
                padding: 12px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                left: 20px;
                font-size: 25px;
            }
            
            .back-to-top {
                bottom: 80px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 40px 0 0;
            }
            
            .footer-section h3 {
                font-size: 1.3rem;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .trust-badges {
                justify-content: center;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
        }