/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-dark: #0A1F44;
    --primary-light: #f8fafc;
    --accent-gold: #D4AF37;
    --text-light: #e5e7eb;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Custom Bootstrap Utilities */
.z-fixed {
    z-index: 1050 !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-12 {
    z-index: 12 !important;
}

.padb-10 {
    padding-bottom: 10px;

}
.padb-20 {
    padding-bottom: 20px;

} 
.padb-40 {
    padding-bottom: 40px;

} 
.marb{
    margin-bottom:10px;
}
.marb-20{
    margin-bottom:20px;
}

.h-navbar {
    height: 5rem;
}

.max-w-7xl {
    max-width: 80rem !important;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-xl {
    max-width: 36rem;
}

.object-cover {
    object-fit: cover !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.space-y-4>*+* {
    margin-top: 1rem !important;
}

.space-y-6>*+* {
    margin-top: 1.5rem !important;
}

.transition-all {
    transition: all 0.3s ease !important;
}

.duration-300 {
    transition-duration: 300ms !important;
}

.duration-500 {
    transition-duration: 500ms !important;
}

.rounded-3xl {
    border-radius: 1.5rem !important;
}

.lh-1 {
    line-height: 1 !important;
}

.tracking-3px {
    letter-spacing: 3px;
}

.tracking-4px {
    letter-spacing: 4px;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-yellow-400 {
    color: #D4AF37 !important;
}

.text-yellow-500 {
    color: #D4AF37 !important;
}

.text-gray-200 {
    color: #e5e7eb !important;
}

.text-gray-300 {
    color: #d1d5db !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.text-gray-500 {
    color: #6b7280 !important;
}

.text-gray-600 {
    color: #4b5563 !important;
}

.bg-dark-blue {
    background-color: #0A1F44 !important;
}

.bg-light-gray {
    background-color: #f8fafc !important;
}

.bg-dark {
    background-color: #07152d !important;
}

.btn-warning {
    background-color: #FFD700 !important;
    border-color: #FFD700 !important;
    color: black !important;
}

.btn-warning:hover {
    background-color: #FFC700 !important;
    border-color: #FFC700 !important;
}

/* Navbar */

.navbar {
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 0 10px 0 10px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-link {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 17px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #D4AF37;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* Sticky Navbar */

.sticky-nav {

    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

}


#aboutDropdown{
    width:220px;
    height: auto;
    background-color:#f3f3f3;
    padding: 20px 20px 20px 20px;
}

#aboutDropdown a{
    padding: 10px 10px 10px 10px;
}
/* .group:hover .group-hover\:flex {
    display: flex;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

} */

/* Mobile Links */

.mobile-link {
    display: block;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.mobile-link:hover {
    color: #D4AF37;
}

/* Hero */

.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.8),
            rgba(61, 61, 61, 0.85)),
        url('../images/hero.jpg');

    background-size: cover;
    background-position: bottom;
}

.hero-overlay {
    background:
        radial-gradient(circle at top right,
            rgba(212, 175, 55, 0.25),
            transparent 30%);
}

.hero-image {

    /* width: 500px;

    max-width: 550px;

    height: 425px; */
    

    object-fit: cover;

    margin-top: 55px;

    border: 4px solid rgba(255, 255, 255, 0.1);

}

.hero-glow {
    position: absolute;
    width: 320px;
    height: 250px;
    background: rgba(212, 175, 55, 0.35);
    filter: blur(100px);
    border-radius: 50%;
}

/* Responsive */

@media(max-width:768px) {

    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

}

/* ================= TRUST SECTION ================= */

.trust-card {

    background: white;

    border: 2px solid transparent;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.06);

}

.trust-card:hover {

    transform: translateY(-10px);

    border-color: #0A1F44;

    box-shadow:
        0 20px 40px rgba(212, 175, 55, 0.2);

}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    color: #D4AF37;
    font-size: 32px;
}

.trust-card h3 {
    font-size: 42px;
    color: #0A1F44;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-card p {
    color: #0A1F44;
    font-size: 17px;
}

/* ================= ABOUT SECTION ================= */

.section-tag {
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.about-main-img {
    position: relative;
    z-index: 2;
}

.about-small-img {
    position: absolute;
    width: 240px;
    border-radius: 24px;
    bottom: -40px;
    right: -30px;
    border: 6px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #F8FAFC ;
    padding: 18px 22px;
    border: 2px solid rgb(222, 222, 222);
    border-radius: 16px;
    transition: 0.3s;
}

.feature-box:hover {
    background: #1E293B;
    transform: translateY(-5px);
    color:white;
}

.feature-box i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #D4AF37;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive */

@media(max-width:992px) {

    .about-small-img {
        display: none;
    }

}


/* ================= SERVICES SECTION ================= */

.service-card {
    background: #efeeee;
    border-radius: 28px;
    border : 2px solid #d8d8d8;
    padding: 40px 32px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background: #D4AF37 ;
    transition: 0.5s;
    z-index: 1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #6c6c6c;
}

.service-card * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: 0.4s;
}

.service-icon i {
    font-size: 34px;
    color: #D4AF37;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 18px;
    transition: 0.4s;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
    transition: 0.4s;
}

.service-card:hover h3,
.service-card:hover p ,
.service-card:hover i{
    color: #000000;
}


.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.50);
}

.service-title-container{
    max-width: 896px;

}

/* ================= COUNTRIES SECTION ================= */

.country-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    height: 450px;

    cursor: pointer;

    transition: all 0.45s ease;

    border: 1px solid transparent;

}

.country-card:hover {

    transform: translateY(-12px);

    border-color: #D4AF37;

    box-shadow:
        0 25px 60px rgba(212,175,55,0.22);

}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.country-card:hover img {
    transform: scale(1.1);
}

.country-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(10, 31, 68, 0.95),
            rgba(10, 31, 68, 0.2));

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.country-overlay h3 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.country-overlay p {
    color: #e5e7eb;
    line-height: 1.7;
}

/* ================= PROCESS SECTION ================= */

/* .process-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #e5e7eb;
}

.process-card:hover {
    transform: translateY(-12px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
} */

/* ================= PROCESS SECTION ================= */

.process-card {

    background: #fefcf0;

    padding: 30px 30px;
   

    border-radius: 28px;

    position: relative;

    overflow: hidden;

    transition: all 0.45s ease;

    border: 2px solid rgba(214, 212, 212, 0.822);

}

.process-card:hover {

    transform: translateY(-12px);

    border-color: #D4AF37;

    box-shadow:
        0 25px 60px rgba(212,175,55,0.22);

}

.process-number {
    width: 80px;
    height: 80px;
    color: #ffffff;
    background: #D4AF37;
    border-radius: 24px;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s;
}

.process-card:hover .process-number {
    background: #D4AF37;
    color: #ffffff;
}

.process-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.process-card p {
    color: #000;
    line-height: 1.8;
}

/* ================= UNIVERSITIES SECTION ================= */

.university-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.university-card:hover {

    transform: translateY(-12px);

    border-color: #D4AF37;

    box-shadow:
        0 25px 60px rgba(212,175,55,0.22);

}

.university-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

.university-card:hover img {
    transform: scale(1.08);
}

.university-content {
    padding: 35px;
}

.country-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.university-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 18px;
}

.university-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 24px;
}

.university-content a {
    color: #0A1F44;
    font-weight: 600;
    transition: 0.3s;
}

.university-content a:hover {
    color: #D4AF37;
}

/* ================= TESTIMONIALS ================= */

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 28px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}

.testimonial-stars {
    color: #D4AF37;
    margin-bottom: 24px;
    font-size: 18px;
}

.testimonial-card p {
    color: #e5e7eb;
    line-height: 1.9;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.testimonial-user span {
    color: #D4AF37;
    font-size: 14px;
}

/* ================= CONTACT ================= */

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateX(10px);
    background: #0A1F44;
}

.contact-box:hover h4,
.contact-box:hover p {
    color: white;
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-box h4 {
    font-size: 20px;
    color: #0A1F44;
    margin-bottom: 6px;
    transition: 0.3s;
}

.contact-box p {
    color: #6b7280;
    transition: 0.3s;
}

.contact-form {
    background: #f8fafc;
    padding: 45px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-input {
    width: 100%;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
}

.form-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* ================= FOOTER ================= */

.footer-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #ffffff;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 6px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover {
    background: #D4AF37;
    color: black;
    transform: translateY(-5px);
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 999px;
    border: none;
    outline: none;
}



/* WhatsApp */

.whatsapp-btn {

    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 18px;
    height: 18px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;

}

.whatsapp-btn:hover {

    transform: scale(1.1);

}

/* Scroll Top */

#scrollTopBtn {

    position: fixed;
    bottom: 25px;
    right: 600px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #d4af37ab;
    color: rgb(41, 41, 41);
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: 0.3s;

}

#scrollTopBtn:hover {

    transform: translateY(-5px);

}



/* ================= FLOATING ACTION BUTTONS ================= */

.floating-btns {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    animation: floatBounce 2s infinite;
}

/* Bounce Animation */
@keyframes floatBounce {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

/* WhatsApp - Green */
.float-whatsapp {
    background: #25D366;
}

.float-whatsapp:hover {
    background: #1ebe5d;
}

/* Contact - Dark Blue (brand color) */
.float-contact {
    background: #0A1F44;
}

.float-contact:hover {
    background: #0e2c5f;
    color: #fff;
}

html {

    scroll-behavior: smooth;

}

/* Premium Glow */

.glow-btn {

    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);

}

img {

    transition: 0.5s;

}

img:hover {

    transform: scale(1.02);

}

.consultation-btn {

    background: #D4AF37;
    color: black;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    min-width: 230px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

.consultation-btn:hover {

    background: #f5c542;
    transform: scale(1.05);

}

.apply-btn {

    background: #D4AF37;
    color: black;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;

}

.apply-btn:hover {

    background: #f5c542;

}

.explore-btn {

    border: 2px solid white;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;

}

.explore-btn:hover {

    background: white;
    color: black;

}


/* .image-wrapper {

    padding-left: 80px;
    padding-right: 80px;

} */

.paddinglr {

    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;

}

.paddfoot{
      padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    
}

.padsmlr{
    padding:10px 10px 10px 10px;
}


.paddmob{
    padding:2px 2px 0px 3px;
}


/* .discover-btn {

    background: #D4AF37;
    color: black;

    padding: 18px 40px;

    border-radius: 50px;

    font-weight: 600;

    display: inline-block;

    transition: 0.3s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

} */

/* .applyexplore-btn{

    padding:10px 22px;
    border-radius:50px;

} */

.hero-tagline {

    text-transform: uppercase;

    letter-spacing: 4px;

    color: #D4AF37;

    font-weight: 600;

    margin-bottom: 20px;
    margin-top: 100px;

}

.contact-btn {
    padding: 8px 16px 8px 16px;
}

.marbttm {
    margin-bottom: 18px;
}

.marbttm2 {
    margin-bottom: 20px;
}
.martop {
    margin-top: 12px;
}

.marfoot{
    margin-top:48px;
}

.padtp{
    padding-top:20px;
}
.padtp{
    padding-bottom:30px;
}

.marrigh{
    margin-right: 10px;
}

.marleft{
    margin-left:10px;
}

.discover-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #D4AF37;
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    box-shadow:
        0 10px 30px rgba(10,31,68,0.10);

}

.discover-btn:hover {

    background: #deb739;
    color: #000;
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(212,175,55,0.30);

}




/* Footer Contact */

.footer-contact li a {

    display: flex;

    align-items: center;

    gap: 14px;

    transition: all 0.35s ease;

}

.footer-contact-icon {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.12);

    color: #D4AF37;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

    transition: all 0.35s ease;

    flex-shrink: 0;

}

.footer-contact li a:hover .footer-contact-icon {

    background: #D4AF37;

    color: #07152d;

    transform: scale(1.08);

}

.footer-contact li a:hover {

    transform: translateX(6px);

}

.footimghad{
    height:100px;
    width:210px;
}



