:root {
  --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #dbeafe;
            --secondary: #ec4899;
            --secondary-light: #fce7f3;
            --accent: #8b5cf6;
            --accent-light: #ede9fe;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --gray-light: #f8fafc;
            --gray-border: #e2e8f0;
            --shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
            --radius: 16px;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --gg-600: #059669;
            --bb-950: #0f172a;
            --bb-400: #94a3b8;
}

body { font-family: "Geist", sans-serif;  letter-spacing: -0.025em; line-height: 1.5; font-size:1rem; font-weight: 500; color: var(--bb-950);}




/* header css starts here */

/* Header Styles */
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            padding: 0.75rem 0;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            padding: 0.5rem 1.25rem !important;
            border-radius: var(--radius);
            transition: all 0.2s ease;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
            background-color: var(--primary-light);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
        }
        
        .support-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
        }
        
        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
            color: var(--white);
        }
        
        .support-btn i {
            font-size: 1.25rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px;
            border-radius: 50%;
        }
        
        .support-text {
            line-height: 1.3;
        }
        
        .support-text small {
            font-size: 0.75rem;
            opacity: 0.9;
        }
        
        .support-text span {
            font-size: 1rem;
            font-weight: 600;
        }
        
        /* Mobile Styles */
        .menu-trig {
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 1.5rem;
            padding: 0.5rem;
            border-radius: var(--radius);
        }
        
        .offcanvas {
            border-left: none;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .offcanvas-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-border);
        }
        
        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .menu-list li {
            margin-bottom: 0.5rem;
        }
        
        .menu-list a {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text-dark);
            text-decoration: none;
            border-radius: var(--radius);
            transition: all 0.2s ease;
            font-weight: 500;
        }
        
        .menu-list a:hover {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        
        .mobile-support {
            margin-top: 2rem;
            padding: 1rem;
            background: var(--gray-light);
            border-radius: var(--radius);
        }
        
        /* Animation for mobile menu */
        .offcanvas-body {
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(10px); }
            to { opacity: 1; transform: translateX(0); }
        }

/* header css ends here */
/* hero css starts here */

 .hero-section {
           padding: 90px 0px;
            background: #0f172a;
            display: flex;
            align-items: center;
            position: relative;
          
            flex-direction: column;
        }

        .hero-container {
          
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            animation: fadeInUp 0.8s ease-out 0.2s both;
            color: var(--primary-light);
            box-shadow: var(--shadow);
        }

        .hero-badge svg {
            color: var(--accent-light);
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.8rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .title-main {
            display: block;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-accent {
            display: block;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 0.8s ease-out 0.6s both;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: float 8s ease-in-out infinite;
            box-shadow: var(--shadow);
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 15%;
            left: 8%;
            animation-delay: 0s;
            background: linear-gradient(135deg, rgba(219, 234, 254, 0.1), rgba(139, 92, 246, 0.05));
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 65%;
            right: 7%;
            animation-delay: 2.5s;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(219, 234, 254, 0.04));
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 25%;
            left: 15%;
            animation-delay: 5s;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(5, 150, 105, 0.05));
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-25px) rotate(120deg) scale(1.05);
            }
            66% {
                transform: translateY(-15px) rotate(240deg) scale(0.95);
            }
        }

       
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
                padding: 4rem 0;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 2.5rem;
            }

        
            .floating-element {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

           

            .hero-badge {
                font-size: 0.85rem;
                padding: 0.5rem 1.5rem;
            }
        }

     
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }


/* hero css ends here */

/* feature starts here */
.features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, 
                rgba(248, 250, 252, 0.95) 0%, 
                rgba(226, 232, 240, 0.95) 50%,
                rgba(219, 234, 254, 0.4) 100%);
            position: relative;
            overflow: hidden;
        }
        
      
        
        .feature {
            text-align: center;
            margin: 0 auto;
            padding: 50px 30px;
            background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }
        
        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: var(--transition);
            z-index: 2;
        }
        
        .feature::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(37, 99, 235, 0.1),
                rgba(236, 72, 153, 0.1),
                rgba(139, 92, 246, 0.1),
                transparent
            );
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: var(--transition);
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .feature:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        
        .feature:hover::before {
            transform: scaleX(1);
        }
        
        .feature:hover::after {
            opacity: 1;
        }
        
        .feature-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            border-radius: 50%;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
            color: var(--primary);
        }
        
        .feature:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: scale(1.15) ;
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
            color: #fff;
        }
        

        
 
        .feature h5 {
            margin: 0 0 20px;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .feature:hover h5 {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .feature p {
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .feature:hover p {
            color: var(--text-dark);
        }
        
        /* Vibrant color variations for each feature */
        .feature:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, var(--primary-light), #dbeafe);
        }
        
        .feature:nth-child(1):hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), #3b82f6);
        }
        
        .feature:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--secondary-light), #fce7f3);
        }
        
        .feature:nth-child(2):hover .feature-icon {
            background: linear-gradient(135deg, var(--secondary), #ec4899);
        }
        
        .feature:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--accent-light), #ede9fe);
        }
        
        .feature:nth-child(3):hover .feature-icon {
            background: linear-gradient(135deg, var(--accent), #8b5cf6);
        }
        
        /* Animation for features on scroll */
        @media (min-width: 768px) {
            .feature {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
                animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            }
            
            .feature:nth-child(1) { animation-delay: 0.1s; }
            .feature:nth-child(2) { animation-delay: 0.3s; }
            .feature:nth-child(3) { animation-delay: 0.5s; }
            
            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 767px) {
            .features-section {
                padding: 60px 0;
            }
            
            .feature {
                margin-bottom: 30px;
                padding: 40px 25px;
            }
            
            .feature:last-child {
                margin-bottom: 0;
            }
            
            .feature-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 25px;
            }
            
            .feature-icon img {
                width: 40px;
                height: 40px;
            }
            
            .feature h5 {
                font-size: 1.3rem;
            }
        }
        
        /* Add some floating elements for extra vibrancy */
        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            opacity: 0.1;
            animation: floatElement 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }
        
        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 15%;
            animation-delay: 4s;
            background: linear-gradient(135deg, var(--accent), var(--primary));
        }
        
        @keyframes floatElement {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

/* feature ends here */

/* top dest css starts here */

        .bg-light::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        h2 {
            font-weight: 800;
            color: var(--text-dark);
            font-size: 3rem;
            margin-bottom: 1rem !important;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .text-center p.lead {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        
        .dest-box {
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.8);
            overflow: hidden;
            background: var(--white);
            transition: var(--transition);
            box-shadow: var(--shadow);
            height: 100%;
            position: relative;
            backdrop-filter: blur(10px);
        }
        
        .dest-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(236, 72, 153, 0.03));
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }
        
        .dest-box:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        
        .dest-box:hover::before {
            opacity: 1;
        }
        
        .dest-box img {
            height: 240px;
            object-fit: cover;
            transition: var(--transition);
            width: 100%;
        }
        
        .dest-box:hover img {
            transform: scale(1.1);
        }
        
        .dest-inner {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
            background: var(--white);
        }
        
        .dest-inner div:first-child {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.2rem;
            position: relative;
        }
        
       
        
        .dest-inner div:last-child {
            text-align: right;
        }
        
        .dest-inner small {
            display: block;
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 4px;
            font-weight: 500;
        }
        
        .dest-inner span {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gg-600);
            background: linear-gradient(135deg, var(--gg-600), #047857);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .destination-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 3;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }
        
        .destination-popular {
            background: linear-gradient(135deg, var(--secondary), #db2777);
        }
        
        .destination-trending {
            background: linear-gradient(135deg, var(--accent), #7c3aed);
        }
        
        .view-deal-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 3;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }
        
        .dest-box:hover .view-deal-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .view-deal-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }
        
        .row-gap-4 {
            row-gap: 2rem !important;
        }
        
        /* Animation for cards */
        @media (min-width: 768px) {
            .dest-box {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
                animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            }
            
            .col-lg-4:nth-child(1) .dest-box { animation-delay: 0.1s; }
            .col-lg-4:nth-child(2) .dest-box { animation-delay: 0.2s; }
            .col-lg-4:nth-child(3) .dest-box { animation-delay: 0.3s; }
            .col-lg-4:nth-child(4) .dest-box { animation-delay: 0.4s; }
            .col-lg-4:nth-child(5) .dest-box { animation-delay: 0.5s; }
            .col-lg-4:nth-child(6) .dest-box { animation-delay: 0.6s; }
            
            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 767px) {
            h2 {
                font-size: 2.25rem;
            }
            
            .text-center p.lead {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .dest-inner {
                padding: 1.25rem;
            }
            
            .dest-inner div:first-child {
                font-size: 1.1rem;
            }
            
            .dest-inner div:first-child::before {
                left: -22px;
            }
            
            .dest-inner span {
                font-size: 1.3rem;
            }
            
            .dest-box img {
                height: 200px;
            }
        }
        
        
/* top dest css ends here */

/* flight offers starts here */

        
        .offer-box {
            padding: 1.5rem;
            border: 1.5px solid var(--gray-border);
            border-radius: var(--radius);
            display: flex;
            gap: 1.5rem;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            transition: var(--transition);
            box-shadow: var(--shadow);
            height: 100%;
        }
        
        .offer-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        
        .offer-dts {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex: 1;
        }
        
        .offer-img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--gray-light);
            border-radius: 10px;
            padding: 8px;
            transition: var(--transition);
        }
        
        .offer-box:hover .offer-img {
            background: var(--primary-light);
            transform: scale(1.1);
        }
        
        .offer-img img {
            max-width: 100%;
            height: auto;
            transition: var(--transition);
        }
        
        .offer-dest {
            flex: 1;
        }
        
        .dest-names {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }
        
        .dest-names span {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
        }
        
        .lr-icon {
            border: 1.5px solid var(--gray-border);
            width: 32px;
            height: 32px;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            background: var(--white);
            transition: var(--transition);
        }
        
        .offer-box:hover .lr-icon {
            border-color: var(--primary);
            background: var(--primary);
        }
        
        .lr-icon svg {
            color: var(--text-light);
            transition: var(--transition);
        }
        
        .offer-box:hover .lr-icon svg {
            color: var(--white);
        }
        
        .offer-dest small {
            color: var(--text-light);
            font-size: 0.875rem;
        }
        
        .offer-price {
            text-align: right;
            min-width: 120px;
        }
        
        .offer-price small {
            display: block;
            color: var(--text-light);
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
        }
        
        .price {
            color: var(--bb-600);
            font-weight: 700;
            font-size: 1.5rem;
            line-height: 1.2;
        }
        
        .row-gap-3 {
            row-gap: 1rem !important;
        }
        
        /* Animation for cards */
        @media (min-width: 768px) {
            .offer-box {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s ease forwards;
            }
            
            .col-lg-6:nth-child(1) .offer-box { animation-delay: 0.1s; }
            .col-lg-6:nth-child(2) .offer-box { animation-delay: 0.2s; }
            .col-lg-6:nth-child(3) .offer-box { animation-delay: 0.3s; }
            .col-lg-6:nth-child(4) .offer-box { animation-delay: 0.4s; }
            .col-lg-6:nth-child(5) .offer-box { animation-delay: 0.5s; }
            .col-lg-6:nth-child(6) .offer-box { animation-delay: 0.6s; }
            
            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .offer-dts {
                gap: 1rem;
            }
            
            .dest-names {
                gap: 0.75rem;
            }
            
            .dest-names span {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 767px) {
            h2 {
                font-size: 1.75rem;
            }
            
            .offer-box {
                padding: 1.25rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .offer-dts {
                width: 100%;
            }
            
            .offer-price {
                text-align: left;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .price {
                font-size: 1.25rem;
            }
            
            .dest-names {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .lr-icon {
                align-self: center;
                transform: rotate(90deg);
            }
        }

/* flight offers ends here */













.testimonials-bg { background: var(--gg-700);}

.hero-section h1 { color: #fff; }








.review-box { background: #fff; padding:10px; border-radius: 4px; width: 100%; min-height: 190px; } 
.rating-starts { max-width: 110px; margin-bottom: 10px; }

.review-box small { display: flex; align-items: center; gap:5px; opacity: .6;}

/* footer css startshere */

footer {
            background: var(--bb-950);
            color: var(--white);
        }
        
        footer h5 {
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            font-weight: 600;
            color: var(--white);
            position: relative;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        footer ul {
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            list-style: none;
            padding: 2px 0;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            display: block;
            padding: 8px 0;
            text-decoration: none;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            transition: var(--transition);
            border-radius: 4px;
        }
        
        footer ul li a:hover {
            color: var(--white);
            transform: translateX(4px);
        }
        
        footer .contact-ul li a {
            align-items: flex-start;
            padding: 10px 0;
        }
        
        footer ul li a span {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        footer ul li a:hover span {
            background: var(--primary);
            transform: scale(1.05);
        }
        
        footer ul li a small {
            color: var(--bb-400);
            font-size: 0.75rem;
            display: block;
            margin-bottom: 2px;
            font-weight: 500;
        }
        
        footer ul li a p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.4;
            color: var(--white);
        }
        
        footer .contact-ul li a div:last-child {
            flex: 1;
        }
        
        footer p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .copy-top {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }
        
        .copy-top p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }
        
        /* Logo styling */
        footer .mb-4 {
            margin-bottom: 1.5rem !important;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            footer .row > div {
                margin-bottom: 2rem;
            }
            
            footer .row > div:last-child {
                margin-bottom: 0;
            }
        }
        
        @media (max-width: 767px) {
            footer h5 {
                margin-bottom: 1rem;
            }
            
            footer ul li a {
                padding: 6px 0;
            }
            
            .contact-ul li a {
                align-items: flex-start;
            }
        }
        
        /* Animation for footer elements */
        @media (min-width: 768px) {
            footer .row > div {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s ease forwards;
            }
            
            footer .row > div:nth-child(1) { animation-delay: 0.1s; }
            footer .row > div:nth-child(2) { animation-delay: 0.2s; }
            footer .row > div:nth-child(3) { animation-delay: 0.3s; }
            footer .row > div:nth-child(4) { animation-delay: 0.4s; }
            
            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }


/* footer css ends here */

/* content css starts here */

 .content p {
           
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
       .content ul {
            padding-left: 0;
            margin-bottom: 2rem;
        }
        
      .content  li {
            list-style: none;
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-dark);
            line-height: 1.6;
           
        }
        
       .content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 1.25rem;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .title {
            color: var(--text-dark);
            font-weight: 700;
            font-size: 2.5rem;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-light);
            position: relative;
        }
        
        .title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--primary);
        }

        

        
        /* Responsive adjustments */
        @media (max-width: 768px) {
       
            
           .content p {
                font-size: 1rem;
            }
            
            .title {
                font-size: 1.3rem;
            }
            
           .content ul:not(:first-of-type),
           .content p:first-of-type {
                padding: 1.25rem;
            }
        }
        
        /* Animation for content */
        @media (min-width: 768px) {
            .content p, .content ul, .title {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s ease forwards;
            }
            
            .content p:nth-child(1) { animation-delay: 0.1s; }
            .content p:nth-child(2) { animation-delay: 0.2s; }
            .content ul:nth-child(3) { animation-delay: 0.3s; }
            .title:nth-child(4) { animation-delay: 0.4s; }
            .content p:nth-child(5) { animation-delay: 0.5s; }
            .title:nth-child(6) { animation-delay: 0.6s; }
            .content ul:nth-child(7) { animation-delay: 0.7s; }
            .title:nth-child(8) { animation-delay: 0.8s; }
            .content ul:nth-child(9) { animation-delay: 0.9s; }
            
            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

/* content css ends here */






.copy-top { border-top:1px solid #ffffff3d;}

.title { font-size: 1.2rem; font-weight: 700;}


.contact-box { border:1px solid #00000028; padding:30px; border-radius: 16px; min-height: 210px; text-align: center;}
.contact-box div { background: #17486333; width:50px; height:50px; margin:0px auto; display: flex; align-items: center; justify-content: center; border-radius: 100px;;}
.contact-box small {background: var(--bb-200); padding:0px 5px; display: inline-block; margin:10px 0px; border-radius: 100px;}
.contact-box p {}

/* about us css starts here */



/* About Page Specific Styles */
        .about .hero-section {
            min-height: 50vh;
            background: 
                linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%),
                url('images/about-us.webp') center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .about .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
        }

        .about .hero-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .about .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin: 0;
            animation: aboutFadeInUp 0.8s ease-out;
        }

        .about .breadcrumb {
            color: var(--primary-light);
            font-size: 1.1rem;
            text-align: center;
            margin-top: 1rem;
            animation: aboutFadeInUp 0.8s ease-out 0.2s both;
        }

        /* Content Section */
        .about .content-section {
            padding: 5rem 0;
            background: var(--white);
        }

        .about .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: aboutFadeInUp 0.8s ease-out forwards;
        }

        .about .content-section p:nth-child(1) { animation-delay: 0.1s; }
        .about .content-section p:nth-child(2) { animation-delay: 0.2s; }
        .about .content-section p:nth-child(3) { animation-delay: 0.3s; }
        .about .content-section p:nth-child(4) { animation-delay: 0.4s; }
        .about .content-section p:nth-child(5) { animation-delay: 0.5s; }
        .about .content-section p:nth-child(6) { animation-delay: 0.6s; }
        .about .content-section p:nth-child(7) { animation-delay: 0.7s; }

        .about .title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 3rem 0 1.5rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
            opacity: 0;
            animation: aboutFadeInUp 0.8s ease-out forwards;
        }

        .about .title:nth-of-type(1) { animation-delay: 0.4s; }
        .about .title:nth-of-type(2) { animation-delay: 0.8s; }

        /* Features Grid */
        .about .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .about .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-border);
            transition: var(--transition);
            opacity: 0;
            animation: aboutFadeInUp 0.8s ease-out forwards;
            text-align: center;
        }

        .about .feature-card:nth-child(1) { animation-delay: 0.5s; }
        .about .feature-card:nth-child(2) { animation-delay: 0.6s; }
        .about .feature-card:nth-child(3) { animation-delay: 0.7s; }

        .about .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .about .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .about .feature-icon svg {
            font-size: 1.5rem;
            color: var(--white);
        }

        .about .feature-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .about .feature-card p {
            color: var(--text-light);
            margin-bottom: 0;
            animation: none;
            opacity: 1;
        }

        /* Stats Section */
        .about .stats-section {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
            padding: 4rem 0;
            margin: 4rem 0;
            border-radius: var(--radius);
        }

        .about .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .about .stat-item {
            opacity: 0;
            animation: aboutFadeInUp 0.8s ease-out forwards;
        }

        .about .stat-item:nth-child(1) { animation-delay: 0.3s; }
        .about .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .about .stat-item:nth-child(3) { animation-delay: 0.5s; }
        .about .stat-item:nth-child(4) { animation-delay: 0.6s; }

        .about .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            line-height: 1;
        }

        .about .stat-label {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Mission Section */
        .about .mission-section {
            background: var(--bb-950);
            color: var(--white);
            padding: 4rem 0;
            border-radius: var(--radius);
            margin: 3rem 0;
        }

        .about .mission-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about .mission-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .about .mission-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .about .mission-text {
            font-size: 1.2rem;
            line-height: 1.7;
            color: var(--bb-400)!important;
        }

        /* Animations */
        @keyframes aboutFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about .hero-section h1 {
                font-size: 2.5rem;
            }

            .about .title {
                font-size: 1.8rem;
            }

            .about .content-section {
                padding: 3rem 0;
            }

            .about .feature-card {
                padding: 2rem;
            }

            .about .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about .stat-number {
                font-size: 2rem;
            }

            .about .mission-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .about .hero-section {
                min-height: 40vh;
            }

            .about .hero-section h1 {
                font-size: 2rem;
            }

            .about .features-grid {
                grid-template-columns: 1fr;
            }

            .about .stats-grid {
                grid-template-columns: 1fr;
            }

            .about .content-section p {
                font-size: 1rem;
            }
        }

        /* Container */
        .about .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

/* about css ends here */
/* contact css starts here */

 /* Contact Section Styles */
        .contact .py-5 {
            padding: 5rem 0;
            background: var(--gray-light);
        }

        .contact .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -1rem;
        }

        .contact .row-gap-4 {
            row-gap: 2rem;
        }

        .contact .col-lg-4,
        .contact .col-md-4,
        .contact .col-12 {
            padding: 0 1rem;
            flex: 0 0 100%;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .contact .col-md-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }

        @media (min-width: 992px) {
            .contact .col-lg-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }

        .contact .contact-box {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-border);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact .contact-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .contact .contact-box:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .contact .contact-box:hover::before {
            transform: scaleX(1);
        }

        .contact .contact-box > div:first-child {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .contact .contact-box:hover > div:first-child {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: scale(1.1);
        }

        .contact .contact-box svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
            transition: var(--transition);
        }

        .contact .contact-box:hover svg {
            color: var(--white);
        }

        .contact .contact-box small {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact .contact-box p {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.5;
        }

        /* Animation for contact boxes */
        .contact .contact-box {
            opacity: 0;
            transform: translateY(30px);
            animation: contactFadeInUp 0.8s ease-out forwards;
        }

        .contact .col-lg-4:nth-child(1) .contact-box { animation-delay: 0.1s; }
        .contact .col-lg-4:nth-child(2) .contact-box { animation-delay: 0.2s; }
        .contact .col-lg-4:nth-child(3) .contact-box { animation-delay: 0.3s; }

        @keyframes contactFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .contact .py-5 {
                padding: 3rem 0;
            }

            .contact .contact-box {
                padding: 2.5rem 1.5rem;
            }

            .contact .contact-box > div:first-child {
                width: 60px;
                height: 60px;
                margin-bottom: 1.2rem;
            }

            .contact .contact-box svg {
                width: 24px;
                height: 24px;
            }

            .contact .contact-box p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact .contact-box {
                padding: 2rem 1rem;
            }

            .contact .row {
                margin: 0 -0.5rem;
            }

            .contact .col-lg-4,
            .contact .col-md-4,
            .contact .col-12 {
                padding: 0 0.5rem;
            }
        }




.contact .contact-hero-section {
    min-height: 50vh;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%),
        url('images/contact-us.webp') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact .contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.contact .contact-hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.contact .contact-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    animation: contactFadeInUp 0.8s ease-out;
}

.contact .contact-hero-section p {
    font-size: 1.3rem;
    color: var(--primary-light);
    margin: 0;
    animation: contactFadeInUp 0.8s ease-out 0.2s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact .contact-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .contact .contact-hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact .contact-hero-section {
        min-height: 40vh;
    }
    
    .contact .contact-hero-section h1 {
        font-size: 2rem;
    }
}






/* contact css ends here */

/* privacy css starts here */

 /* Privacy Page Styles */
        .privacy .hero-section {
            min-height: 40vh;
            background: 
                linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%),
                url('images/privacy.webp') center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .privacy .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
        }

        .privacy .hero-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .privacy .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin: 0;
            animation: privacyFadeInUp 0.8s ease-out;
        }

        /* Content Section */
        .privacy .py-5 {
            padding: 5rem 0;
            background: var(--white);
        }

        .privacy .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .privacy p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: privacyFadeInUp 0.8s ease-out forwards;
        }

        .privacy p:nth-child(1) { animation-delay: 0.1s; }
        .privacy p:nth-child(2) { animation-delay: 0.2s; }
        .privacy p:nth-child(3) { animation-delay: 0.3s; }
        .privacy p:nth-child(4) { animation-delay: 0.4s; }
        .privacy p:nth-child(5) { animation-delay: 0.5s; }

        .privacy .title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 3rem 0 1.5rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
            opacity: 0;
            animation: privacyFadeInUp 0.8s ease-out forwards;
        }

        .privacy .title:nth-of-type(1) { animation-delay: 0.6s; }
        .privacy .title:nth-of-type(2) { animation-delay: 0.8s; }
        .privacy .title:nth-of-type(3) { animation-delay: 1.0s; }
        .privacy .title:nth-of-type(4) { animation-delay: 1.2s; }
        .privacy .title:nth-of-type(5) { animation-delay: 1.4s; }
        .privacy .title:nth-of-type(6) { animation-delay: 1.6s; }
        .privacy .title:nth-of-type(7) { animation-delay: 1.8s; }

        /* Lists */
        .privacy ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
            opacity: 0;
            animation: privacyFadeInUp 0.8s ease-out forwards;
        }

        .privacy ul:nth-of-type(1) { animation-delay: 0.7s; }

        .privacy li {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            position: relative;
        }

        .privacy li::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 0.8rem;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* Content Cards */
        .privacy .content-card {
            background: var(--gray-light);
            padding: 2rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
            opacity: 0;
            animation: privacyFadeInUp 0.8s ease-out forwards;
        }

        .privacy .content-card:nth-child(1) { animation-delay: 0.9s; }

        .privacy .content-card p {
            margin-bottom: 0;
            animation: none;
            opacity: 1;
        }

        /* Last Updated */
        .privacy .last-updated {
            background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            margin-top: 3rem;
            opacity: 0;
            animation: privacyFadeInUp 0.8s ease-out 2s both;
        }

        .privacy .last-updated p {
            margin: 0;
            color: var(--text-dark);
            font-weight: 600;
            animation: none;
            opacity: 1;
        }

        /* Animations */
        @keyframes privacyFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy .hero-section h1 {
                font-size: 2.5rem;
            }

            .privacy .title {
                font-size: 1.6rem;
            }

            .privacy .py-5 {
                padding: 3rem 0;
            }

            .privacy p {
                font-size: 1rem;
            }

            .privacy li {
                font-size: 1rem;
            }

            .privacy .content-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .privacy .hero-section {
                min-height: 30vh;
            }

            .privacy .hero-section h1 {
                font-size: 2rem;
            }

            .privacy .container {
                padding: 0 1rem;
            }

            .privacy ul {
                padding-left: 1.5rem;
            }

            .privacy li::before {
                left: -1rem;
            }
        }

/* privacy css ends here */

/* terms css starts here */
/* Terms Page Styles (Same as Privacy) */
        .terms .hero-section {
            min-height: 40vh;
            background: 
                linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%),
                url('images/privacy.webp') center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .terms .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
        }

        .terms .hero-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .terms .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin: 0;
            animation: termsFadeInUp 0.8s ease-out;
        }

        /* Content Section */
        .terms .py-5 {
            padding: 5rem 0;
            background: var(--white);
        }

        .terms .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .terms p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: termsFadeInUp 0.8s ease-out forwards;
        }

        .terms p:nth-child(1) { animation-delay: 0.1s; }
        .terms p:nth-child(2) { animation-delay: 0.2s; }
        .terms p:nth-child(3) { animation-delay: 0.3s; }
        .terms p:nth-child(4) { animation-delay: 0.4s; }
        .terms p:nth-child(5) { animation-delay: 0.5s; }

        .terms .title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 3rem 0 1.5rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
            opacity: 0;
            animation: termsFadeInUp 0.8s ease-out forwards;
        }

        .terms .title:nth-of-type(1) { animation-delay: 0.6s; }
        .terms .title:nth-of-type(2) { animation-delay: 0.8s; }
        .terms .title:nth-of-type(3) { animation-delay: 1.0s; }
        .terms .title:nth-of-type(4) { animation-delay: 1.2s; }
        .terms .title:nth-of-type(5) { animation-delay: 1.4s; }
        .terms .title:nth-of-type(6) { animation-delay: 1.6s; }
        .terms .title:nth-of-type(7) { animation-delay: 1.8s; }

        /* Lists */
        .terms ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
            opacity: 0;
            animation: termsFadeInUp 0.8s ease-out forwards;
        }

        .terms ul:nth-of-type(1) { animation-delay: 0.7s; }

        .terms li {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            position: relative;
        }

        .terms li::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 0.8rem;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* Content Cards */
        .terms .content-card {
            background: var(--gray-light);
            padding: 2rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
            opacity: 0;
            animation: termsFadeInUp 0.8s ease-out forwards;
        }

        .terms .content-card:nth-child(1) { animation-delay: 0.9s; }

        .terms .content-card p {
            margin-bottom: 0;
            animation: none;
            opacity: 1;
        }

        /* Last Updated */
        .terms .last-updated {
            background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            margin-top: 3rem;
            opacity: 0;
            animation: termsFadeInUp 0.8s ease-out 2s both;
        }

        .terms .last-updated p {
            margin: 0;
            color: var(--text-dark);
            font-weight: 600;
            animation: none;
            opacity: 1;
        }

        /* Animations */
        @keyframes termsFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .terms .hero-section h1 {
                font-size: 2.5rem;
            }

            .terms .title {
                font-size: 1.6rem;
            }

            .terms .py-5 {
                padding: 3rem 0;
            }

            .terms p {
                font-size: 1rem;
            }

            .terms li {
                font-size: 1rem;
            }

            .terms .content-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .terms .hero-section {
                min-height: 30vh;
            }

            .terms .hero-section h1 {
                font-size: 2rem;
            }

            .terms .container {
                padding: 0 1rem;
            }

            .terms ul {
                padding-left: 1.5rem;
            }

            .terms li::before {
                left: -1rem;
            }
        }
/* terms css ends here */