* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img{
    height: 50px;
    width: auto;
}

.logo span {
    color: #ff5e00;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    transition: 0.3s;
    padding-top: 10px;
}

nav a:hover {
    color: #FF5E00;
}

/* Mobile menu icon */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}


/* Hero Section */
.hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            width: 100%;
        }
        
        /* Carousel Styling */
        .carousel-item {
            height: 90vh;
            position: relative;
        }
        
        .hero-img {
            height: 100vh;
            width: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .carousel-caption.hero-caption {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-align: left;
            padding: 40px;
            background: rgba(10, 26, 74, 0.7);
            border-radius: 10px;
            max-width: 700px;
            left: 10%;
            right: auto;
            animation: fadeInUp  ease-out;
        }
        
        .hero-caption h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .hero-caption p {
            font-size: 1.4rem;
            color: #f0f0f0;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn-primary-custom{
            background-color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary-custom:hover {
            background-color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-indicators button {
            width: 12px !important;
            height: 12px !important;
            border-radius: 50%;
            margin: 0 8px !important;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
            opacity: 0.8;
        }
        
        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            background-size: 60%;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }
        
        .company-logo {
            position: absolute;
            top: 30px;
            left: 30px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .company-logo h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
            font-size: 1.8rem;
        }
        
        .company-logo span {
            color: var(--accent-color);
            font-weight: 800;
        }
        
        .services-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 1;
            background: rgba(255, 102, 0, 0.9);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Animation */
        
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-caption h1 {
                font-size: 2.8rem;
            }
            
            .carousel-caption.hero-caption {
                left: 5%;
                right: 5%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-caption h1 {
                font-size: 2.2rem;
            }
            
            .hero-caption p {
                font-size: 1.1rem;
            }
            
            .company-logo h2 {
                font-size: 1.4rem;
            }
            
            .services-badge {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-caption.hero-caption {
                padding: 25px;
            }
            
            .hero-caption h1 {
                font-size: 1.8rem;
            }
            
            .btn-primary-custom {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

/* About Section */
        .about-section {
            padding: 80px 0;
            
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--accent-color);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            opacity: 0.1;
        }
        
        .about-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary-color);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            opacity: 0.1;
        }
        
        .about-img-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .about-img-container:hover {
            transform: translateY(-10px);
        }
        
        .about-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-img-container:hover .about-img {
            transform: scale(1.05);
        }
        
        .about-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 58, 143, 0.8) 0%, transparent 100%);
            color: white;
            padding: 25px;
        }
        
        .about-img-text {
            font-size: 1.2rem;
            font-weight: 500;
            margin: 0;
        }
        
        .about-title {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 1px;
        }
        
        .about-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .about-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
        }
        
        .mission-statement {
            background: rgba(26, 58, 143, 0.05);
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        
        .mission-text {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin: 0;
            line-height: 1.6;
        }
        
        .about-highlights {
            margin-top: 30px;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .highlight-icon {
            width: 50px;
            height: 35px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1px;
            flex-shrink: 0;
        }
        
        .highlight-text {
            font-size: 1.1rem;
            color: #333;
        }
        
        .btn-about {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .btn-about:hover {
            background-color: #e55a00;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-title {
                font-size: 2.3rem;
            }
            
            .about-img {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .about-section {
                padding: 60px 0;
            }
            
            .about-title {
                font-size: 2rem;
            }
            
            .about-text {
                font-size: 1.05rem;
            }
            
            .about-img {
                height: 350px;
            }
            
            .about-img-overlay {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .about-title {
                font-size: 1.8rem;
            }
            
            .about-img {
                height: 300px;
            }
            
            .mission-statement {
                padding: 20px;
            }
            
            .mission-text {
                font-size: 1.1rem;
            }
        }


/* Services */
#services {
    padding: 60px 40px;
    background: #fffaf7;
    width: 100%;
    
}

.service-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    width: 32%;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 100%;
    border-radius: 10px;
}


/* Gallery Section Styling */


.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
}

.gallery-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 143, 0.9) 0%, transparent 100%);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-box:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-box {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-box {
        height: 180px;
    }
}


/* Contact */
.contact {
    padding: 60px 40px;
    background: #fffaf7;
    text-align: center;
}

.contact form {
    width: 60%;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}


/* Footer */
footer {
   
    background: #222;
    color: white;
    padding: 20px;
}
footer .address{
    text-align: start;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    margin-left: 4px;
}

.social-icons a {
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0dcaf0;
    transform: scale(1.2);
}

.social-icons .social-link {
    width: 40px;
    height: 40px;
    background: #ffffff22;
    border: 1px solid #ffffff44;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.social-icons .social-link:hover {
    background: #fff;
    color: #333;
    transform: translateY(-3px);
}

/* -------------------------------------------------
    RESPONSIVE CSS
--------------------------------------------------- */
@media(max-width: 900px) {
    .service-box {
        width: 48%;
    }

    .gallery-box {
        width: 48%;
    }

    .contact form {
        width: 90%;
    }
}

@media(max-width: 600px) {

    /* Mobile Navbar */
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    nav.open {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .service-box {
        width: 100%;
    }

    .gallery-box {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}

.hero-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-caption {
    bottom: 35%;
}

.hero-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-caption p {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .hero-caption {
        bottom: 25%;
    }

    .hero-caption h1 {
        font-size: 2rem;
    }

    .hero-caption p {
        font-size: 1rem;
    }
}

.icon-box {
    background: white;
    transition: 0.3s;
    border-radius: 10px;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.icon-box i.icon {
    font-size: 40px;
    color: #ff5722;
    /* your theme color */
}

/* Section Background */
.welcome-section {
    background: #f8f9fa;
    /* light grey background */
}

/* Icon Box */
.icon-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover Effect */
.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Style */
.icon-box i.icon {
    font-size: 45px;
    color: #ff5722;
    /* You can change theme color */
    margin-bottom: 10px;
}

/* Heading Style */
.icon-box h5 {
    font-weight: 600;
    margin-top: 12px;
    font-size: 18px;
    color: #333;
}

/* For Smaller Screens */
@media (max-width: 768px) {
    .icon-box {
        padding: 20px;
    }

    .icon-box i.icon {
        font-size: 38px;
    }

    .icon-box h5 {
        font-size: 16px;
    }
}

/* Section Background */
.welcome-section {
    background: #f8f9fa;
    /* light grey background */
}

/* Icon Box */
.icon-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover Effect */
.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Style */
.icon-box i.icon {
    font-size: 45px;
    color: #ff5722;
    /* You can change theme color */
    margin-bottom: 10px;
}

/* Heading Style */
.icon-box h5 {
    font-weight: 600;
    margin-top: 12px;
    font-size: 18px;
    color: #333;
}

/* For Smaller Screens */
@media (max-width: 768px) {
    .icon-box {
        padding: 20px;
    }

    .icon-box i.icon {
        font-size: 38px;
    }

    .icon-box h5 {
        font-size: 16px;
    }
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff5722;
    /* theme color */
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-section img {
    border-radius: 12px;
    transition: 0.3s;
}

/* Hover zoom effect */
.about-section img:hover {
    transform: scale(1.03);
}

.packages-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff5722;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.package-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

/* Hover Effect */
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.package-content h5 {
    font-weight: 700;
    color: #333;
}

.package-content p {
    color: #555;
    margin-bottom: 10px;
}

.btn-primary {
    background: #ff5722;
    border: none;
}

.btn-primary:hover {
    background: #e64a19;
}


.visa-marquee {
    background: #f8f9fa;
}

.client-img {
    height: 70px;
    width: auto;
    margin-right: 40px;
    object-fit: contain;
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Hover par rokne ka effect */
.marquee-content:hover {
    animation-play-state: paused;
}

.footer {
    background: #0d1b2a;
    color: #fff;
    padding: 40px 0 0;
    font-family: Arial;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #ffd700;
}

.footer-section p,
.footer-section a,
.footer-section li {
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
}

.footer-section a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 8px 0;
}

.social-icons a {
    font-size: 22px;
    margin-right: 15px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #444;
    font-size: 14px;
}

.gallery {
    padding: 50px 0;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
    color: #0d1b2a;
}

.gallery-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-box {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.testimonials-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-item .content h5 {
    font-size: 18px;
    font-weight: 600;
}

.testimonials-item p {
    font-size: 15px;
    color: #444;
}

.testimonials-item ul {
    padding: 0;
    margin-top: 10px;
}

.testimonials-item ul li {
    display: inline-block;
    color: #ffb400;
}

.section-title h2 span {
    color: #ff5722;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Oxygen:wght@300;400;700&display=swap');

html {
    font-family: "Oxygen", sans-serif;
    padding-top: 50px;
}

section {
    display: flex;
    width: 90%;
    margin: 0 auto;
}

section .card {
    margin: 10px;
    padding: 20px 30px 30px;
    background-color: #E7E7E7;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.quote {
    position: absolute;
    top: -33px;
    width: 50px;
}

.user {
    display: flex;
}

.user svg {
    width: 30px;
}

.name {
    padding-left: 30px;
}

.name p {
    margin: 0;
}

/**** ANIMATIONS ****/

@keyframes float {
    0% {
        width: 50px;
    }

    50% {
        width: 55px;
    }

    100% {
        width: 50px;
    }
}

@keyframes slide-in {
    from {
        transform: translateX(-50px);
    }

    to {
        transform: translateX(0);
    }
}

.quote {
    animation: slide-in 1s, float 5s infinite ease-in-out;
}

/* Gallery Image Box */
.gallery-box {
    width: 100%;
    height: 250px;
    /* All images same height */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* Image style */
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Important for equal size */
    transition: 0.4s ease;
}

/* Hover Zoom */
.gallery-box:hover img {
    transform: scale(1.1);
}

#contact .card {
    border-radius: 10px;
}

#contact iframe {
    border-radius: 10px;
}

.contact-box {
    height: 100%;
    min-height: 400px;
}

#contact iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ----- DONATION SECTION ----- */
.donation-section {
    background: #f8f9fa;
}

.donation-img-box {
    overflow: hidden;
    border-radius: 16px;
}

.donation-img {
    transition: 0.6s ease-in-out;
}

.donation-img-box:hover .donation-img {
    transform: scale(1.08);
}

.donation-content h3 {
    animation: fadeInDown 1s ease-in-out;
}

.donation-content p,
.donation-content ul,
.donation-contact {
    animation: fadeInUp 1.2s ease-in-out;
}

.donation-contact {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}