
        :root {
            --primary-color: #1e40af;
            --secondary-color: #3b82f6;
            --accent-color: #60a5fa;
            --dark-blue: #1e3a8a;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --border-color: #e5e7eb;
            --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --gradient-secondary: linear-gradient(135deg, #60a5fa, #93c5fd);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-outline {
            color: #ffffff;
            border: 2px solid #ffffff;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-outline-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn-outline-primary:hover::before {
            left: 0;
        }
        
        .btn-outline-primary:hover {
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            transition: all 0.3s ease;
            /*padding: 1rem 0;*/
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        /* Hero Section with Enhanced Animations 
        .hero {
            background: url(../images/iiamcollege.jpg) center/cover;

            min-height: 120vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 20px 0 20px;
            overflow: hidden;
        }
*/
        /* ================= HERO SECTION ================= */

.hero {
    position: relative;
    background-image: url('https://static.npfs.co/accounts/7023/documents/2026/3/30/64df8cf3d56b4ebc9b2a05a1add0499a_IIAM%20Landing%20Page%202%20(1)%20(1).png');
    /* background-size: cover; */       /* scales image */
    background-position: center;  /* keeps center visible */
    background-repeat: no-repeat;
    height: 140vh;
    /* full screen height */
    /* margin-top: 9%; */
}

/* Remove excessive overlay height issue */
.hero1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}
        

/* Remove excessive overlay height issue */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.25); */
}
        
       /* .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
            animation: heroGradient 8s ease-in-out infinite alternate;
        }*/

        /* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

    .hero {
        min-height: auto;     /* Remove fixed height */
        padding: 60px 0 30px;
        display: block;       /* Important */
    }
     .hero1 {
        min-height: auto;     /* Remove fixed height */
        padding: 60px 0 30px;
        display: block;       /* Important */
    }
    /* Make row vertical */
    .hero1 .row {
        flex-direction: column;
    }


    /* Make row vertical */
    .hero .row {
        flex-direction: column;
    }

    /* Add spacing */
    .hero-form-col {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    /* Make form full width on mobile */
    .booking-form {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    .hero-form-col {
        display: none !important;
    }
}
/* Hide mobile hero by default */
.hero1-mobile {
    display: none;
}

/* Show only on mobile */
@media (max-width: 991.98px) {
    .hero1-mobile {
        display: block;
    }
}
  /* ========== Medium Devices (Tablets) ========== */
@media (max-width: 991.98px) and (min-width: 768px) {
    .hero1 {
        min-height: 500PX;
        background-size: cover;
        background-position: center;
        padding: 50px 20px;
        margin-top: 80px;
    }
    .hero-form-col {
        display: block !important;   /* show form below on tablet */
        margin-top: 20px;
    }
    .hero-form-col.d-lg-block {
        display: none !important;    /* hide desktop form */
    }
}

/* ========== Small Devices (Mobile) ========== */
@media (max-width: 767.98px) {
    .hero1 {
        min-height: 260px;
        background-size: cover;
        background-position: center;
        padding: 40px 15px;
        margin-top:90px;
    }
    .hero-form-col {
        display: block !important;
        margin-top: 15px;
    }
    .hero-form-col.d-lg-block {
        display: none !important;
    }
}

/* ========== Extra Small Devices (Very Small Phones) ========== */
@media (max-width: 575.98px) {
    .hero1 {
        min-height: 250px;
        background-size: cover;
        background-position: center;
        padding: 30px 10px;
        margin-top:80px;
    }
    .hero-form-col {
        display: block !important;
        margin-top: 10px;
    }
    .hero-form-col.d-lg-block {
        display: none !important;
    }
}

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            font-size: 2rem;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
            font-size: 1.5rem;
        }
        
        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
            font-size: 1.8rem;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease;
            position: relative;
        }
        
        .typewriter {
            overflow: hidden;
            border-right: 3px solid var(--primary-color);
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease 0.3s both;
        }
        
        .hero-buttons {
            animation: slideInUp 1s ease 0.6s both;
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            animation: slideInUp 1s ease 0.9s both;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            display: block;
            animation: countUp 2s ease-out 1.5s both;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Booking Form Enhanced */
        .booking-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
            animation: slideInRight 1s ease 0.6s both;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-control {
            border-radius: 12px;
            border: 2px solid var(--border-color);
            padding: 15px 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
            transform: translateY(-2px);
        }
        
        /* Yacht Categories */
        .categories {
            padding: 10px 0;
            background: var(--light-gray);
        }
        
        .category-item {
            text-align: center;
            padding: 2rem 1rem;
            transition: transform 0.3s ease;
        }
        
        .category-item:hover {
            transform: translateY(-10px);
        }
        
        /* Enhanced Icon Animations */
        .category-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .category-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }
        
        .category-item:hover .category-icon::before {
            left: 100%;
        }
        
        .category-item:hover .category-icon {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
        }
        
        .category-item:hover .category-icon i {
            animation: bounce 0.6s ease;
        }
        
        /* Boat Rental Section */
        .boat-rental {
            padding: 80px 0;
            background: var(--dark-blue);
            color: white;
        }
        
        .boat-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: var(--text-dark);
        }
        
        .boat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }
        
        .boat-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .boat-info {
            padding: 2rem;
        }
        
        .boat-specs {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        /* Charter Section */
        .charter {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-card.featured {
            border: 3px solid var(--primary-color);
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        /* Updated FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 250, 252, 0.5) 100%);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .accordion-button {
            background: white;
            border: none;
            font-weight: 600;
            color: var(--text-dark);
            padding: 1.5rem 2rem;
            font-size: 1.1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .accordion-button::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::before {
            transform: scaleY(1);
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.02));
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: none;
            content: '\f285';
            font-family: 'bootstrap-icons';
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        
        .accordion-body {
            padding: 1.5rem 2rem 2rem;
            background: white;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* Enhanced Gallery Section */
        .gallery {
            padding: 100px 0;
            background: var(--dark-blue);
            color: white;
        }
        
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .gallery-item {
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 64, 175, 0.3), rgba(96, 165, 250, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }
        
        .gallery-item:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        /*.gallery-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            text-align: center;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }*/

        .gallery-box {
    text-align: center;
}

.gallery-title {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
}


        
        /* Enhanced Team Section */
        .team {
            padding: 100px 0;
            background: var(--light-gray);
        }
        
        .team-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover::before {
            transform: scaleX(1);
        }
        
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background-size: cover;
            background-position: center;
            border: 4px solid var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .team-card:hover .team-avatar {
            transform: scale(1.1);
            border-color: var(--primary-color);
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            transform: translateY(-3px) rotate(360deg);
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
        }
        
        .skill-bar {
            margin: 1rem 0;
            text-align: left;
        }
        
        .skill-name {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        
        .skill-progress {
            height: 6px;
            background: var(--border-color);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .skill-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 3px;
            transition: width 1s ease;
            width: 0;
        }
        
        /* Enhanced Blog Section */
        .blog {
            padding: 100px 0;
            background: white;
        }
        
        .blog-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .blog-filter {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-dark);
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .blog-filter.active,
        .blog-filter:hover {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .blog-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .blog-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 64, 175, 0.2), rgba(96, 165, 250, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .blog-card:hover .blog-image::before {
            opacity: 1;
        }
        
        .blog-content {
            padding: 2rem;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .read-time {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Testimonials Slider */
        .testimonials {
            padding: 100px 0;
            background: var(--dark-blue);
            color: white;
        }
        
        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }
        
        .swiper-slide {
            height: auto;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            text-align: center;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .stars {
            color: #fbbf24;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }
        
        .swiper-pagination {
            bottom: -50px;
        }
        
        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background: white;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            margin-top: -25px;
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
        }
        
        .accordion-button {
            background: var(--light-gray);
            border: none;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
        }
        
        /* Gallery */
        .gallery {
            padding: 80px 0;
            background: var(--dark-blue);
            color: white;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        /* Team Section */
        .team {
            padding: 10px 0;
            background: var(--light-gray);
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background-size: cover;
            background-position: center;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: var(--dark-blue);
            color: white;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        
        .stars {
            color: #fbbf24;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        /* Blog Section */
        .blog {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .blog-content {
            padding: 2rem;
        }
        
        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            /*padding: 4rem 0 2rem;*/
        }
        
        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .booking-form {
                margin-top: 380px;
                padding: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
                margin-bottom: 2rem;
            }
        }

        @keyframes heroGradient {
            0% { opacity: 0.1; }
            50% { opacity: 0.3; }
            100% { opacity: 0.1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--primary-color); }
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce {
            0%, 20%, 60%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            80% { transform: translateY(-5px); }
        }

/* Enhanced Team Section Styles */
.team-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.team-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.skill-bars {
    margin: 1.5rem 0;
}

.skill-bar {
    margin-bottom: 1rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.skill-percentage {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.skill-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 2s ease;
    width: 0;
}

.team-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Enhanced Testimonials Section Styles */
.testimonials-container {
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.author-info h6 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trip-info {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trip-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.testimonials-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .skill-bars {
        margin: 1rem 0;
    }
}

@media (max-width: 991.98px) {  /* Bootstrap lg breakpoint */
    .navbar-collapse {
        max-height: 80vh;   /* keep some space */
        overflow-y: auto;   /* enable vertical scrolling */
    }

    .navbar-nav {
        padding-bottom: 1rem; /* small padding for last item */
    }
}


/* Main Card */
.program-wrapper{
   
    margin:auto;
    display:flex;
    gap:50px;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    align-items:center;
}

/* LEFT CONTENT */
.left-content{
    flex:2;
}

.left-content h2{
    font-size:28px;
    margin-bottom:20px;
    color:#b51a35;
    text-align: left;
}
.left-content h1{
    font-size:38px;
    margin-bottom:20px;
    color:#163c77;
    text-align: center;
}

.left-content ul{
    padding-left:20px;
}

.left-content li{
    margin-bottom:12px;
    line-height:1.6;
    color:#444;
}

/* RIGHT SIDE PROGRAMS */
.right-programs{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
}

/* Top Button */
.top-btn{
    width:100%;
}

/* Bottom Row */
.bottom-row{
    width:100%;
    display:flex;
    gap:20px;
}

/* Common Button Style */
.program-btn{
    flex:1;
    padding:30px;
    text-align:center;
    background:#b51a35;
    border-radius:20px;
    font-size:26px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s ease;
    color:#fff;
}

.program-btn:hover{
    background:#163c77;
    color:red;
    transform:translateY(-6px);
}

.program-btn.active{
    background:#163c77;
    color:red;
}

/* Responsive */
@media(max-width:900px){
    .program-wrapper{
        flex-direction:column;
        padding:30px;
    }

    .bottom-row{
        flex-direction:column;
    }
}

.scholarship-section {
    padding: 10px 0;
    background: #f5f5f5;
}

.scholarship-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #1e3c8a, #2a52be);
    border-radius: 10px;
    overflow: hidden;
}

/* Left Image */
.scholarship-image {
    flex: 1;
}

.scholarship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Content */
.scholarship-content {
    flex: 1;
    padding: 60px;
    color: #fff;
}

.scholarship-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.scholarship-box {
    background: #ac223f;
    padding: 15px;
    font-size: 30px;
    font-weight: bold;
    border-radius: 8px;
    margin: 0 auto 25px;   /* <-- This centers it */
    display: table;        /* Better than inline-block for centering */
    color: #fff;
}

.scholarship-note {
    font-size: 16px;
    opacity: 0.9;
}

/* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¥ Responsive */
@media (max-width: 992px) {

    .scholarship-container {
        flex-direction: column;
        text-align: center;
    }

    .scholarship-content {
        padding: 40px 20px;
    }

    .scholarship-content h2 {
        font-size: 28px;
    }

    .scholarship-box {
        font-size: 24px;
        padding: 15px 20px;
    }
}

.criteria-btn {
    background: #ac1f40;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.criteria-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}


.table-container{
  width:100%;
  overflow-x:auto;
  background:#ffffff;
  padding:20px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

table{
  width:100%;
  min-width:1000px; /* important for horizontal scroll */
  border-collapse:collapse;
}

th{
  background:#dfe6ee;
  padding:14px;
  text-align:center;
  font-weight:600;
  border:1px solid #cfd6df;
}

td{
  padding:12px;
  text-align:center;
  border:1px solid #e0e6ed;
}

tr:nth-child(even){
  background:#f7f9fc;
}

h2{
  text-align:center;
  margin-bottom:20px;
}

@media (max-width:768px){
  table{
    min-width:800px;
  }
}




/* New Unique Wrapper */
.academic-table-wrapper{
  width:100%;
  overflow-x:auto;
  background:#ffffff;
  padding:20px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* New Unique Table Class */
.academic-table{
  width:100%;
  min-width:900px;
  border-collapse:collapse;
}

.academic-table th{
  background:#d9dee5;
  padding:14px;
  text-align:center;
  border:1px solid #cfd6df;
  font-weight:600;
}

.academic-table td{
  padding:14px;
  border:1px solid #e2e6ea;
  text-align:center !important;
}

.academic-table td:first-child{
  text-align:left;
}

.academic-table tr:nth-child(even){
  background:#f7f9fc;
}

/* Highlight Total Column */
.academic-table th:last-child,
.academic-table td:last-child{
  /*background:#d9dee5;*/
  font-weight:600;
  color:#003d66;
}

/* Mobile Responsive */
@media (max-width:768px){
  .academic-table{
    min-width:800px;
  }
}

.section-title{
  text-align:center;
  margin-bottom:20px;
}


/* Main Container */
.president-scholarship-section{
  width:100%;
  max-width:1500px;
  margin:40px auto;
}

/* Top Banner */
.ps-banner{
  background: linear-gradient(90deg, #0b1c3a, #1f2f4a);
  color:#ffffff;
  padding:30px 40px;
  border-left:6px solid #ffb400;
  font-size:20px;
  line-height:1.6;
  border-radius:4px;
}

/* Highlight Text */
.ps-highlight{
  color:#ffb400;
  font-weight:700;
}

.ps-amount{
  color:#ffb400;
  font-weight:700;
  font-size:22px;
}

/* Notes Section */
.ps-notes{
  margin-top:40px;
  padding-left:25px;
  border-left:4px solid #3c78d8;
}

.ps-notes ul{
  list-style:none;
  padding:0;
  margin:0;
}

.ps-notes li{
  margin-bottom:20px;
  font-size:17px;
  line-height:1.7;
  position:relative;
  padding-left:30px;
  color:#2f3e4e;
}

/* Custom Bullet */
.ps-notes li::before{
  content:"ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“Ãƒâ€šÃ‚Â±";
  position:absolute;
  left:0;
  top:0;
  color:#3c78d8;
  font-weight:bold;
}

/* Responsive Adjustments */
@media (max-width:768px){

  .ps-banner{
    padding:20px;
    font-size:16px;
  }

  .ps-amount{
    font-size:18px;
  }

  .ps-notes li{
    font-size:15px;
  }

}



/* ===== Section Background ===== */
.pgdm-placement-pro{
  padding:70px 20px;
  background:#ffffff;
  background-image: radial-gradient(#d32f2f 1px, transparent 1px);
  background-size:18px 18px;
  font-family: 'Segoe UI', sans-serif;
}

.pgdm-wrapper{
  max-width:1200px;
  margin:auto;
}

/* ===== Heading ===== */
.pgdm-heading{
  text-align:center;
  font-size:38px;
  font-weight:700;
  margin-bottom:60px;
}

/* ===== Stats Cards ===== */
.pgdm-stats-pro{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:70px;
}

.pgdm-stat-card{
  background:#f5f5f5;
  padding:30px 20px;
  border-radius:8px;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
  transition:0.3s;
}

.pgdm-stat-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.pgdm-stat-card i{
  font-size:28px;
  color:#c62828;
  margin-bottom:15px;
}

.pgdm-stat-number{
  font-size:24px;
  font-weight:700;
  color:#c62828;
  margin-bottom:6px;
}

.pgdm-stat-text{
  font-size:15px;
  color:#555;
}

/* ===== Recruiters Section ===== */
.pgdm-subheading{
  text-align:center;
  font-size:28px;
  margin-bottom:40px;
  font-weight:600;
}

.pgdm-logos{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border:1px solid #e0e0e0;
}

.pgdm-logo-box{
  background:#fafafa;
  border:1px dashed #e0e0e0;
  padding:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.pgdm-logo-box:hover{
  background:#ffffff;
  transform:scale(1.05);
}

.pgdm-logo-box img{
  max-width:140px;
  max-height:60px;
  object-fit:contain;
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .pgdm-stats-pro{
    grid-template-columns:repeat(2,1fr);
  }
  .pgdm-logos{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .pgdm-heading{
    font-size:26px;
  }
  .pgdm-stats-pro{
    grid-template-columns:1fr;
  }
  .pgdm-logos{
    grid-template-columns:1fr;
  }
}


.section-title{
    font-weight:700;
    color:#c1121f;
}

.process-card{
    background:#0b2c5f;
    color:#fff;
    border-radius:12px;
    padding:40px 25px;
    position:relative;
    transition:all 0.3s ease;
    height:100%;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.step-badge{
    position:absolute;
    top:-15px;
    left:20px;
    background:#f4b400;
    color:#000;
    padding:8px 15px;
    border-radius:8px;
    font-weight:600;
    font-size:14px;
}

.process-icon{
    font-size:48px;
    margin-bottom:20px;
    color:#f4b400;
}

.process-title{
    font-size:20px;
    font-weight:600;
    margin-top:10px;
}

@media(max-width:768px){
    .process-card{
        padding:30px 20px;
    }
}



*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.steps-section{
  padding:10px 10px;
 /* background:#f4f4f4;*/
}

.steps-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:30px;
}

/* First 3 cards */
.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3){
  grid-column: span 2;
}

/* Bottom 2 centered */
.step-card:nth-child(4){
  grid-column: 2 / span 2;
}

.step-card:nth-child(5){
  grid-column: 4 / span 2;
}

/* Card Styling */
.step-card{
  border:2px dashed #e74c3c;
  padding:35px 25px; /* smaller size */
  text-align:center;
  border-radius:8px;
  background:#fff;
  transition:0.3s ease;
}

.step-card:hover{
  transform:translateY(-6px);
}

.step-card h5{
  color:#c0392b;
  font-size:18px;
  margin-bottom:20px;
}

.step-card h3{
  color:#c0392b;
  font-size:22px;
  margin:15px 0;
  font-weight:600;
}

.step-card p{
  color:#555;
  font-size:14px;
  line-height:1.7;
}

/* Icon Styling */
.icon{
  margin-bottom:10px;
}

.icon svg{
  width:45px;
  height:45px;
  stroke:#c0392b;
}

/* ========================= */
/* Tablet */
/* ========================= */
@media (max-width:992px){

  .steps-container{
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card{
    grid-column: span 1 !important;
  }
}

.custom-eval{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.custom-eval .nums{
  font-weight:700;
  font-size:22px;
  color:#c0392b;
  line-height:1;
}

.custom-eval svg{
  width:30px;
  height:30px;
  stroke:#c0392b;
}
/* ========================= */
/* Mobile */
/* ========================= */
@media (max-width:768px){

  .steps-container{
    grid-template-columns: 1fr;
  }
}
