/* about-page-header */
.about-page-header {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--white-color);
    /* margin-bottom: 2rem; */
    position: relative;
    overflow: hidden;
}

.about-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/slide-1.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.about-page-header .container {
    position: relative;
    z-index: 2;
}

.about-page-header .page-title {
    font-family: var(--playfair-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-page-header .breadcrumb a {
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--nunito-sans);
    transition: color 0.3s;
}

.about-page-header .breadcrumb a:hover {
    color: #e53935;
}

.about-page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--nunito-sans);
}

.about-page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Company Overview */
.overview-content p {
    font-family: var(--nunito-sans);
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.overview-list li {
    font-family: var(--nunito-sans);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.overview-list li .icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.overview-img-box {
    position: relative;
    width: 100%;
    height: 300px;
}

.overview-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*.overview-img-box::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -20px;*/
/*    right: -20px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border: 3px solid var(--primary-color);*/
/*    border-radius: 10px;*/
/*    z-index: -1;*/
/*}*/

/* Founder Section */
.founder-section {
    background-color: whitesmoke;
}

.founder-wrapper {
    padding: 3rem;
    position: relative;
    border-left: 5px solid #e53935;
    transition: transform 0.3s ease;
}

.founder-wrapper:hover {
    transform: translateY(-5px);
}

.founder-img-container {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-text-box {
    padding-left: 2rem;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(6, 43, 137, 0.2);
}

.founder-quote {
    font-family: var(--nunito-sans);
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-name {
    font-family: var(--playfair-display);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.founder-designation {
    font-family: var(--nunito-sans);
    color: #e53935;
    font-weight: 600;
}

@media (max-width: 768px) {
    .founder-wrapper {
        padding: 2rem 1rem;
    }
    .founder-text-box {
        padding-left: 15px;
        text-align: center;
        margin-top: 2rem;
    }

    .about-page-header .page-title {
        font-size: 2rem;
    }
}

/* Mission & Vision */
.mv-card {
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.mission-card {
    border-top-color: var(--primary-color);
}

.vision-card {
    border-top-color: #e53935;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.mv-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission-card .mv-icon-wrapper {
    background-color: rgba(6, 43, 137, 0.1);
    color: var(--primary-color);
}

.vision-card .mv-icon-wrapper {
    background-color: rgba(229, 57, 53, 0.1);
    color: #e53935;
}

.mission-card:hover .mv-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.vision-card:hover .mv-icon-wrapper {
    background-color: #e53935;
    color: var(--white-color);
}

.mv-title {
    font-family: var(--playfair-display);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.mission-card .mv-title {
    color: var(--primary-color);
}

.vision-card .mv-title {
    color: #e53935;
}

.mv-desc {
    font-family: var(--nunito-sans);
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Why Choose Us */
.why-choose-section {
    background-color: whitesmoke;
}

.feature-item {
    padding: 2rem 1.5rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 43, 137, 0.05);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.feature-content h5 {
    font-family: var(--playfair-display);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-family: var(--nunito-sans);
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Work Process */
.process-row {
    padding-top: 2rem;
}

.process-line {
    top: 50px;
    left: 12.5%;
    width: 75%;
    border-top: 2px dashed rgba(6, 43, 137, 0.3);
    height: 2px;
}

.process-step {
    position: relative;
    padding: 0 10px;
}

.process-icon-box {
    width: 100px;
    height: 100px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.process-num {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e53935;
    font-family: var(--nunito-sans);
    font-size: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white-color);
}

.process-title {
    font-family: var(--playfair-display);
    font-weight: 700;
    color: var(--text-color);
}

.process-desc {
    font-family: var(--nunito-sans);
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products Section */
/* Service Grid Section */
.service-item-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-item-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

.service-arrow-btn {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-arrow-btn:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.service-icon i {
    opacity: 0.9;
}

/* Sidebar Cards */
.sidebar-card {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: none;
    background-color: #fdf7f0;
}

.service-list-card {
    background: #fdf7f0;
}

.service-list-card .card-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 30px 30px 0 0;
}

.service-list-card .card-header h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.service-list-group {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
}

.service-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-list-item:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.service-list-item i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-list-item:hover i {
    transform: translate(3px, -3px);
}

.service-detail-content h2 {
    color: var(--primary-color);
}

.contact-cta-card {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.contact-cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(164, 148, 100, 0.4);
}

.contact-icon-circle i {
    font-size: 2rem;
}

.contact-cta-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.contact-cta-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta-footer {
    font-weight: 700;
    font-size: 1.2rem;
}

.sub-product-card {
    width: 100%;
    box-shadow: 0 0 20px rgba(164, 148, 100, 0.4);
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
}

.sub-product-card .sub-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sub-product-card .sub-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-product-card .sub-product-content {
    padding-top: 10px;
}

.sub-product-card .sub-product-content .sub-product-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 15px;
}

/* Categories Section */
.product-category-card {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-category-card .category-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    background: white;
}

.product-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.product-category-card:hover .category-image {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--primary-color), 0.2);
}

.product-category-card:hover img {
    transform: scale(1.1);
}

.product-category-card .category-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.product-category-card:hover .category-title {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .product-category-card .category-image {
        width: 150px;
        height: 150px;
    }
}

/* Gallery Section */
.gallery-item {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background-color: #fff;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.aspect-ratio-box {
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Services Page Styles */
.service-row-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-row-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.services-page-img {
    width: 100%;
    height: 100%;
    min-height: 400px; /* Important to keep height balanced with text */
    position: relative;
    overflow: hidden;
}

.services-page-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-row-card:hover .services-page-img img {
    transform: scale(1.08);
}

.services-page-content h2 {
    font-family: var(--playfair-display);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.services-page-content .desc {
    font-family: var(--nunito-sans);
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555;
}

@media (max-width: 768px) {
    .services-page-img {
        min-height: 250px;
    }
    .services-page-content {
        text-align: center;
    }
}

/* Projects Page Styles */
.portfolio-title {
    color: var(--primary-color);
    font-family: var(--playfair-display);
}

.portfolio-subtitle {
    font-family: var(--nunito-sans);
    font-size: 1.1rem;
}

.project-title {
    font-family: var(--playfair-display);
    color: var(--text-color);
}

.project-desc {
    font-family: var(--nunito-sans);
    line-height: 1.6;
}

.custom-tab-btn {
    background-color: #fff;
    color: var(--text-color);
    font-family: var(--nunito-sans);
    font-weight: 700;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.custom-tab-btn.active,
.custom-tab-btn:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color);
}

.project-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.project-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-img-wrapper img {
    transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.08);
}

.font-nunito {
    font-family: var(--nunito-sans);
}

/* Testimonials Page Styles */
.testimonial-box {
    background-color: #ffffff;
    border-radius: 25px;
    border: 1px solid #eaeaea;
    padding: 55px 25px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    border: 4px solid #ffffff;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: var(--nunito-sans, sans-serif);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: #e53935;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.testimonial-stars i {
    margin: 0 1px;
}

.testimonial-desc {
    font-family: var(--nunito-sans, sans-serif);
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* FAQs Page Styles */
.faq-section .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.faq-section .accordion-button {
    font-family: var(--nunito-sans, sans-serif);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-color);
    padding: 20px 25px;
    background-color: transparent;
    border-radius: 12px !important;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: none;
}

.faq-section .accordion-body {
    font-family: var(--nunito-sans, sans-serif);
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 5px 25px 25px;
}

/* Partners Page Styles */
.partner-card {
    height: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.partner-logo {
    max-height: 85px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Modal Discount Styles */
.btn-close-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-close-custom:hover {
    background-color: #0d1b4a; 
}

.modal-input {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-family: var(--nunito-sans, sans-serif);
    transition: all 0.3s ease;
}

.modal-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.promo-btn {
    transition: all 0.3s ease;
    background-color: var(--primary-color);
}

.promo-btn:hover {
    background-color: #0d1b4a; 
}

.social-icons-modal a i {
    font-size: 1.1rem;
    color: #444;
    transition: all 0.3s ease;
}

.social-icons-modal a:hover i {
    color: var(--primary-color);
}

/* Blog Page Styles */
.blog-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.blog-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.blog-img-wrapper img {
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-title {
    font-family: var(--playfair-display);
    font-weight: 700;
    line-height: 1.4;
    margin-top: 15px;
}

.blog-title a {
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color) !important;
}

.blog-desc {
    font-family: var(--nunito-sans);
    line-height: 1.7;
}

.read-more-btn {
    color: var(--primary-color);
    font-family: var(--nunito-sans);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: #e53935; 
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Blog Details Page */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.blog-featured-img img {
    transition: transform 0.6s ease;
}
.blog-featured-img:hover img {
    transform: scale(1.03);
}

.blog-content-body h1, .blog-content-body h2, .blog-content-body h3, .blog-content-body h4, .blog-content-body h5, .blog-content-body h6 {
    font-family: var(--playfair-display);
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content-body p {
    margin-bottom: 1.5rem;
}

.blog-content-body ul, .blog-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content-body li {
    margin-bottom: 0.5rem;
}

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-content-body blockquote {
    border-left: 5px solid var(--primary-color);
    background-color: rgba(6, 43, 137, 0.03);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-family: var(--playfair-display);
    font-size: 1.25rem;
    color: #555;
    border-radius: 0 10px 10px 0;
}

/* Social Share Buttons */
.social-share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-btn.fb { background-color: #3b5998; }
.social-share-btn.tw { background-color: #00acee; }
.social-share-btn.in { background-color: #0072b1; }
.social-share-btn.wa { background-color: #25D366; }

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    color: white;
}

