 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* Header */
        header {
            background: #fff;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo img {
    height: 48px;       /* control logo size */
    width: auto;        /* keep proportions */
    display: block;
}


        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #d4a520;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4a520, #f4c542);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .contact-btn {
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 32, 0.4);
        }

     
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
            padding: 160px 2rem 200px;
            text-align: center;
            overflow: hidden;
        }

        /* Decorative curved lines */
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -100px;
            width: 400px;
            height: 400px;
            border: 2px solid rgba(212, 165, 32, 0.1);
            border-radius: 50%;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            border: 2px solid rgba(212, 165, 32, 0.08);
            border-radius: 50%;
            z-index: 0;
        }

        /* Star decorations */
        .star-decoration {
            position: absolute;
            width: 50px;
            height: 50px;
            z-index: 1;
        }

        .star-1 {
            top: 12%;
            left: 8%;
            width: 45px;
            height: 45px;
        }

        .star-2 {
            bottom: 28%;
            right: 4%;
            width: 40px;
            height: 40px;
        }

        /* City Skyline */
        .city-skyline {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 350px;
            z-index: 1;
        }

        .skyline-svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #555;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }

        .btn-primary {
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(212, 165, 32, 0.4);
        }

        .btn-secondary {
            background: #fff;
            color: #d4a520;
            border: 2px solid #d4a520;
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            border-color: transparent;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 1.5rem 180px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .city-skyline,
            .skyline-svg {
                height: 250px;
            }

            .star-decoration {
                width: 30px;
                height: 30px;
            }

            .star-2 {
                bottom: 24%;
                right: 3%;
            }
        }
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d3250 100%);
            padding: 60px 2rem;
            color: #fff;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            background: linear-gradient(135deg, #f4c542 0%, #d4a520 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #ddd;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            padding: 100px 2rem;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s;
            border: 2px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 197, 66, 0.1), transparent);
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #f4c542;
            box-shadow: 0 15px 40px rgba(212, 165, 32, 0.15);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-card .btn {
            font-size: 0.95rem;
            padding: 0.8rem 1.8rem;
        }

        /* How We Support */
        .support-process {
            padding: 100px 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .process-card {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #f4c542;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
        }

        .process-card:hover {
            box-shadow: 0 8px 30px rgba(212, 165, 32, 0.2);
            transform: translateX(5px);
        }

        .process-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .process-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .process-card ul {
            list-style: none;
            color: #666;
        }

        .process-card ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .process-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #f4c542;
            font-weight: bold;
        }


     .about-home-section {
            padding: 100px 2rem;
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .about-home-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        /* Content Side */
        .about-home-content {
            padding-right: 2rem;
        }

        .about-tag {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: linear-gradient(135deg, rgba(244, 197, 66, 0.1) 0%, rgba(212, 165, 32, 0.1) 100%);
            color: #d4a520;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(212, 165, 32, 0.2);
        }

        .about-home-content h2 {
            font-size: 3.2rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .about-home-content h2 .highlight {
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-home-subtitle {
            color: #666;
            font-size: 1.25rem;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .about-home-description {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 2.5rem;
        }

        /* Stats Row */
        .about-stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
            padding: 2rem 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
        }

        .stat-box {
            text-align: center;
        }

        .stat-box h3 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.3rem;
            font-weight: 800;
        }

        .stat-box p {
            color: #666;
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* Key Points */
        .about-key-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }

        .key-point {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            border-radius: 12px;
            border: 1px solid #f0f0f0;
            transition: all 0.3s;
        }

        .key-point:hover {
            border-color: #f4c542;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(212, 165, 32, 0.1);
        }

        .key-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #f4c542 0%, #d4a520 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .key-point p {
            color: #333;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* CTA Button */
        .about-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 2.5rem;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            box-shadow: 0 5px 20px rgba(212, 165, 32, 0.3);
            transition: all 0.3s;
        }

        .about-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 165, 32, 0.4);
        }

        .about-cta-btn svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* Visual Side - 4 Image Grid Layout */
        .about-home-visual {
            position: relative;
            width: 100%;
            height: 580px;
        }

        /* Images Grid */
        .images-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            height: 100%;
            padding: 20px;
        }

        .grid-image {
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }

        .grid-image:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            z-index: 2;
        }

        .grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Individual Image Styling */
        .grid-image-1 {
            grid-column: 1;
            grid-row: 1;
            border-radius: 30px 0 0 0;
            border: 5px solid #fff;
        }

        .grid-image-2 {
            grid-column: 2;
            grid-row: 1;
            border-radius: 0 30px 30px 0;
            border: 5px solid #fff;
        }

        .grid-image-3 {
            grid-column: 1;
            grid-row: 2;
            border-radius: 0 0 0 30px;
            border: 5px solid #fff;
        }

        .grid-image-4 {
            grid-column: 2;
            grid-row: 2;
            border-radius: 30px 30px 30px 0;
            border: 5px solid #fff;
        }

        /* Decorative Dots Pattern */
        .decoration-dots-pattern {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 200px;
            height: 200px;
            background-image: radial-gradient(circle, #f4c542 3px, transparent 3px);
            background-size: 20px 20px;
            opacity: 0.4;
            z-index: 1;
        }

        .decoration-dots-pattern-2 {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background-image: radial-gradient(circle, #d4a520 3px, transparent 3px);
            background-size: 20px 20px;
            opacity: 0.4;
            z-index: 1;
        }

        /* Central Rotating Experience Badge */
        .experience-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            z-index: 10;
        }

        .badge-rotating-ring {
            position: absolute;
            inset: 0;
            animation: rotate 15s linear infinite;
        }

        .badge-outer-circle {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: conic-gradient(
                from 0deg,
                transparent 0deg,
                #f4c542 90deg,
                transparent 180deg,
                #d4a520 270deg,
                transparent 360deg
            );
            padding: 4px;
            animation: rotate 20s linear infinite;
        }

        .badge-middle-ring {
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 30px rgba(212, 165, 32, 0.3);
        }

        .badge-content {
            position: absolute;
            inset: 16px;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 50%, #e8b636 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 20px 60px rgba(212, 165, 32, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
            border: 4px solid #fff;
        }

        .badge-content h3 {
            font-size: 3.5rem;
            color: #fff;
            margin: 0;
            font-weight: 900;
            text-shadow: 0 3px 15px rgba(0,0,0,0.3);
            line-height: 1;
        }

        .badge-content p {
            font-size: 1rem;
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 5px 0 0 0;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        /* Rotating Dots Around Badge */
        .badge-orbit-dots {
            position: absolute;
            inset: -15px;
        }

        .orbit-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #f4c542, #d4a520);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(244, 197, 66, 0.6);
            border: 2px solid #fff;
        }

        .orbit-dot:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            animation: pulse 2s ease-in-out infinite;
        }

        .orbit-dot:nth-child(2) {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            animation: pulse 2s ease-in-out infinite 0.5s;
        }

        .orbit-dot:nth-child(3) {
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            animation: pulse 2s ease-in-out infinite 1s;
        }

        .orbit-dot:nth-child(4) {
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            animation: pulse 2s ease-in-out infinite 1.5s;
        }

        /* Decorative Background Circle */
        .decoration-background-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(244, 197, 66, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: pulse-bg 4s ease-in-out infinite;
        }

        /* Animations */
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0.7;
            }
        }

        @keyframes pulse-bg {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.6;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-home-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-home-content {
                padding-right: 0;
            }

            .about-home-content h2 {
                font-size: 2.5rem;
            }

            .about-home-visual {
                height: 500px;
            }

            .experience-badge {
                width: 160px;
                height: 160px;
            }

            .badge-content h3 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .about-home-section {
                padding: 60px 1.5rem;
            }

            .about-home-content h2 {
                font-size: 2rem;
            }

            .about-stats-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-key-points {
                grid-template-columns: 1fr;
            }

            .about-home-visual {
                height: 400px;
            }

            .images-grid {
                gap: 12px;
                padding: 15px;
            }

            .experience-badge {
                width: 130px;
                height: 130px;
            }

            .badge-content h3 {
                font-size: 2.5rem;
            }

            .badge-content p {
                font-size: 0.85rem;
            }

            .orbit-dot {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .about-home-visual {
                height: 350px;
            }

            .images-grid {
                gap: 8px;
                padding: 10px;
            }

            .experience-badge {
                width: 110px;
                height: 110px;
            }

            .badge-content h3 {
                font-size: 2rem;
            }

            .badge-content p {
                font-size: 0.75rem;
                letter-spacing: 1px;
            }
        }

        /* Study Fields */
        .study-fields {
            padding: 100px 2rem;
            background: #fff;
        }

        .fields-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .field-card {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #f0f0f0;
            transition: all 0.3s;
            cursor: pointer;
        }

        .field-card:hover {
            border-color: #f4c542;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(212, 165, 32, 0.15);
        }

        .field-card h3 {
            color: #1a1a2e;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .field-card p {
            color: #666;
            font-size: 0.95rem;
        }

  /* Study Destinations Section */
        .destinations {
            padding: 100px 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Carousel Container */
        .destinations-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 2rem 0;
        }

        .carousel-track {
            display: flex;
            gap: 2.5rem;
            animation: scroll-left 35s linear infinite;
            width: max-content;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .destination-card {
            position: relative;
            width: 420px;
            height: 550px;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
        }

        #destination-hover-bg{
            background-color: red !important;
        }

        .destination-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 60px rgba(212, 165, 32, 0.25);
        }

        /* Background Image - Clear without heavy overlay */
        .destination-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }

        .destination-card:hover .destination-bg {
            transform: scale(1.08);
        }

        /* Minimal gradient overlay - only 30% from bottom */
        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 35%;
            background: linear-gradient(
                to top,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.92) 25%,
                rgba(255, 255, 255, 0.5) 60%,
                transparent 100%
            );
            transition: height 0.4s ease;
        }

        .destination-card:hover .destination-overlay {
            height: 40%;
            background: linear-gradient(
                to top,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 0.94) 30%,
                rgba(255, 255, 255, 0.6) 70%,
                transparent 100%
            );
        }

        /* Content Container */
        .destination-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            z-index: 2;
        }

        /* Country Name */
        .country-name {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
        }

        .destination-card:hover .country-name {
            color: #d4a520;
            transform: translateX(5px);
        }

        /* Tagline */
        .country-tagline {
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            font-style: italic;
            text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
        }

        /* Golden separator line */
        .separator-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #d4a520, #f4c542);
            border-radius: 2px;
            margin-bottom: 1.5rem;
            transition: width 0.4s ease;
        }

        .destination-card:hover .separator-line {
            width: 100px;
        }

        /* Info Grid */
        .info-grid {
            display: grid;
            gap: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.1s;
        }

        .destination-card:hover .info-grid {
            opacity: 1;
            transform: translateY(0);
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            border-left: 3px solid #f4c542;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(212, 165, 32, 0.2);
            background: rgba(255, 255, 255, 0.98);
        }

        .info-icon {
            font-size: 1.6rem;
            min-width: 30px;
        }

        .info-text {
            flex: 1;
        }

        .info-label {
            font-size: 0.75rem;
            color: #d4a520;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.2rem;
        }

        .info-value {
            font-size: 0.95rem;
            color: #333;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Stagger animation for info items */
        .destination-card:hover .info-item:nth-child(1) {
            transition-delay: 0.15s;
        }

        .destination-card:hover .info-item:nth-child(2) {
            transition-delay: 0.2s;
        }

        .destination-card:hover .info-item:nth-child(3) {
            transition-delay: 0.25s;
        }

        /* Golden badge on top */
        .destination-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, #d4a520, #f4c542);
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.4);
            z-index: 3;
            transition: all 0.3s ease;
        }

        .destination-card:hover .destination-badge {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(212, 165, 32, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .destination-card {
                width: 380px;
                height: 520px;
            }
        }

        @media (max-width: 768px) {
            .destinations {
                padding: 60px 1.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .destination-card {
                width: 320px;
                height: 480px;
            }

            .country-name {
                font-size: 2.2rem;
            }

            .carousel-track {
                gap: 1.5rem;
            }
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 2rem;
            background: #fff;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            position: relative;
            border: 2px solid #f0f0f0;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            border-color: #f4c542;
            box-shadow: 0 10px 30px rgba(212, 165, 32, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 5rem;
            color: rgba(244, 197, 66, 0.2);
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: bold;
            color: #1a1a2e;
            margin-bottom: 0.3rem;
        }

        .testimonial-role {
            color: #d4a520;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #2d3250 100%);
            color: #fff;
        }

        .contact .section-title {
            color: #fff;
        }

        .contact .section-subtitle {
            color: #ddd;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info-card {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .contact-item {
            margin-bottom: 2rem;
        }

        .contact-item h3 {
            color: #f4c542;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .contact-item p {
            color: #ddd;
            line-height: 1.8;
        }

        .contact-item a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #f4c542;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 32, 0.5);
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 2.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .contact-form h3 {
            color: #f4c542;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #f4c542;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f4c542;
            background: rgba(255,255,255,0.15);
        }

        /* Footer */
        footer {
            background: #0a0a1a;
            color: #ddd;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #f4c542;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #f4c542;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 165, 32, 0.5);
        }