/* Poori website ke text par yahi font apply karne ke liye */
html, body {
    font-family: 'Cinzel', serif !important;
}

/* Agar aap chahte hain ke headings thodi bold aur wide hon (jaise logo mein hain) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase; /* Taake capital letters mein aaye */
    letter-spacing: 1px;       /* Letters ke darmiyan halka sa gap */
}



:root {
    --black: #000000;
    --gold: #D4AF37;
    --gold-light: #F9E79F;
    --gold-dark: #B8860B;
    --gray-bg: #111111;
    --card-bg: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--black);
    color: #ffffff;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.gold-text {
    color: var(--gold);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: #000;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* Hero Section with Background Image */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title .gold-text {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}

/* Gradient Background Sections */
.gradient-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Pattern Background */
.pattern-bg {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="%23D4AF37" d="M20,20 L30,20 L25,30 Z M50,20 L60,20 L55,30 Z M80,20 L90,20 L85,30 Z M35,50 L45,50 L40,60 Z M65,50 L75,50 L70,60 Z M20,80 L30,80 L25,90 Z M50,80 L60,80 L55,90 Z M80,80 L90,80 L85,90 Z"/></svg>');
    background-repeat: repeat;
    position: relative;
}

/* Country Cards */
.country-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.2);
    cursor: pointer;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 35px rgba(0,0,0,0.5);
}

.country-card-img {
    height: 220px;
    overflow: hidden;
}

.country-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.country-card:hover .country-card-img img {
    transform: scale(1.1);
}

.country-card-content {
    padding: 20px;
    text-align: center;
}

.country-card-content i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.country-card-content h5 {
    font-weight: 700;
    margin: 10px 0;
}

.country-card-content p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 25px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
}

/* Feature Cards */
.feature-card {
    background: rgba(17,17,17,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.3s;
    border: 1px solid rgba(212,175,55,0.2);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(17,17,17,0.95);
}

.feature-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Testimonials Swiper */
.testimonials-section {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(17,17,17,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.testimonial-card i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-country {
    font-size: 0.85rem;
    color: var(--gold);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.text-gold {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    section { padding: 60px 0; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero { min-height: 70vh; }
    section { padding: 50px 0; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
    .country-card-img { height: 180px; }
    section { padding: 40px 0; }
    .feature-card { padding: 25px; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Floating animation for icons */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}




/* Force remove any background from dropdown countries submenu */
.navbar .nav-link.dropdown-toggle {
    background: transparent !important;
    background-color: transparent !important;
}

.navbar .nav-link.dropdown-toggle::after {
    display: inline-block !important;
    content: "▼" !important;
    font-family: "Font Awesome 6 Free", "Segoe UI", sans-serif !important;
    border: none !important;
    background: transparent !important;
    color: #D4AF37 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    vertical-align: middle !important;
    width: auto !important;
    height: 10px !important;
}

/* Hide default bootstrap arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Add custom arrow for all dropdowns */
.dropdown-toggle:not(.no-arrow)::before {
    display: none;
}
















/* Hero image floating animation 
.floating {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}


.hero .img-fluid {
    border: 2px solid rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

.hero .img-fluid:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

*/










/* Animated Scene Container */
.animated-scene {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pakistani Students Image */
.students-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid var(--gold);
}

.students-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.students-image:hover img {
    transform: scale(1.05);
}

/* Rotating Globe */
.globe-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--gold);
    z-index: 3;
    animation: rotateGlobe 8s linear infinite;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

/* Moving Airplane */
.airplane-icon {
    position: absolute;
    bottom: 30px;
    left: -50px;
    font-size: 2.5rem;
    color: var(--gold);
    z-index: 3;
    animation: flyAcross 6s linear infinite;
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.5));
}

/* Floating Books */
.book-icon {
    position: absolute;
    font-size: 1.8rem;
    color: var(--gold-light);
    z-index: 3;
    animation: floatBook 3s ease-in-out infinite;
}

.book-1 {
    top: 60px;
    left: 30px;
    animation-delay: 0s;
}

.book-2 {
    bottom: 80px;
    right: 30px;
    font-size: 2rem;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes rotateGlobe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes flyAcross {
    0% {
        left: -50px;
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        left: 50%;
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(5deg);
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes floatBook {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .animated-scene {
        height: 400px;
    }
    
    .globe-icon {
        font-size: 3rem;
        top: 10px;
        right: 10px;
    }
    
    .airplane-icon {
        font-size: 2rem;
    }
    
    .book-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .animated-scene {
        height: 350px;
    }
}





/* For custom dots */
.testimonials-section .swiper-pagination-bullets {
    margin-top: 25px !important;
    position: relative !important;
    bottom: auto !important;
}



.text-black-50 {
    color: rgb(5 5 5) !important;
}

/*.px-5 {
    background-color: #000 !important;
}
.px-5:hover {
    background-color: transparent;
    border: 1px groove #000;
}*/





/* Call to Action Button - Black background by default */
.gradient-bg .btn-dark,
.btn-dark {
    background-color: #000000 !important;
    border: 2px solid #000000 !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

/* On hover - Transparent background with gold border */
.gradient-bg .btn-dark:hover,
.btn-dark:hover {
    background-color: transparent !important;
    border: 2px groove #000 !important;
    color: #000 !important;
    transform: translateY(-3px);
}

/* Remove grey background that Bootstrap adds */
.btn-dark:focus,
.btn-dark:active,
.btn-dark:focus-visible {
    background-color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn-dark:hover:focus {
    background-color: transparent !important;
    border-color: var(--gold) !important;
}


