

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --accent-color: #f7931e;
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-2: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   GLASSMORPHISM NAVBAR
======================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 10px 50px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 1px;
}

.logo-highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
}

.menu-icon:hover {
    color: var(--primary-color);
}


/* ========================================
   HERO SECTION WITH ANIMATED SLIDER
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.carousel-item {
    height: 100vh;
    position: relative;
    
}

.hero-img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.carousel-caption.hero-caption {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    padding: 50px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%);
    border-radius: 20px;
    max-width: 700px;
    left: 10%;
    right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.hero-caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-caption .btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.hero-caption .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 100%;
    /* margin: 0 8px !important; */
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.carousel-indicators button.active {
    /* background: var(--gradient-1); */
    transform: scale(1.3);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(8, 7, 6, 0.8);
    border-radius: 100%;
    width: 55px;
    height: 55px;
    background-size: 50%;
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    /* background-color: var(--primary-color); */
    transform: scale(1.1);
}

.services-badge {
    position: absolute;
    bottom: 12%;
    right: 5%;
    z-index: 10;
    background: var(--gradient-1);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 30px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.05;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.1); opacity: 0.08; }
}

.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.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, 26, 46, 0.95) 0%, transparent 100%);
    padding: 40px 30px;
}

.about-img-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: white;
    margin: 0;
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gradient-1);
    color: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.floating-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.highlight-icon.pulse-animation {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
}

.highlight-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-1);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    color: white;
}


/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--gradient-1);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: 0.6s;
}

.service-card:hover .service-hover-effect {
    left: 100%;
}


/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 280px;
    cursor: pointer;
}

.gallery-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-box:hover::before {
    opacity: 0.7;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-box:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    display: block;
    animation: bounceIn 0.5s ease-out;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.testimonials-section .section-subtitle {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.testimonials-section .card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.testimonials-section .card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonials-section .quote {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.testimonials-section .quote path {
    fill: white;
}

.testimonials-section .user {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-section .user svg {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    padding: 8px;
}

.testimonials-section .user svg path {
    fill: var(--primary-color);
}

.testimonials-section .name {
    margin-left: 15px;
}

.testimonials-section .name p {
    margin: 0;
    font-style: normal;
}

.testimonials-section .name p strong {
    color: white;
    font-size: 1.1rem;
}

.testimonials-section .name .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-box {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-box .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.contact-box .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-box .btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}


/* ========================================
   FOOTER SECTION
======================================== */
footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

footer .address {
    text-align: start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.work-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 12px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons .social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media(max-width: 992px) {
    .hero-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption.hero-caption {
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-img {
        height: 400px;
    }
    
    .floating-badge {
        right: 10px;
    }
}

@media(max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        display: none;
        box-shadow: var(--shadow-lg);
        gap: 15px;
    }

    nav.open {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
    
    .hero-caption h1 {
        font-size: 2rem;
    }
    
    .hero-caption p {
        font-size: 1rem;
    }
    
    .carousel-caption.hero-caption {
        padding: 30px;
    }
    
    .services-badge {
        font-size: 0.85rem;
        padding: 12px 18px;
        bottom: 20px;
        right: 20px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .about-section,
    .services-section,
    .gallery-section,
    .testimonials-section,
    .contact-section {
        padding: 70px 0;
    }
    
    .about-img {
        height: 350px;
    }
    
    .floating-badge {
        top: 20px;
        right: 20px;
        padding: 18px 15px;
    }
    
    .floating-badge .years {
        font-size: 2rem;
    }
    
    .gallery-box {
        height: 220px;
    }
    
    .contact-box {
        padding: 30px 25px;
    }
}

@media(max-width: 576px) {
    .hero-caption h1 {
        font-size: 1.6rem;
    }
    
    .carousel-caption.hero-caption {
        padding: 25px 20px;
    }
    
    .hero-caption .btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .about-img {
        height: 280px;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .gallery-box {
        height: 180px;
    }
    
    .gallery-overlay i {
        font-size: 1.8rem;
    }
    
    .gallery-overlay span {
        font-size: 0.9rem;
    }
    
    .testimonials-section .card {
        padding: 35px 20px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Quote Animation */
.quote {
    animation: slideInQuote 1s ease-out, floatQuote 5s infinite ease-in-out 1s;
}

@keyframes slideInQuote {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatQuote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Hero Image Override */
.hero-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%);
}

/* Icon Box Welcome Section */
.welcome-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.icon-box {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box i.icon {
    font-size: 48px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.icon-box h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* About Title Override */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-section img {
    border-radius: 20px;
    transition: var(--transition);
}

.about-section img:hover {
    transform: scale(1.02);
}

/* Packages Section */
.packages-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.packages-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.package-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-content {
    padding: 25px;
}

.package-content h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.package-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Button Primary */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
    background: linear-gradient(135deg, #e55a25 0%, #e57f14 100%);
}


/* Visa Marquee Section */
.visa-marquee {
    background: var(--light-bg);
    padding: 40px 0;
}

.client-img {
    height: 70px;
    width: auto;
    margin-right: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.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(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* Additional Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
}

.footer-section p,
.footer-section a,
.footer-section li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 10px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

/* Gallery Override */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Testimonials Item Override */
.testimonials-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonials-item:hover {
    transform: translateY(-8px);
}

.testimonials-item .content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonials-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonials-item ul {
    padding: 0;
    margin-top: 15px;
}

.testimonials-item ul li {
    display: inline-block;
    color: var(--accent-color);
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* HTML Base */
html {
    font-family: "Poppins", sans-serif;
    padding-top: 80px;
    scroll-behavior: smooth;
}

/* Section Base */
section {
    width: 100%;
}

/* Testimonial Cards */
section .card {
    margin: 10px;
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: none;
    transition: var(--transition);
}

section .card:hover {
    transform: translateY(-8px);
}

.quote {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.quote path {
    fill: white;
}

.user {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.user svg {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.user svg path {
    fill: var(--primary-color);
}

.name {
    padding-left: 15px;
}

.name p {
    margin: 0;
    line-height: 1.4;
}

.name p strong {
    color: var(--secondary-color);
    font-size: 1.05rem;
}

/* Quote Animations */
.quote-1 {
    animation: slideInQuote 0.8s ease-out, floatQuote 4s infinite ease-in-out 0.8s;
}

.quote-2 {
    animation: slideInQuote 0.8s ease-out 0.2s backwards, floatQuote 4s infinite ease-in-out 1s;
}

.quote-3 {
    animation: slideInQuote 0.8s ease-out 0.4s backwards, floatQuote 4s infinite ease-in-out 1.2s;
}

/* Contact & Gallery Box Override */
.gallery-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-box:hover img {
    transform: scale(1.15);
}

#contact .card {
    border-radius: 20px;
    border: none;
}

#contact iframe {
    border-radius: 20px;
}

.contact-box {
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
}

#contact iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Donation Section */
.donation-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.donation-img-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.donation-img {
    transition: var(--transition);
}

.donation-img-box:hover .donation-img {
    transform: scale(1.05);
}

.donation-content h3 {
    font-family: 'Playfair Display', serif;
    animation: fadeInDown 1s ease-in-out;
}

.donation-content p,
.donation-content ul,
.donation-contact {
    animation: fadeInUp 1.2s ease-in-out;
}

.donation-contact {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Smooth Scroll Behavior */
* {
    scroll-margin-top: 100px;
}

/* Selection Style */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}