:root {
    --primary-color: #062b89;
    --secondary-color: #007bff;
    --text-color: #333;
    --white-color: #fff;
    --black-color: #000;

    --nunito-sans: "Nunito Sans", sans-serif;
    --playfair-display: "Playfair Display", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--nunito-sans);
}

.icon {
    color: #e53935;
}

.section-title {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h4 {
    width: fit-content;
    font-family: var(--playfair-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.header {
    background-color: var(--primary-color);
    padding: 5px 0;
}

.nav-item .nav-link {
    font-family: var(--nunito-sans);
    font-weight: 700;
    color: var(--color-black);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
}

.hero-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 650px;
    z-index: 10;
}

.hero-caption.third-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7%;
    left: auto; /* important */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 650px;
    z-index: 10;
}

.hero-title {
    font-family: var(--playfair-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.hero-desc {
    font-family: var(--nunito-sans);
    font-size: 1.25rem;
    font-weight: 500;
}

.hero-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--nunito-sans);
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-white-custom {
    color: var(--white-color) !important;
}

.text-dark-custom {
    color: var(--text-color) !important;
}

/* Custom Controls */
.hero-carousel .custom-control {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel .custom-control:hover,
.hero-carousel .custom-control:focus {
    background-color: var(--secondary-color);
    outline: none;
}

.hero-carousel .carousel-control-prev.custom-control {
    left: 2%;
}

.hero-carousel .carousel-control-next.custom-control {
    right: 2%;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* About Section */
.about-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content h2 {
    color: var(--primary-color);
    font-family: var(--playfair-display);
    font-weight: 700;
    font-size: 2.2rem;
}

.about-content p {
    font-family: var(--nunito-sans);
    font-size: 1rem;
    font-weight: 500;
}

.primary-btn {
    width: fit-content;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--nunito-sans);
    padding: 10px 12px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Category Section Styles */
#category {
    background-color: whitesmoke;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-img {
    position: relative;
    width: 100%;
    height: 350px;
}

.category-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 40%
    );
    pointer-events: none;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-img:hover img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white-color);
    font-family: var(--playfair-display);
    font-size: 1.6rem;
    font-weight: 700;
    z-index: 10;
}

/* =============================================
   Why Choose Us Section
   ============================================= */
.why-us-section {
    background-color: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 43, 137, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Image Block */
.why-us-img-block {
    position: relative;
    display: inline-block;
    width: 100%;
}

.why-us-img-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 43, 137, 0.15);
    position: relative;
}

.why-us-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(6, 43, 137, 0.35) 100%
    );
    border-radius: 20px;
}

.why-us-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-us-img-block:hover .why-us-img-wrapper img {
    transform: scale(1.04);
}

.why-us-badge {
    position: absolute;
    bottom: -24px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(6, 43, 137, 0.4);
    border: 4px solid #fff;
    z-index: 2;
}

.why-us-badge-inner {
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

.why-us-badge-inner .badge-number {
    display: block;
    font-family: var(--playfair-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.why-us-badge-inner .badge-label {
    font-family: var(--nunito-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Content */
.why-us-content {
    padding-left: 1rem;
}

.why-us-eyebrow {
    display: inline-block;
    font-family: var(--nunito-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e53935;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 36px;
}

.why-us-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 2px;
    background-color: #e53935;
}

.why-us-heading {
    font-family: var(--playfair-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.why-us-heading span {
    color: var(--primary-color);
}

.why-us-desc {
    font-family: var(--nunito-sans);
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Feature Items */
.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.why-us-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(6, 43, 137, 0.06);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.why-us-feature-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(6, 43, 137, 0.12);
    transform: translateX(5px);
}

.why-us-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: rgba(6, 43, 137, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-us-feature-item:hover .why-us-feature-icon {
    background: var(--primary-color);
    color: #fff;
}

.why-us-feature-body h6 {
    font-family: var(--nunito-sans);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.15rem;
}

.why-us-feature-body p {
    font-family: var(--nunito-sans);
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 0;
    line-height: 1.5;
}

/* CTA Button */
.why-us-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--nunito-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 43, 137, 0.3);
    letter-spacing: 0.3px;
}

.why-us-cta-btn:hover {
    background: #e53935;
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.35);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .why-us-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .why-us-badge {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .why-us-heading {
        font-size: 1.8rem;
    }

    .why-us-img-wrapper {
        height: 300px;
    }

    .why-us-badge {
        width: 90px;
        height: 90px;
        bottom: -18px;
        right: 8px;
    }

    .why-us-badge-inner .badge-number {
        font-size: 1.3rem;
    }
}

/* =============================================
   Featured Products Section
   ============================================= */
.fp-section {
    background: #f8f9ff;
    position: relative;
}

/* Card */
.fp-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 43, 137, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(6, 43, 137, 0.14);
}

/* Image */
.fp-card-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.fp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.fp-card:hover .fp-card-img img {
    transform: scale(1.08);
}

/* Overlay */
.fp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 43, 137, 0.0) 30%,
        rgba(6, 43, 137, 0.75) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.fp-card:hover .fp-card-overlay {
    opacity: 1;
}

.fp-view-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--primary-color);
    font-family: var(--nunito-sans);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(10px);
    transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.fp-card:hover .fp-view-btn {
    transform: translateY(0);
}

.fp-view-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Badge */
.fp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e53935;
    color: #fff;
    font-family: var(--nunito-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

/* Body */
.fp-card-body {
    padding: 1.25rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.fp-card:hover .fp-card-body {
    border-top-color: var(--primary-color);
}

.fp-card-title {
    font-family: var(--playfair-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.fp-card-desc {
    font-family: var(--nunito-sans);
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.fp-card-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--nunito-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: gap 0.3s ease, color 0.3s ease;
    gap: 4px;
}

.fp-card-link:hover {
    color: #e53935;
    gap: 8px;
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery-section {
    background: #fff;
}

.gl-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(6, 43, 137, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(6, 43, 137, 0.15);
}

.gl-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.gl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gl-card:hover .gl-card-img img {
    transform: scale(1.1);
}

/* Overlay */
.gl-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 43, 137, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gl-card:hover .gl-card-overlay {
    opacity: 1;
}

.gl-zoom-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transform: scale(0.7);
    transition: transform 0.35s ease;
    backdrop-filter: blur(4px);
}

.gl-card:hover .gl-zoom-icon {
    transform: scale(1);
}

/* View Gallery Button */
.gl-view-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--nunito-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 12px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.gl-view-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(6, 43, 137, 0.25);
}

/* Testimonial Section Styles */
#testimonial-section {
    background:
        url("../images/slide-2.webp"),
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-card {
    padding: 10px;
}

.testimonial-content {
    background-color: #f9f9f9;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #f9f9f9 transparent transparent transparent;
    display: block;
    width: 0;
}

.testimonial-content p {
    font-family: var(--nunito-sans);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author .author-name {
    color: #e53935;
    font-family: var(--nunito-sans);
    font-weight: 800;
    font-size: 1.1rem;
}

.testimonial-author .author-role {
    font-family: var(--nunito-sans);
    font-size: 0.9rem;
    color: #666;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 20px !important;
}

.testimonial-carousel .owl-dot {
    outline: none !important;
}

.testimonial-carousel .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    margin: 5px 6px !important;
    background: #01132b !important;
    display: block !important;
    transition: opacity 0.2s ease !important;
    border-radius: 50% !important;
}

.testimonial-carousel .owl-dot.active span {
    background: #e53935 !important;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-carousel .custom-control {
        display: none;
    }

    .hero-caption.third-slide {
        left: auto;
        right: 2%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-caption {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
    .hero-caption.third-slide {
        left: auto;
        right: -8%;
        max-width: 100%;
    }
    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-carousel .custom-control {
        display: none;
    }
}

/* Highlight Section Styles */
#highlight-section {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.highlight-item {
    color: var(--white-color);
}

.highlight-icon {
    color: #48cae4;
    font-size: 2.8rem;
}

.highlight-content h5 {
    font-family: var(--playfair-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.highlight-content p {
    font-family: var(--nunito-sans);
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #f8f9fa;
}

/* Contact Section Styles */
#contact-section {
    background-color: whitesmoke;
}

.contact-form-card,
.contact-info-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-header h4 {
    font-family: var(--playfair-display);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2rem;
}

.custom-input {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    font-family: var(--nunito-sans);
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(6, 43, 137, 0.1);
}

.contact-info-title {
    font-family: var(--nunito-sans);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-info-desc {
    color: #6c757d;
    font-family: var(--nunito-sans);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-icon-box {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f1f1;
}

.contact-icon-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h6 {
    font-family: var(--nunito-sans);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

    .contact-text p {
        color: #6c757d;
        font-family: var(--nunito-sans);
        margin-bottom: 0;
        font-size: 0.95rem;
    }
    
/* Footer Styles */
.footer {
    background-image: url('../images/slide-1.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white-color);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.92;
}

.footer-title {
    font-family: var(--playfair-display);
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: transparent;
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    color: #e53935;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--nunito-sans);
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: #e53935;
}

.footer-icon-color {
    color: #e53935;
}

.footer-contact span {
    font-family: var(--nunito-sans);
    font-size: 0.95rem;
}

.footer-bottom-links a {
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--nunito-sans);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.text-white-50 a:hover {
    color: #e53935 !important;
}

