/* ============================================
   CITIYANO DE EXIM - PREMIUM THEME
   Colors: Red #F91006 | Yellow #FCCB41 | Green #5D9155
   Light Theme | Minimal Shadows | Professional
============================================ */

/* CSS Variables */
:root {
    --primary-red: #F91006;
    --primary-yellow: #FCCB41;
    --primary-green: #5D9155;
    --dark-text: #1A1A1A;
    --gray-text: #4A4A4A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --border-light: #E8E8E8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.d-none{
    display: none !important;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.section-header h2 span {
    color: var(--primary-red);
}

.section-header .leaf-icon {
    color: var(--primary-green);
    font-size: 1.8rem;
    vertical-align: middle;
    margin: 0 4px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #D90E04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 16, 6, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 11px 27px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-red);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

/* Hero Slider */
.hero-section {
    margin-top: 80px;
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1rem;
    max-width: 550px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.swiper-pagination-bullet-active {
    background: var(--primary-yellow) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-badge i {
    color: var(--primary-green);
}

.vision-box {
    background: #FFF9EF;
    padding: 32px;
    border-radius: 24px;
}

.vision-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-red);
}

.vision-box h3 i {
    margin-right: 10px;
    color: var(--primary-green);
}

.vision-box p {
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.vision-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.vision-stats div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.vision-stats i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    background: #FEFAF0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-yellow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-section {
    padding: 40px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    background: #FEFAF0;
    border-radius: 20px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-red);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--primary-yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    /* margin-bottom: 8px; */
}

.stat-label {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background: var(--white);
}

.cta-wrapper {
    background: linear-gradient(135deg, #FFF9EF 0%, #FEF5E6 100%);
    padding: 40px 10px;
    border-radius: 32px;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-wrapper p {
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto 20px;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 0;
    background: #FEFAF0;
}

.reviewSwiper {
    /* padding: 20px 0; */
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.review-stars {
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.review-stars i {
    margin-right: 4px;
}

.review-card p {
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary-red);
}

.review-card span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* Clientele Section */
.clientele-section {
    padding: 40px 0;
    background: var(--white);
}

.clientele-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    align-items: center;
}

.clientele-item {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-text);
    transition: var(--transition);
}

.clientele-item:hover {
    color: var(--primary-red);
}

/* Blog Section */
.blog-section {
    padding: 40px 0;
    background: #FEFAF0;
}
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 10px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.blog-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 10px;
}

/* Certificate Ssection  */
.cert-section {
    padding: 80px 0;
    background: #f9fafb;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cert-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cert-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    /* margin-bottom: 15px; */
}

.cert-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    display: none;
}

.cert-card p {
    font-size: 14px;
    color: #666;
    display: none;
}
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    display: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--primary-red);
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-text);
}

.contact-details i {
    width: 24px;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #FEFAF0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contact-form button {
    width: fit-content;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0 80px;
    background: #FEFAF0;
}

.newsletter-wrapper {
    background: var(--primary-yellow);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--dark-text);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .heroSwiper {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-wrapper {
        padding: 40px 24px;
    }
    
    .newsletter-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clientele-grid {
        gap: 24px;
    }
    
    .clientele-item {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .btn-outline,
    .btn-primary {
        text-align: center;
        justify-content: center;
    }
}

 /* Services Blog Carousel Section */
        .services-blog-carousel {
            padding: 40px 0;
            background: #FEFAF0;
        }

        /* Service Blog Card Styles */
        .service-blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-blog-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary-yellow);
        }

        .service-blog-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .service-blog-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-blog-date {
            font-size: 0.75rem;
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-blog-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
            color: var(--dark-text);
        }

        .service-blog-card p {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }

        .service-blog-link {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            margin-top: auto;
        }

        .service-blog-link:hover {
            gap: 10px;
            color: var(--primary-green);
        }

        /* Unique Swiper Classes for Services Blog */
        .servicesBlogSwiper {
            padding: 0px 10px;
            overflow: hidden;
        }

        .servicesBlogSwiper .swiper-button-next,
        .servicesBlogSwiper .swiper-button-prev {
            color: var(--primary-red) !important;
            background: var(--white);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: none;
        }

        .servicesBlogSwiper .swiper-button-next:after,
        .servicesBlogSwiper .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .servicesBlogSwiper .swiper-button-next:hover,
        .servicesBlogSwiper .swiper-button-prev:hover {
            background: var(--primary-red);
            color: var(--white) !important;
        }

        .servicesBlogSwiper .swiper-pagination-bullet {
            background: #cbd5e1;
            width: 10px;
            height: 10px;
        }

        .servicesBlogSwiper .swiper-pagination-bullet-active {
            background: var(--primary-red);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .service-blog-card h3 {
                font-size: 1rem;
            }
            .service-blog-img {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .servicesBlogSwiper .swiper-button-next,
            .servicesBlogSwiper .swiper-button-prev {
                display: none;
            }
            .services-blog-carousel {
                padding: 40px 0;
            }
        }