body {
    margin: 0;
    padding: 0;
}

:root {
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
    --paragraph-font:'Jost', sans-serif;
    --primary-color: #edce29;
    --secondary-color: #323842;
}

/*pre-hesder style */
.pre-header {
    background: #1d3a72;
    color: white;
    padding: 3px 0;
    font-size: 14px;
    line-height: 36px;

}

.pre-item-left a {
    font-size: 13px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-family: var(--secondary-font);
    white-space: nowrap;

}

.pre-item-left i {
    color: white;
    font-size: 13px;
    margin-top: 2px;
}

.pre-item-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.pre-item-left p {
    margin: 0;
    font-size: 14px;
}

.social-btn i {
    padding: 5px;
    
    color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.social-btn i:hover {

    transform: translateY(-3px);
}

.quote-btn {

    align-items: center;
    gap: 10px;
    background: #1d3a72;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--secondary-font);
}

.quote-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.quote-btn:hover {
    transform: translateY(-2px);
}

/*banner area */

.hero-slider {
    position: relative;
    width: 100%;
}

.heroSwiper {
    width: 100%;
    height: 500px;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.heroSwiper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.05) 75%
    );
    z-index: 1;
}
/* =========================
   SWIPER NAVIGATION BUTTONS
========================= */

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

/* Arrow Icon */
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Hover */
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.08);
}

.heroSwiper .swiper-button-next:hover::after,
.heroSwiper .swiper-button-prev:hover::after {
    color: #222;
}


/* =========================
   PAGINATION
========================= */

.heroSwiper .swiper-pagination {
    bottom: 25px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    opacity: 1;
    background: #fff;
}


/* =========================
   MOBILE
========================= */

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {

    .hero-slider {
        width: 100%;
    }

    .heroSwiper {
        height: 400px;
    }

    .heroSwiper .swiper-slide {
        height: 400px;
    }

    .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Dark Overlay */
    .heroSwiper .swiper-slide::after {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.15) 100%
        );
    }

    /* Navigation Buttons */
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 36px;
        height: 36px;
        top: 50%;
        margin-top: -18px;
    }

    .heroSwiper .swiper-button-next {
        right: 10px;
    }

    .heroSwiper .swiper-button-prev {
        left: 10px;
    }

    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 14px;
    }

    /* Pagination */
    .heroSwiper .swiper-pagination {
        bottom: 15px;
    }

    .heroSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .heroSwiper .swiper-pagination-bullet-active {
        width: 22px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 767px) {



    .hero-content h1{
        font-size: 30px !important;
        line-height:46px !important;
    }





    .heroSwiper {
        height: 350px;
    }

    .heroSwiper .swiper-slide {
        height: 350px;
    }

    .heroSwiper .swiper-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }

    .heroSwiper .swiper-button-next {
        right: 8px;
    }

    .heroSwiper .swiper-button-prev {
        left: 8px;
    }

    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 12px;
    }

    .heroSwiper .swiper-pagination {
        bottom: 12px;
    }
}
/* Text */
.hero-content {
    position: absolute;
    z-index: 2;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    line-height:57px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content p {
    font-family: var(--paragraph-font);
    font-size: 18px;
    line-height:32px;
    font-weight: 400;
    max-width: 550px;
    margin: 0;
}
/*footer area */


.main-footer {
    background: #171717;
    padding: 40px 0 15px;
    position: relative;
    color: #fff;
}

.footer-company {
    padding-right: 30px;
}

.footer-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-company p {
    color: white;
    font-size: 15px;
    font-family: var(--paragraph-font);
    line-height: 1.7;

}


/* Footer Widget */

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 9px;
}

.footer-widget ul li a {
    color:white;
    text-decoration: none;
    font-size: 15px;
    font-family: var(--paragraph-font);
    transition: 0.3s;
}

.footer-widget ul li a:hover {
    color: #fff;
}


/* Contact */

.footer-widget p {
    color: white;
    font-size: 15px;
    font-family: var(--paragraph-font);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 25px;
    height: 25px;
    background: #fff;
    color: #171717;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 25px;
    padding-top: 10px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color:white;
    font-size: 15px;
    font-family: var(--primary-font);
}

.footer-logo h4{
    font-family: var(--primary-font);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
/* Mobile */

@media (max-width: 767px) {

    .main-footer {
        padding: 40px 0 15px;
    }

    .footer-company {
        margin-bottom: 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-company p {
        max-width: 100%;
    }

}





.connect-image {
    overflow: hidden;
    border-radius: 20px;
}
.connect-content h4{
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #1d3a72;
}
.connect-content h2 {
    font-size: 28px;
    font-family: var(--primary-font);
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.connect-content p {
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    color: #000;
    line-height: 1.9;
    margin-bottom: 20px;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
}

.connect-btn span {
    color: white;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    background-color: #1d3a72;
    border-radius: 100px;
    padding: 12px 20px;
    
    text-underline-offset: 6px;
    font-size: 18px;
}

.connect-btn i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;


    color: #528300;
    transition: .3s;
}

.connect-btn:hover i {
    transform: translateX(5px);
}

/* =================================
   PRODUCT SECTION
================================= */

/*products style */

.product-section{
    background:#e0efff;
  
}

.section-title-two h4{
        font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #1d3a72;
}


.section-title-two h2{
      font-size: 28px;
    font-family: var(--primary-font);
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}


.product-card {
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 295px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Image Area */
.product-img {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

/* Blue Title */
.product-content h4 {
    margin: 0;
    padding: 13px 15px;
    background: #243f7b;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Description Area */
.product-content {
    background: #fff;
}

.product-content p {
      margin: 0;
    padding: 30px 15px 5px;
    color: #222;
    font-size: 15px;
    font-family: var(--paragraph-font);
    line-height: 1.8;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Read More */
.read-more {
    display: inline-block;
    margin: 0 15px 20px;
    color: #243f7b;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--paragraph-font);
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 1px solid #243f7b;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #111;
    border-color: #111;
}

/* Image Hover */
.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}
/* ================================
   Trusted Quality Section
================================ */

.trusted-quality {
    background: #e2effc;
    padding: 65px 0 75px;
    overflow: hidden;
}

/* Heading */

.section-heading {
    margin-bottom: 38px;
}

.section-heading span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #152d55;
    margin-bottom: 15px;
}

.section-heading h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #30343b;
}

/* Swiper */

.reactorSwiper {
    padding-bottom: 60px;
    overflow: visible;
}


.reactorSwiper .swiper-slide {
    height: auto;
}

/* Card */

.reactor-card {
    height: 100%;
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reactor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* Image */

.reactor-image {
    height: 210px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.reactor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Blue title */

.reactor-title {
    min-height: 48px;
    padding: 10px 12px;
    background: #24447e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 1.5px;
}

/* Content */

.reactor-content {
    padding: 18px 15px 22px;
}

.reactor-content p {
    margin: 0 0 12px;

    color: #202020;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.reactor-content a {
    color: #24447e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;

    border-bottom: 1px solid #24447e;
    padding-bottom: 3px;

    transition: all 0.3s ease;
}

.reactor-content a:hover {
    color: #111;
    border-color: #111;
}

/* Pagination */

.reactor-pagination {
    bottom: 8px !important;
}

.reactor-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #24447e;
    opacity: 1;
    margin: 0 4px !important;
}

.reactor-pagination .swiper-pagination-bullet-active {
    width: 9px;
    height: 9px;
    background: #24447e;
}

/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

    .trusted-quality {
        padding: 50px 0 60px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .reactor-image {
        height: 200px;
    }
}

/* ================================
   Mobile
================================ */

@media (max-width: 767px) {

    .trusted-quality {
        padding: 45px 0 55px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading span {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .reactorSwiper {
        padding-bottom: 50px;
    }

    .reactor-image {
        height: 220px;
    }

    .reactor-title {
        font-size: 15px;
    }

    .reactor-content {
        padding: 17px 15px 20px;
    }

    .reactor-content p {
        font-size: 14px;
    }

    .desktop-break {
        display: none;
    }
}
/*why choose us */

.why-choose-us{
   
    background:#fff;
}

.why-box{
    text-align:center;
    padding:20px 30px;
    position:relative;
}

.why-box::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:120px;
    background:#dcdcdc;
}

.no-border::after{
    display:none;
}

.why-box img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
}

.why-box h4{
    font-size:18px;
    font-weight:500;
    margin-bottom:10px;
    color:#222;
    font-family: 'Jost', sans-serif;

}

.why-box p{
    font-size:14px;
    font-family:'Jost', sans-serif;
    color:545454;
    margin:0;

    line-height:1.7;
}

@media(max-width:991px){

   
    .why-box::after{
        display:none;
    }

}


.contact-section{
    
    background:#f8f9fa;
}

.contact-form-box{
    background:#fff;
    padding:60px;
    height:100%;
}



.contact-form-box h2{
    font-size:30px;
    font-weight:600;
    margin-bottom:35px;
    font-family: var(--primary-font);
}

.contact-form-box .form-control{
    height:58px;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:none;
    padding:0 18px;
    font-family: 'Jost', sans-serif;;
}

.contact-form-box .form-control:focus{
    border-color:#528300;
    box-shadow:none;
}



.map-box{
    height:100%;
    min-height:650px;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:none;
}











/* ==============================
   CORE COMPETENCIES
================================ */

.core-competencies {
    padding: 70px 0;
    background: #f2f6ff;
}

.core-row {
    display: flex;
    align-items: center;
    gap: 50px;
}



.section-small-title {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #222;
    margin-bottom: 3px;
}



.competency-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #132b5f;
    border-radius: 4px;
    padding: 16px 14px;
    margin-bottom: 20px;
    color: #fff;
}

.competency-icon {
   padding: 0 6px;
   
    color: #fff;
   
}



.competency-box h4 {
    margin: 0 0 3px;
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-bottom: 8px;
}

.competency-box p {
    margin: 0;
    font-size: 15px;
    font-family: var(--paragraph-font);
    line-height: 1.8;
    color: #fff;
}



.core-image img {
    width: 100%;
    height: 550px;
    
}


/* Responsive */

@media (max-width: 991px) {

    .core-row {
        gap: 30px;
    }

    .core-content,
    .core-image {
        width: 50%;
    }

    .core-image img {
        height: 350px;
    }
}

@media (max-width: 767px) {

    .core-competencies {
        padding: 50px 15px;
    }

    .core-row {
        flex-direction: column;
        gap: 30px;
    }

    .core-content,
    .core-image {
        width: 100%;
    }

    .core-image img {
        height: 300px;
    }

    .core-content h2 {
        font-size: 23px;
    }
}


.mission {
    background-image: url("../img/banner-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mission-card h2 {
    font-size: 24px;
    color:#1d3a72;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p {
    font-size: 15px;
    font-family: var(--paragraph-font);
    line-height: 1.8;
    margin-bottom: 0;
}




.testimonials-section {
    background: #eef1f3;
    padding: 70px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title span {
    display: block;
    color: #0068b7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}


/* Testimonial Card */

.testimonial-card {
    background: #eef1f3;
    padding:30px 22px;
    box-shadow: 0 0 40px 0 #d1d1d1;
    min-height: 200px;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 13px;
}

.testimonial-top h6 {
    display: inline-block;
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--primary-font);
}

.testimonial-top small {
    color: #999;
    font-size: 13px;
    font-family: var(--primary-font);
}

.quote-icon {
    color: #0068b7;
    font-size: 17px;
}

.testimonial-card p {
    color:black;
    font-family: var(--paragraph-font);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* Swiper */

.testimonialSwiper {
    padding-bottom: 45px !important;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #aaa;
}

.swiper-pagination-bullet-active {
    background: #0068b7;
}


/* Mobile */

@media (max-width: 767px) {

    .testimonials-section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

}

.contact-section {
    background: #fff;
    padding: 65px 0;
}

.contact-content {
    padding-right: 40px;
}

.contact-content h2 {
    color: #173d78;
    font-size: 30px;
    font-family:var(--primary-font);
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-content p {
    color:black;
    font-family: var(--paragraph-font);
    font-size: 15px;
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 25px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color:black;
    font-family: var(--paragraph-font);
    font-size: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 24px;
    background: #173d78;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


/* Form Box */

.contact-form-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 27px 13px 25px;
}

.form-title {
    margin-bottom: 20px;
}

.form-title span {
    color: #173d78;
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-form-box .form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    margin-bottom: 12px;
    padding: 8px;
}

.contact-form-box textarea.form-control {
    height: 122px;
    resize: none;
    padding-top: 12px;
}

.contact-form-box .form-control:focus {
    border-color: #173d78;
    box-shadow: none;
}

.submit-btn {
    background: #173d78;
    color: #fff;
    border: none;


    border-radius: 20px;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    font-family: var(--paragraph-font);
}

.submit-btn:hover {
    background: #0d2d5c;
}


/* Mobile */

@media (max-width: 767px) {

    .contact-section {
        padding: 45px 0;
    }

    .contact-content {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .contact-content h2 {
        font-size: 24px;
    }

    .contact-form-box {
        padding: 25px 15px;
    }

}


.inner-banner {
    position: relative;
    min-height: 360px;
    background: url("../img/banner-about.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 30px 15px;
}

/* Small Heading */
.banner-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Main Heading */
.banner-content h1 {
    font-size: 55px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 500;
}
.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgb(119 119 119 / 70%), rgba(0, 0, 0, 0.35) );
}
.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    color: #f39c12;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb span:last-child {
    color: #fff;
}


/* Mobile */
@media (max-width: 767px) {

    .inner-banner {
        min-height: 280px;
    }

    .banner-content {
        padding: 20px 15px;
    }

    .banner-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .banner-content h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .breadcrumb {
        font-size: 14px;
        gap: 8px;
    }
}




.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    margin: 0;
}

.gallery-box {
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.gallery-box:hover img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .gallery-box {
        height: 240px;
    }
}.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 28px;
    font-family: var(--primary-font);
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.section-title p {
    color: #777;
    margin: 0;
}

.gallery-box {
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.gallery-box:hover img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .gallery-box {
        height: 240px;
    }
}


.contact-banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.contact-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
   
    z-index: 1;
}

.contact-banner .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.contact-info {
    text-align: center;
    color: #fff;
}

.contact-info h2 {
    font-size: 55px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 767px) {

    .contact-banner {
        height: 250px;
    }

    .contact-info h2 {
        font-size: 34px;
        letter-spacing: 1px;
    }
}








/* =================================
   VDH PRODUCT SECTION
================================= */

.vdh-product-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #ffffff;
}

.vdh-product-image {
    width: 100%;
}

.vdh-product-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

.vdh-product-content {
    padding-left: 45px;
}

.vdh-product-label {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #1d3a72;
}

.vdh-product-content h1 {
    color: #333;
    font-size: 34px;
    font-family: var(--primary-font);
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 20px;
}

.vdh-product-content p {
    color: black;
    font-size: 15px;
    font-family: var(--paragraph-font);
    line-height: 1.8;
    margin-bottom:20px;
   
}


/* =================================
   ENQUIRY BUTTON
================================= */

.vdh-enquiry-wrap {
    margin-top: 25px;
}

.vdh-enquiry-btn {
    display: inline-block;
    padding: 13px 28px;
    background: #1451a0;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.vdh-enquiry-btn:hover {
    background: #0d3d7d;
    color: #ffffff;
}


/* =================================
   SPECIFICATIONS
================================= */

.vdh-spec-section {
    padding: 60px 0;
    background: #f7f7f7;
}

.vdh-spec-heading {
    margin-bottom: 25px;
}

.vdh-spec-heading span {
    font-size: 16px;
   
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #1d3a72;
    margin-bottom: 15px;
}

.vdh-spec-heading h2 {
    color: #222222;
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
   margin-top: 10px;
}


/* =================================
   SPECIFICATION LIST
================================= */

.vdh-spec-list {
    margin: 0;
    padding-left: 22px;
}

.vdh-spec-list li {
    color:black;
    font-size: 15px;
    font-family:var(--paragraph-font);
    line-height: 1.8;
    padding: 12px 0;
    border-bottom: 1px solid #dddddd;
}

.vdh-spec-list li:last-child {
    border-bottom: none;
}

.vdh-spec-list li::marker {
    color: #1451a0;
}

.vdh-spec-list strong {
    color: #222222;
    font-weight: 600;
    font-family: var(--primary-font);
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 991px) {

    .vdh-product-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .vdh-product-image {
        margin-bottom: 35px;
    }

    .vdh-product-image img {
        height: 450px;
    }

    .vdh-product-content {
        padding-left: 0;
    }

    .vdh-product-content h1 {
        font-size: 32px;
    }

}


@media (max-width: 767px) {

    .vdh-product-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .vdh-product-image img {
        height: 350px;
    }

    .vdh-product-content h1 {
        font-size: 28px;
    }

    .vdh-product-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vdh-product-label {
        font-size: 12px;
    }

    .vdh-spec-section {
        padding: 45px 0;
    }

    .vdh-spec-heading h2 {
        font-size: 28px;
    }

    .vdh-spec-list li {
        font-size: 14px;
    }

}