@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lobster&display=swap');

/* Reset / Normalize basic browser styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #36406A;
    --secondary-yellow: #FFFFFF;
    --yellow: #36406A;
    --light-gray: #f5f5f5;
    --light-color: #fff;
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
    --max-width: 1200px;

}

/* Body defaults */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 0.5em;
}

/* Paragraphs */
p {
    margin-bottom: 1em;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    /* padding: 15px 15px; */
    padding: 5px 15px;
}


.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5px 15px;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Extra Large Desktop - 1400px and above */
@media (min-width: 1400px) {
    :root {
        --max-width: 1320px;
    }

    .container {
        padding: 5px 20px;
    }
}

/* Large Desktop - 1200px to 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
    :root {
        --max-width: 1140px;
    }

    .container {
        padding: 5px 20px;
    }
}

/* Desktop - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    :root {
        --max-width: 960px;
    }

    .container {
        padding: 5px 18px;
    }
}

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --max-width: 720px;
    }

    .container {
        padding: 5px 18px;
    }
}

/* Large Mobile - 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {
    :root {
        --max-width: 540px;
    }

    .container {
        padding: 5px 15px;
    }
}

/* Mobile - 480px to 575px */
@media (max-width: 575px) {
    :root {
        --max-width: 100%;
    }

    .container {
        padding: 5px 15px;
    }
}

/* Small Mobile - 375px to 479px */
@media (max-width: 479px) {
    .container {
        padding: 5px 12px;
    }
}

/* Extra Small Mobile - 320px to 374px */
@media (max-width: 374px) {
    .container {
        padding: 5px 10px;
    }
}

/* Very Small Mobile - Below 320px */
@media (max-width: 319px) {
    .container {
        padding: 5px 8px;
    }
}



/* Lists */
ul {
    list-style: none;
}


.top-bar {
    background-color: var(--primary-color);
    /* padding: 8px 0; */
    font-size: 14px;
    color: #666;
}

.main-header {
    background-color: white;
    /* padding: 10px 0; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-section1 {
    display: flex;
}

.logo-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-right: 15px;*/
    color: white;
    font-size: 70px;
}

.logo-img img {
    /* height: 100%; */
    height: 70px;
}

/* .logo-text span {
    color: var(--light-blue);
    font-size: 18px;
    font-weight: 600;
} */

.company-name {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 0;
}

.company-tagline {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.header-contact-info {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-right: 0;
    justify-content: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    /* gap: 10px; */
}

.contact-icon {
    width: 60px;
    height: 60px;
    /* background-color: var(--light-blue); */
    /* background-color: #10263B; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-yellow);
}

.contact-icon i {
    font-size: 22px;
}

.contact-text h6 {
    margin: 0;
    font-size: 13px;
    color: #333;
}

.contact-text p {
    margin: 0;
    font-weight: normal;
    color: black;
}




.navbar-section {
    background-color: var(--primary-blue);
    padding: 0;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    padding: 0px;
    gap: 26px;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link {
    position: relative;
    color: white !important;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 17px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    /* adjust to your padding */
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--light-color) !important;
}

.nav-item {
    padding: 0 20px;
}

@media (max-width: 991px) {

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-blue) !important;
    }
}


@media (max-width: 768px) {
    .header-contact-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-bar .row>div {
        text-align: center;
        margin-bottom: 5px;
    }

}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    /* adjust as needed */
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top, right, bottom, left: 0 */
    background: rgba(0, 0, 0, 0.5);
    /* overlay */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    /* content above overlay */
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    margin: 0 auto;
}

.slide-content h2 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--light-gray);
}

.slider-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #fff;
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: cap;
    letter-spacing: 1px;
}

.slider-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-blue);
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

.slider-arrow i {
    color: var(--light-color);
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-blue);
}

.logo {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 20;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-blue);
}

.logo-icon {
    margin-right: 10px;
    color: var(--yellow);
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .logo {
        left: 20px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow i {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 1.3rem;
        left: 15px;
    }
}

.welcome-text {
    padding: 20px;
    background: var(--dark-blue);
    color: var(--light-color);
    border-radius: 20px;
}

.welcome-title {
    font-size: 35px;
    font-weight: 700;
}

.welcome-description {
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
}




/* visionmission starts */

.vision-mission-section {
    padding: 80px 0 60px !important;
}

.welcome-content {
    padding-right: 30px;
}

.vision-mission {
    background: var(--light-bg);
    height: 100%;
}

.vision-mission h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-mission-card {
    background: white;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent);
}

.vision-mission-card h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    display: flex;
    font-size: 30px;
    font-weight: 700;
}

.vision-mission-card h4 i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 7px;
}

.vision-mission hr {
    height: 2px;
    color: #666;
    margin: 0 !important;
    margin-bottom: 2rem !important;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mission-list li::before {
    content: "\f058";
    /* Font Awesome check-circle icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    /* Change icon color */
    font-size: 18px;
}


.welcome-text-inner {
    padding: 20px;
    border: 1px dashed var(--light-color);
    border-radius: 20px;
}

.mission-img2{
width:500px;    
}

@media (max-width: 992px) {
    .welcome-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.about-section {
    padding: 60px 0;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 500px;
    object-fit: cover;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-content {
    padding-left: 30px;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.geography-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.geo-item {
    background: var(--dark-blue);
    color: var(--light-color);
    padding: 8px 15px;
    margin: 5px;
    border-radius: 30px;
    font-size: 14px;
}

.business-card h4 {
    color: var(--primary-blue);
    font-weight: 700;
}

.business-card i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

.services-section {
    display: flex;
}

.content-card {
    background: #36406a46;
    /* keep your existing background if you already have one */
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #36406A, #36406A);
}


/* Left Image Side */
.left-column {
    background: url("../assets/slider/slider1.jpg") no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

/* Right Content Side */
.right-column {
    position: relative;
    padding: 40px;
    overflow-y: auto;
    color: var(--light-color);
}

.section-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
}

/* .section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--light-color);
    margin-top: 10px;
} */

.service-card {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-color);
    height: 380px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 84, 166, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--primary-blue);
    color: var(--light-color);
    font-size: 28px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-color);
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--light-color);
    transform: scale(1.05);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    /* color: var(--dark-blue); */
    border-bottom: 2px dashed #fff;
    display: inline-block;
    padding-bottom: 15px;
}

.service-description {
    color: var(--light-color);
    font-size: 15px;
}

@media (max-width: 992px) {
    .services-section {
        flex-direction: column;
    }

    .left-column {
        min-height: 250px;
    }
}

.custom-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.custom-btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.custom-btn:hover {
    background: #fff;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.quality-section {
    background: var(--light-color);
    border-radius: 15px;
    padding: 60px 0;
}

.image-container {
    height: 100%;
    width: 100%;

}

.image-container img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.content-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--dark-blue);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 40px;
}

/* .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
} */

.policy-point {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px dashed #ddd;
}


.policy-point i {
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--primary-blue);
    font-size: 20px;
    background: rgba(0, 114, 188, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-point h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-point p {
    margin-bottom: 0;
}

.impact-statement {
    background: var(--primary-blue);
    color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.impact-statement:before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

@media (max-width: 992px) {
    .image-container {
        min-height: 300px;
    }

    .content-container {
        padding: 30px 20px;
    }
}

/* Image hover effects */
.image-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-container img {
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

/* Tab hover effects */
.nav-tabs .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 84, 166, 0.05);
}

.nav-tabs .nav-link:hover:before {
    width: 80%;
}

.nav-tabs .nav-link.active:before {
    width: 80%;
}

/* Icon hover effects */
.icon-container {
    transition: all 0.3s ease;
}

.nav-link:hover .icon-container {
    transform: scale(1.1);
    background: rgba(0, 84, 166, 0.15);
}

/* Mission list hover effects */
.mission-list li {
    transition: all 0.3s ease;
    padding-left: 25px;
}

.mission-list li:hover {
    padding-left: 30px;
    background-color: rgba(0, 84, 166, 0.03);
}

.mission-list li::marker {
    transition: color 0.3s ease;
}

.mission-list li:hover::marker {
    color: var(--accent);
}

/* Content container hover effect */
.content-container {
    transition: all 0.3s ease;
}

.content-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* vision mission ends */

.solution-section {
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.solution-text {
    font-size: 35px;
    line-height: 1.6;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    font-weight: 700;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #002136d2;
    z-index: 0;
}

.solution-section .container {
    position: relative;
    z-index: 1;
}

.widget_title {
    color: #10263B;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.widget_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 40px;
    background-color: #fff;
}

.about-us-widget img {
    margin-bottom: 20px;
    max-width: 80px;
}

.fottxt {
    margin-bottom: 20px;
    line-height: 1.8;
    color: black;
}

.about-us-widget a {
    color: #355F91;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.about-us-widget a:hover {
    color: #10263B;
}

.nav {
    margin-top: 20px;
}

.nav li {
    display: inline-block;
    margin-right: 10px;
}

.nav li a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #2c2c2c;
    color: #999;
    border-radius: 50%;
    transition: all 0.3s;
}

.nav li a:hover {
    background: #355F91;
    color: #fff;
}

.widget-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links ul li {
    margin-bottom: 12px;
}

.widget-links ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.widget-links ul li a:hover {
    color: #355F91;
    padding-left: 5px;
}

.widget-contact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-contact-list ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.widget-contact-list ul li i {
    color: #10263B;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.widget-contact-list ul li .fleft {
    color: white;
    line-height: 1.6;
}

.widget-contact-list ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.widget-contact-list ul li a:hover {
    color: black;
}


/* style for contact us  */
.orange-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sub-left-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-right: 15px;
}

.sub-center-text {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.section-title {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.client-logo {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
    /* center the box */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    /* remove the 110% */
    width: 100%;
    /* remove the 110% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    /* max-width: 100%; */
    height: auto;
    filter: grayscale(0%);
    /* transition: filter 0.3s ease; */
    /* 80  */
    max-width: auto;
    /* don’t touch box edges */
    max-height: 80%;
    /* keep inside the box */
    transition: filter 0.3s ease;
    object-fit: contain;

}



.client-logo:hover img {
    /* filter: grayscale(0%); */
    filter: grayscale(100%);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(242, 101, 34, 0.25);
}

.btn-submit {
    background-color: #355F91;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #10263B;
    transform: translateY(-2px);
}

.cta-section {
    background-color: #10263B;
    color: white;
    /* padding: 60px 0; */
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-cta {
    background-color: #10263B;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: white;
    color: #355F91;
    transform: translateY(-2px);
}

.intro-text {
    font-size: 18px;
    /* margin: 40px 0; */
    text-align: center;
    /* padding: 0 10%; */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .contact-form {
        padding: 25px;
    }

    .intro-text {
        padding: 0 5%;
    }
}


/* sugar factory automation  */
.servicess-header {
    padding: 60px 0 30px;
}

.servicess-title {
    font-size: 48px;
    color: #10263B;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    /* needed for ::after positioning */
    display: inline-block;
    /* keeps the underline only under the text */
    padding-bottom: 10px;
    /* space for the line */
}

/* .servicess-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
} */

/* .servicess-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    center it
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
} */

.servicess-subtitle {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.service-cardd {
    border: none;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-cardd:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-cardd:hover .service-image img {
    transform: scale(1.05);
}


.service-contentt {
    position: relative;
    margin-top: -65px;
    padding: 20px 15px;
    /* padding: 20px 15px; */
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    background: #fff;
}

/* .service-contentt h4 {
    width: 100%;
    /* color: #242424; */
/* margin-bottom: 15px;
    font-weight: 600;
    color: #10263B;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 15px; */
/* space for dotted line */
/* border-bottom: 2px dashed var(--primary-blue); */
/* dotted line */
*/ .service-contentt h4 a {
    display: block;
    /* makes <a> behave like a block element */
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    width: 100%;
    /* spans full width */
    background-color: var(--primary-blue);
    /* uncomment or set your color */
    box-sizing: border-box;
    /* includes padding in width */
}

.service-contentt p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #10263B;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #10263B;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* bullets for sugar factory  */
.service-contentt ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: auto;
    /* pushes read-more down */
    text-align: center;
}

.service-contentt .read-more {
    /* margin-left: 2px; */
    margin-top: auto;
    background-color: #10263B;
    color: #fff;
    /* background: aqua; */
    border-radius: 22px;
    /* color: black; */
    text-align: center;
}

.read-more {
    text-align: center !important;
}

.service-contentt .read-more:hover {
    /* border: 2px solid black; */
    background-color: var(--secondary-yellow);
    color: #10263B;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); */
    transform: translateY(-3px);
}

.service-contentt ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    text-align: left;
}

/* .service-contentt ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #355F91;
    font-weight: bold;
} */

/* space reduce in sugar factory  */
.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

/* our business growth  */
.section-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.sub_left_line,
.sub_right_line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.sub_center_text {
    padding: 0 15px;
    font-weight: 600;
    color: #6c6c6c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 48px;
    color: #242424;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    color: #6c6c6c;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.service-card {
    /* background: #fff; */
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content h4 a {
    color: #242424;
    text-decoration: none;
    transition: color 0.3s;
}

.service-content h4 a:hover {
    color: #355F91;
}

.service-view {
    margin-top: 15px;
}

.service-view a {
    color: #355F91;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.service-view a:hover {
    color: #242424;
    padding-left: 5px;
}

.service-view a i {
    margin-left: 5px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .main-title {
        font-size: 2.3rem;
    }
}


/* navbar height detection  */
.main-header {
    padding-bottom: 10px;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-section {
    height: 70px;
    /* force height */
    display: flex;
    align-items: center;
}

/* logotext  */
.logotext {
    color: #999;
}

.quote-btn {
    /*background-color: var(--secondary-yellow);*/
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    /*color: #10263B;*/
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    /* smooth transition */
    background-color: transparent;
    color: var(--secondary-yellow);
    border: 2px solid var(--secondary-yellow);
}

.quote-btn:hover {
    background-color: var(--secondary-yellow);
    color: #10263B;
}

/* top bar responsive by today */
/* Enhanced Responsive Styles for Header and Navigation */
@media (max-width: 1199px) {
    /* .logo-text span {
        font-size: 16px;
    } */

    .contact-text h6 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .navbar-nav .nav-link {
        padding: 15px 15px;
        font-size: 16px;
    }

    .nav-item {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .main-header .row {
        flex-direction: column;
        text-align: center;
    }

    .logo-section {
        justify-content: center;
        margin-bottom: 15px;
    }

    .header-contact-info {
        justify-content: center;
        margin-bottom: 15px;
        gap: 20px;
    }

    .col-lg-3.col-md-4.text-end {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        padding: 0 10px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
    }
}

@media (max-width: 767px) {
    .logo-img {
        height: 80px;
        margin-right: 10px;
    }

    .logo-img img {
        height: 60px;
    }

    /* .logo-text span {
        font-size: 14px;
        line-height: 1.3;
    } */

    .header-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        font-size: 15px;
    }

    .nav-item {
        padding: 0 8px;
    }
}

@media (max-width: 575px) {
    .logo-section {
        flex-direction: column;
    }

    .logo-img {
        margin-right: 0;
        margin-bottom: 10px;
        height: 85px;
    }

    .logo-img img {
        height: 60px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 16px;
    }

    .quote-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .nav-item {
        padding: 0 5px;
    }

    .navbar-nav .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Prevent navbar collapse on medium screens */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: var(--light-blue);
        padding: 15px;
        /* margin-top: 10px;
        border-radius: 5px; */
        position: relative;
        z-index: 99;
    }

    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }
}


/* Styles for 567px to 991px (tablets / small laptops) */
@media (min-width: 567px) and (max-width: 991px) {
    .main-header .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-section {
        display: flex;
        flex-direction: row;
        /* keep logo + text side by side */
        align-items: center;
        justify-content: center;
        /* padding-top: 130px; */
        /* gap: 12px; */
        /* margin-bottom: 15px; */
    }

    /* .logo-text span {
        font-size: 15px;
        line-height: 1.3;
        display: block;
    } */

    .header-contact-info {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 15px;
        display: none;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .quote-btn {
        margin-top: 10px;
        font-size: 15px;
        padding: 10px 22px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 12px 18px;
        font-size: 15px;
    }

    .logo-img img {
        max-height: 60px;
        width: auto;
        display: block;
    }
}

/* mobile logo  */
/* Mobile Responsive (max-width: 566px) */
@media (max-width: 566px) {

    /* Hide contact info and quote button */
    .header-contact-info,
    .quote-btn {
        display: none !important;
    }

    /* Top Bar */
    .top-bar {
        font-size: 11px;
        text-align: center;
        padding: 5px 0;
    }

    .top-bar .row {
        flex-direction: column;
        gap: 2px;
    }

    .top-bar span {
        display: block;
    }

    /* Main Header */
    .main-header {
        padding: 8px 0;
    }

    /* Logo Section (Image + Text beside each other) */
    .logo-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .logo-section img {
        max-height: 45px;
        width: auto;
    }

    .logo-section1 {
        margin-bottom: 20px !important;
        display: flex;
    }

    .logo-text {
        font-size: 11px;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
    }

    .logo-text .brand-name {
        font-size: 30px;
        font-weight: bold;
        display: block;
    }

    .logo-text .company-name {
        font-size: 10px;
        display: block;
    }
}

/* second  */
@media (max-width: 566px) {
    .logo-section {
        display: flex;
        align-items: center;
        /* vertical alignment */
        justify-content: center;
        gap: 8px;
        /* space between logo and text */
    }

    .logo-section .logo-img img {
        margin-right: 281px;
        max-height: 70px;
        width: auto;
        display: block;
        /* margin-top: -4px; */
    }

    .logo-section .logo-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.2;
        margin-top: -79px;
        /*margin-right: -20px;*/
    }

    .logo-section .logo-text .brand-name {
        font-size: 30px;
        font-weight: bold;
        font-family: "Lobster", sans-serif;
    }

    .logo-section .logo-text .company-name {
        font-size: 14px;
    }
}


/* base style  */
/* Responsive for mobile only for vision and mission (up to 767px) */
@media (max-width: 867px) {
    .vision-mission-card h4 {
        font-size: 18px;
        /* smaller font for mobile */
        flex-direction: column;
        /* icon and text stack if needed */
        align-items: flex-start;
    }

    .vision-mission-card h4 i {
        margin-bottom: 5px;
        /* spacing between icon and text */
    }
}

/* navbar  */
/* Make the hamburger visible regardless of navbar-light/dark */
.navbar-section .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure nothing overlays the button on small screens */
.navbar-section .navbar-toggler {
    z-index: 1050;
    height: 35px;
}

/* Desktop/laptop: keep navbar expanded (won’t spoil layout) */
@media (min-width: 992px) {
    .navbar-section .navbar-collapse {
        display: flex !important;
    }
}

/* new  */
.main-title {
    position: relative;
    /* make the h1 the positioning container */
    display: inline-block;
    /* shrink to text width */
    text-align: center;
    /* center text */
    margin: 0 auto;
    /* center block inside parent */
    margin-bottom: 20px;
}

/* .main-title::after {
    content: '';
    position: absolute;
    bottom: -9px;
    adjust spacing below text
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FFBA00;
    border-radius: 2px;
} */

/* add by me after sir's instruction  */
/* logo name  */
.logo-text {
    text-align: left;
    /* optional, adjust as needed */
    line-height: 1.2;
    /* reduce the line spacing */
}

.brand-name {
    /* font-family: "Lobster", cursive; */
    font-family: 'Signatra DEMO', cursive;
    color: var(--primary-blue);
    /* TRISULA color */
    font-size: 45px;
    /* TRISULA size */
    font-weight: 400;
    /* optional */
    display: block;
    padding: 7px;
}

.company-name {
    font-family: "Lobster", cursive;
    color: #222b33;
    /* Company name color */
    font-size: 18px;
    /* Company name size */
    font-weight: 400;
    /* optional */
    letter-spacing: 0px;
    /* optional for spacing */
}

/* footer background image  */
footer .container {
    background-image: url('assets/slider/slider1.jpg');
    /* Replace with your image path */
    background-size: cover;
    /* Makes the image cover the container */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    padding: 2px;
    /* Optional: add spacing inside the container */
    position: relative;
    /* Required if you want overlay */
    color: #fff;
    /* Optional: change text color if needed */
}


/* testimonial from demo */
.containertwo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.testimonial-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.header-content {
    flex: 0 0 35%;
}

.subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle-line {
    width: 40px;
    height: 2px;
    background-color: #ff6b00;
    margin-right: 15px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    color: #242424;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #6c6c6c;
    line-height: 1.7;
}

.testimonial-carousel {
    flex: 0 0 60%;
    position: relative;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    margin: 0 -15px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    transform: translateX(100%);
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    transform: translateX(0);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-weight: 700;
    color: #242424;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #6c6c6c;
}

.carousel-controls {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
}

.carousel-control {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.carousel-control:hover {
    background: #ff6b00;
    color: #fff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b00;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .section-header {
        flex-direction: column;
    }

    .header-content {
        margin-bottom: 40px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
    }

    .title {
        font-size: 32px;
    }

    .testimonial-section {
        padding: 40px 20px;
    }
}

/* client logo2  */


.sub-title-wrapper {
    display: inline-flex;
    text-align: center !important;
    /* gap: px; */
    margin-left: 550px;
}

.sub_left_line {
    width: 40px;
    /* short line */
    height: 2px;
    background-color: var(--secondary-yellow);
    /* gold color */
}

.sub_center_text {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-yellow);
    /* orange shade */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-row {
    display: flex;
    /* Arrange in a row */
    gap: 15px;
    /* Space between images */
    justify-content: center;
    /* Center images */
}

.image-row img {
    width: 200px;
    /* Adjust size */
    height: auto;
    border-radius: 8px;
}


/* new vision  */


.box-transform {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
}

.section-title-dash {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: #10263B;
}

/* .section-title-dash-color {
      color: #d9aa3a; golden accent
    } */
.section-title-dash-bottom {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: 10263B;
    margin-left: 10px;
    vertical-align: middle;
}

.button-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #10263B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button-primary:hover {
    background: #10263B;
    color: #fff;
}

/* policy demo  */

.quality-policy-section {
    padding: 60px 0;
    width: 100%;
}

.quality-policy-bg {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-policy-text-center {
    text-align: center;
}

.quality-policy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.quality-policy-group-xl {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.quality-policy-heading {
    flex: 1;
}

.quality-policy-title {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.quality-policy-title-color {
    color: var(--primary-blue);
}

/* .quality-policy-title-bottom {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: #FFBA00;
    } */

/* ✅ GRID LAYOUT */
.quality-policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.quality-policy-item {
    width: 100%;
}

.quality-policy-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.quality-policy-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    border-radius: 8px 8px 0 0;
}

.quality-policy-card:hover {
    transform: translateY(-5px);
}

.quality-policy-figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    background-color: var(--primary-blue);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    z-index: 20;
    border-radius: 0 0 8px 8px;
    max-height: 70%;
    overflow-y: auto;
}

.quality-policy-card:hover .quality-policy-figcaption {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.quality-policy-card:hover img {
    transform: scale(1.05);
    border-radius: 8px 8px 0 0;
}

.quality-policy-figcaption p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    color: #e0e0e0;
}

/* ✅ Custom scrollbar inside caption */
.quality-policy-figcaption::-webkit-scrollbar {
    width: 6px;
}

.quality-policy-figcaption::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.quality-policy-figcaption::-webkit-scrollbar-thumb {
    background: #3b71fe;
    border-radius: 3px;
}

/* ✅ Responsive */
@media (max-width: 992px) {
    .quality-policy-title {
        font-size: 30px;
    }

    .quality-policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quality-policy-title {
        font-size: 26px;
    }

    .quality-policy-grid {
        grid-template-columns: 1fr;
    }

    .quality-policy-figcaption {
        transform: translateY(0);
        position: relative;
        max-height: none;
    }

    .quality-policy-card img {
        border-radius: 8px;
    }
}

/* our business growth  */

.testimoniall-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #F5F4F4;
}

.orange-sub-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.orange1-sub-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-left: 480px;
}

.sub-left-line {
    width: 40px;
    height: 2px;
    background-color: var(--secondary-yellow);
    margin-right: 15px;
}

.sub-center-text {
    color: var(--secondary-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.main-title {
    font-size: 48px;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}


.testimoniall-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    min-height: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 38, 59, 0.1);
    margin: 10px;
}

.testimoniall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 38, 59, 0.1);
    border-color: var(--primary-blue);
}

.testimoniall-text {
    color: var(--primary-blue);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimoniall-textlist {
    color: var(--secondary-yellow);
    font-size: 1rem;
    line-height: 1.0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.media-content {
    display: flex;
    align-items: center;
    margin-top: auto;
    /* Pushes to bottom */
    color: var(--secondary-yellow);
}

.testimoniall-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #242424;
    margin-bottom: 5px;
}

.testimoniall-role {
    font-size: 14px;
    color: #6c6c6c;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: #10263B;
    color: #fff;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

/* Fixed Add Testimonial Button */
.fixed-add-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #10263B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.5);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.fixed-add-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.7);
    animation: none;
}

.fixed-add-button i {
    font-size: 28px;
}

/* Modal Styles */
.testimoniall-modal-custom .modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
}

.testimoniall-modal-custom .modal-header {
    background-color: #ff6b00;
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}

.testimoniall-modal-custom .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.testimoniall-modal-custom .btn-close:hover {
    opacity: 1;
}

.testimoniall-modal-custom .modal-body {
    padding: 25px;
}

.testimoniall-modal-custom .modal-footer {
    border-top: none;
    padding: 15px 20px;
}

.testimoniall-modal-custom .btn-primary {
    background-color: #ff6b00;
    border-color: #ff6b00;
    padding: 10px 20px;
    font-weight: 600;
}

.testimoniall-modal-custom .btn-primary:hover {
    background-color: #e55d00;
    border-color: #e55d00;
}

.testimoniall-modal-custom .btn-secondary {
    padding: 10px 20px;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 6px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}


/* Notification */
.notification-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.3rem;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .testimoniall-card {
        height: 300px;
        /* Slightly taller on medium screens */
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.3rem;
    }

    .testimoniall-section {
        padding: 60px 0;
    }

    .fixed-add-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .fixed-add-button i {
        font-size: 24px;
    }

    .testimoniall-card {
        height: 250px;
        /* Adjusted for mobile */
    }
}

/* read more button for business growth  */
.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--secondary-yellow);
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    width: fit-content;
}

.read-more-btn:hover {
    background-color: var(--secondary-yellow);
    color: var(--primary-blue);
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); */
    transform: translateY(-3px);
}



/* overlay inbetween the banner and vision mission  */

.overlay-section {
    position: relative;
    margin: -80px auto 40px;
    max-width: 1200px;
    z-index: 100;
}

.overlay-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin-left: auto;
    margin-right: 30px;
    margin-bottom: -60px;
    width: 45%;
    position: relative;
    border-top: 5px solid var(--secondary-yellow);
}

.highlight-company {
    color: var(--primary-blue);
    /* change this to your desired color */
    font-weight: bold;
    /* optional */
}

.overlay-card h3 {
    color: #1a3a6c;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.overlay-card p {
    color: #10263B;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
}

.overlay-card::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: var(--secondary-yellow);
    transform: rotate(45deg);
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .overlay-card {
        width: 60%;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .overlay-card {
        width: 80%;
        margin: -50px auto 30px;
    }
}

@media (max-width: 576px) {
    .overlay-card {
        width: 90%;
        padding: 20px;
        margin: -40px auto 20px;
    }

    .overlay-card h3 {
        font-size: 20px;
    }

    .overlay-card p {
        font-size: 14px;
    }
}

/* logo name in the footer  */
.logo-text2 {
    text-align: left;
    /* optional, adjust as needed */
    line-height: 1.2;
    /* reduce the line spacing */
}

.brand-name2 {
    /* font-family: "Lobster", cursive; */
    font-family: 'Signatra DEMO', cursive !important;
    color: #fff;
    /* TRISULA color */
    font-size: 30px !important;
    /* TRISULA size */
    font-weight: 200 !important;
    /* optional */
}

.company-name2 {
    color: #fff;
    /* Company name color */
    font-size: 14px;
    /* Company name size */
    /* font-weight: normal; */
    /* optional */
    letter-spacing: 0px;
    /* optional for spacing */
    font-family: 'Signatra DEMO', cursive !important;
}


/* responsive for logo heading  */

@media (max-width: 768px) {
    .sub-title-wrapper {
        display: inline-flex;
        text-align: left !important;
        margin-left: 550px;
    }
}



/* vision mission button  */

.nav-tabs {
    display: inline-flex;
    /* shrink ul to content */
    border-bottom: none;
    /* optional: remove bottom border */
    margin-left: -20px;
}

.nav-tabs .nav-item {
    margin-right: 10px;
    /* spacing between tabs */
}

.navbar-collapse {
    /* flex-basis: 100% !important; */
    flex-grow: 0 !important;
    align-items: center;
}


/* logo footer  */

.client-logo-carousel2 {
    padding: 40px 0;
}

.client-logo-carousel2 .slick-slide {
    margin: 0 15px;
    /* left & right spacing between logos */
}


.sub-title1-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sub_left1_line {
    width: 40px;
    height: 2px;
    background-color: #d9aa3a;
}

.sub_center1_text {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-left1.mb-4 {
    margin-left: 80px;
    /* adjust as needed */
    margin-right: 50px;
    /* adjust as needed */
}

/* logo in footer  */
.logo-wrapper {
    display: flex;
    align-items: center;
    /* vertically center image + text */
    gap: 10px;
    /* space between image and text */
}

.logo-wrapper img {
    height: 70px;
    /* adjust logo size */
    width: auto;
}


/* line  */
.orange-sub-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.orange2-sub-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-left: 450px;
}

.sub-left2-line {
    width: 40px;
    height: 2px;
    background-color: var(--secondary-yellow);
    margin-right: 15px;
}

.sub-center2-text {
    color: var(--secondary-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* button  */
.read-more-btn1 {
    display: inline-block;
    padding: 12px 30px;
    background-color: #10263B;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    width: fit-content;
}

.read-more-btn1:hover {
    color: #fff;
}

.service-cardd {
    display: flex;
    flex-direction: column;
}

.service-contentt {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* allows content area to expand */
}

.service-contentt h4,
.service-contentt p {
    flex-grow: 0;
    /* don’t stretch title/para */
}

.service-contentt .read-more-btn1 {
    margin-top: auto;
    /* pushes button to bottom */
}

.sec-padding {
    padding: 70px 0 0;
}

.footer-bg {
    background-color: #151826;
    color: var(--light-color);
}

.about-us-widget a {
    text-decoration: none;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.logo-text2 {
    display: inline-block;
}

.brand-name2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}

.company-name2 {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fottxt {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-us-widget>a {
    color: var(--light-color);
    font-weight: 500;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-us-widget>a:hover {
    color: var(--light-color);

}

.about-us-widget>a i {
    margin-left: 5px;
    font-size: 0.9rem;
}

.about-us-widget ul.nav {
    margin-top: 25px;
    gap: 15px;
}

.about-us-widget ul.nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.about-us-widget ul.nav li a:hover {
    background: var(--yellow);
    color: var(--light-color);
    transform: translateY(-3px);
}

.widget_title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--light-color);
    border-radius: 2px;
}

.widget-contact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-contact-list ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.widget-links .widget-contact-list ul li a {
    /* color: #a8b2c4; */
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.widget-links .widget-contact-list ul li a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.widget-contact .widget-contact-list ul li {
    margin-bottom: 20px;
}

.widget-contact .widget-contact-list ul li i {
    color: var(--light-color);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 5px;
    min-width: 20px;
}

.fleft {
    color: #a8b2c4;
    line-height: 1.6;
}

.widget-contact .widget-contact-list ul li a {
    /* color: #a8b2c4; */
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-contact .widget-contact-list ul li a:hover {
    color: var(--light-color);
}

.footer-t-bottom {
    background: var(--primary-blue);
    padding: 20px 0;
    /* margin-top: 50px; */
}

.fo-txt {
    color: #a8b2c4;
    font-size: 16px;
}

.designby a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.designby a:hover {
    color: var(--light-color);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .sec-padding {
        padding: 50px 0 0;
    }

    .brand-name2 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {


    .widget_title {
        font-size: 1.2rem;
    }

    .footer-t-bottom .row>div {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-t-bottom .row>div:last-child {
        margin-bottom: 0;
    }

    .about-us-widget ul.nav {
        justify-content: center;
    }
}

.designby {
    color: #95a5a6;
    margin-bottom: 0;
    font-size: 15px;
}

.footer-services li a::before {
    content: "\f105";
    /* fa-chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-yellow);
}

.footer-services li a::before,
.footer-quicklinks li a::before {
    content: "\f105";
    /* fa-chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-yellow);
}

.client-section {
    padding: 80px 0;
    background: var(--light-color);
}

.text-left1 {
    text-align: center;
    margin-bottom: 20px !important;
}

.client-logo-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo-slide {
    padding: 0 15px;
    outline: none;
}

.logo-item {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 38, 59, 0.1);
    margin: 0 10px;
}

.logo-item:hover {
    box-shadow: 0 15px 30px rgba(16, 38, 59, 0.1);
    border-color: var(--yellow);
}

.logo-item img {
    max-width: 100%;
    /* max-height: 100px; */
    width: auto;
    height: auto;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s ease;
}


/* Slick Carousel Customization */
.client-logo-carousel .slick-prev,
.client-logo-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.client-logo-carousel .slick-prev:hover,
.client-logo-carousel .slick-next:hover {
    background: var(--primary-blue);
}

.client-logo-carousel .slick-prev {
    left: -50px;
}

.client-logo-carousel .slick-next {
    right: -50px;
}

.client-logo-carousel .slick-prev:before,
.client-logo-carousel .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: var(--light-color);
}

.client-logo-carousel .slick-prev:before {
    content: "\f053";
}

.client-logo-carousel .slick-next:before {
    content: "\f054";
}

.client-logo-carousel .slick-dots {
    bottom: -50px;
}

.client-logo-carousel .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-blue);
    opacity: 0.3;
}

.client-logo-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--yellow);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .text-left1 h1 {
        font-size: 2.4rem;
    }

    .client-logo-carousel .slick-prev {
        left: -30px;
    }

    .client-logo-carousel .slick-next {
        right: -30px;
    }
}

@media (max-width: 992px) {
    .text-left1 h1 {
        font-size: 2.2rem;
    }

    .client-section {
        padding: 60px 0;
    }

    .logo-item {
        height: 130px;
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .text-left1 h1 {
        font-size: 1.8rem;
    }

    .sub_center1_text {
        font-size: 0.9rem;
    }

    .client-logo-carousel .slick-prev,
    .client-logo-carousel .slick-next {
        display: none !important;
    }

    .logo-item {
        height: 120px;
        padding: 20px 15px;
        margin: 0 5px;
    }

    .logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .text-left1 h1 {
        font-size: 1.6rem;
    }

    .client-section {
        padding: 40px 0;
    }

    .text-left1 {
        margin-bottom: 40px !important;
    }

    .logo-item {
        height: 110px;
        padding: 15px 10px;
    }

    .logo-slide {
        padding: 0 5px;
    }
}

.read-more-btn::after {
    font-weight: 900;
    content: "->";
    /* fa-arrow-right */
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(4px);
}

.vision-mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

.image-container {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(16, 38, 59, 0.15);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(16, 38, 59, 0.8) 0%, rgba(53, 65, 105, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: var(--light-color);
}

.image-overlay h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.image-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.content-container {
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.main-heading {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.vision-mission-tabs {
    margin-bottom: 30px;
}

.nav-tabs {
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 25px;
    transition: all 0.3s ease;
    background: transparent;
    font-family: var(--heading-font);
    font-size: 20px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-blue);
}

.nav-tabs .nav-link.active {
    color: var(--primary-blue);
    background-color: transparent;

}

.tab-content {
    padding: 0;
}

.tab-pane {
    color: var(--theme-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    /* background: var(--secondary-yellow); */
    border-radius: 50%;
    margin-right: 10px;
}

.icon-container i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    min-width: 120px;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--theme-dark);
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 992px) {
    .image-container {
        margin-bottom: 40px;
    }

    .image-container img {
        min-height: 400px;
    }

    .content-container {
        padding: 0 20px;
    }

    .main-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
    }

    .image-overlay {
        padding: 30px;
    }

    .image-overlay h2 {
        font-size: 2rem;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .stats-container {
        gap: 15px;
    }

    .stat-item {
        min-width: 100px;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .vision-mission-section {
        padding: 40px 0;
    }

    .image-overlay {
        padding: 20px;
    }

    .image-overlay h2 {
        font-size: 1.8rem;
    }

    .main-heading {
        font-size: 1.6rem;
    }

    .nav-tabs .nav-link {
        padding: 8px 12px;
    }
}

/* Banner Styling */
.banner {
    background:
        linear-gradient(rgba(16, 38, 59, 0.8), rgba(16, 38, 59, 0.9)),
        url('../assets/slider/slider4.jpg') center/cover no-repeat;
    color: var(--light-color);
    padding: 120px 0 80px;
    /* margin-bottom: 50px; */
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 1;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    margin-top: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--light-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "/";
    padding: 0 10px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-info {
    padding-right: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 25px; */
}

.contact-icon {
    /* background: #002964; */
    color: var(--primary-blue);
    width: 30px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-right: 15px; */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* .contact-info-item:hover .contact-icon {
    background: var(--primary-blue);
    color: var(--secondary-yellow);
    transform: rotate(360deg);
} */

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 38, 59, 0.1);
    border-top: 4px solid var(--secondary-yellow);
}

.form-control {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: var(--body-font);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(16, 38, 59, 0.25);
}

.btn-primary {
    background: var(--yellow);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    border-radius: 8px;
}

.btn-primary:hover {
    background: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 38, 59, 0.2);
}

.contact-section-title2 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--primary-blue);
}

.contact-section-title2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 4px;
    background: var(--secondary-yellow);
}

.contact-form .section-title2::after {
    left: 0;
    right: auto;
}

.sub-heading {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.content-card {
    padding: 20px;
    border: double #ddd;
    border-radius: 8px;
    height: 100%;
}

/* Timeline Section Styling */
.timeline-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f9fafb, #f1f5f9);
}

.timeline-section-title2 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    font-size: 40px;
    color: var(--primary-blue);
}


/* Timeline Styling */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-content {
    position: relative;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(16, 38, 59, 0.1);
    border-top: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 38, 59, 0.15);
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 800;
    background: transparent;
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 1;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -30rem;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -30rem;
    text-align: right;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--yellow);
    border: 4px solid var(--yellow);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -15px;
}

.timeline-item:nth-child(even)::after {
    left: -15px;
}

.project-list {
    margin-top: 20px;
}

.project-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.project-item::before {
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 1.5rem;
    line-height: 1;
}

.project-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.project-details {
    color: var(--theme-dark);
    font-size: 0.95rem;
    margin-left: 5px;
}

.project-sublist {
    margin-top: 8px;
    padding-left: 20px;
    list-style-type: none;
}

.project-sublist li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.project-sublist li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--yellow);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .timeline-item:nth-child(odd) .timeline-year {
        right: -33rem;
        font-size: 2rem;
    }

    .timeline-item:nth-child(even) .timeline-year {
        left: -33rem;
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 100px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        padding-right: 0;
        padding-left: 100px;
    }

    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 18.5px;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        text-align: left;
        margin-bottom: 20px;
        font-size: 2.2rem;
        display: inline-block;
        text-shadow: 2px 2px 0 var(--yellow),
            -2px -2px 0 var(--yellow),
            2px -2px 0 var(--yellow),
            -2px 2px 0 var(--yellow);
    }
}

@media (max-width: 768px) {
    /* .timeline-section {
        padding: 60px 0;
    } */

    .timeline-content {
        padding: 20px;
    }

    .project-sublist {
        padding-left: 15px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        font-size: 1.8rem;
    }
}

.gallery-section {
    padding: 80px 30px !important;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

/* .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 70px;
    height: 4px;
    background: var(--yellow);
    transform: translateX(-50%);
} */

/* Gallery Item Styling */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 38, 59, 0.1);
    transition: all 0.4s ease;
    height: 280px;
    margin-bottom: 25px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 38, 59, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 38, 59, 0.85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-category {
    color: var(--light-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
    }
}

.sugar-automation {
    padding: 0 0 60px;
    background: linear-gradient(to bottom, #f8fafc, var(--light-gray));
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-list li::before {
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
    line-height: 1;
}


.service-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow);
}

.automation-card {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 38, 59, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.automation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 38, 59, 0.15);
}

.card-header {
    background: var(--primary-blue);
    color: var(--light-color);
    padding: 20px;
    text-align: center;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 i {
    margin-right: 10px;
    color: var(--secondary-yellow);
}

.automation-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.automation-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    position: relative;
    padding-left: 30px;
}

.automation-list li:last-child {
    border-bottom: none;
}

.automation-list li i {
    color: var(--secondary-yellow);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1rem;
}


@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        padding: 60px 30px 30px;
        background-color: #fff;
        transition: right 0.4s ease;
        z-index: 9999;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 1.1rem;
        color: #10263B !important;
        display: inline-block;
    }

    .btn-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #fff !important;
    }

    .orange1-sub-title,
    .orange2-sub-title {
        margin-left: 0;
        justify-content: center;
    }

    .main-heading {
        text-align: center;
        font-size: 2.3rem;
    }
}


/* career in contact us new 15.09 */
/* Career Section */
.careers {
    background-color: #f4f4f4;
    padding: 60px 0;
}



.careers h2 {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    margin-top: 30px;
    font-size: 40px;
}

.careers h2 span {
    color: var(--secondary-yellow);
}

.careers form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.careers .form-label {
    font-weight: 600;
    color: var(--primary-blue);
}

.careers .form-control,
.careers .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: none;
    padding: 10px;
    transition: all 0.2s ease;
}

.careers .form-control:focus,
.careers .form-select:focus {
    border-color: #10263B;
    box-shadow: 0 0 0 0.2rem rgba(16, 38, 59, 0.2);
}

.careers small {
    font-size: 0.85rem;
    color: #6c757d;
}

.careers button {
    background-color: var(--secondary-yellow) !important;
    color: #fff;
    font-weight: 600;
    padding: 10px 40px;
    /* border-radius: 30px; */
    border: none;
    transition: 0.3s ease;
}

.careers button:hover {
    background-color: var(--secondary-yellow);
    color: #10263B;
}



/* career page  */
/* === Career Section Styles === */
.career-section {
    background-color: #f5f7fa;
    padding: 40px 20px;
    color: var(--primary-blue);
    /* your primary color */
}

.career-container {
    max-width: 900px;
    margin: auto;
}

.career-header {
    text-align: center;
    margin-bottom: 50px;
}

.career-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.career-header p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.career-form-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.career-form-container h4 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.career-form .form-group {
    margin-bottom: 20px;
}

.career-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.career-form label span {
    color: red;
}

.career-form input,
.career-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s;
}

.career-form input:focus,
.career-form textarea:focus {
    border-color: #36406a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(54, 64, 106, 0.1);
}

.submit-btn {
    display: block;
    width: 100%;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .career-header h1 {
        font-size: 34px;
    }

    .career-form-container {
        padding: 25px 20px;
    }
}

/* Unique style for Career heading section */
.career-header-section {
    padding-top: 0px !important;
    /* reduce top space */
}

.career-header-section .main-heading {
    margin-top: 15px !important;
}

/* career page end  */



/* new responsive 15.09 */
@media (min-width: 992px) and (max-width: 1052px) {

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        padding: 0px;
        gap: 0px !important;
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: center;
    }
}




/* services new starts */

/* Services Grid Section - Auto Scroll */
.services-grid {
    padding: 60px 0;
    background: #f5f5f5;
    overflow: hidden;
}

/* Override Bootstrap row to create horizontal scroll */
.services-grid .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    animation: infiniteScroll 40s linear infinite;
    will-change: transform;
    width: max-content;
}

.services-grid .row:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Override Bootstrap columns to fixed width */
.services-grid .col-lg-6,
.services-grid .col-md-4 {
    flex: 0 0 auto;
    width: 460px;
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
}

/* Service Card Styling */
.service-cardd {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    height: 100%;
}

.service-cardd:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-cardd:hover .service-image img {
    transform: scale(1.12);
}


/* Dark overlay on hover */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-cardd:hover .service-image::after {
    opacity: 1;
}

/* Service Content */
.service-contentt {
    padding: 0;
    background: white;
}

.service-contentt h4 {
    margin: 0;
    background: var(--primary-blue);
    color: white;
    padding: 15px 25px;
    margin: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-contentt h4 a {
    color: #fff;
    text-decoration: none;
}

.service-contentt h4 a:hover {
    color: white;
}

/* Service List Container */
.service-contentt ul {
    padding: 25px;
    margin: 0;
}

/* Service List */
.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li::before {

    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: -2px;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .services-grid .col-lg-6,
    .services-grid .col-md-4 {
        width: 420px;
    }

    .service-image {
        height: 190px;
    }
}

@media (max-width: 1024px) {

    .services-grid .col-lg-6,
    .services-grid .col-md-4 {
        width: 380px;
    }

    .service-image {
        height: 180px;
    }

    .service-contentt h4 {
        font-size: 1.15rem;
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {

    .services-grid .col-lg-6,
    .services-grid .col-md-4 {
        width: 340px;
    }

    .service-image {
        height: 170px;
    }

    .service-contentt h4 {
        font-size: 1.1rem;
        padding: 16px 20px;
    }

    .service-contentt ul {
        padding: 22px 20px;
    }

    .service-list li {
        font-size: 0.92rem;
    }

    .services-grid .row {
        gap: 25px;
    }
}

@media (max-width: 480px) {

    .services-grid .col-lg-6,
    .services-grid .col-md-4 {
        width: 300px;
    }

    .service-image {
        height: 160px;
    }

    .service-contentt h4 {
        font-size: 1.05rem;
        padding: 14px 18px;
    }

    .service-contentt ul {
        padding: 20px 18px;
    }

    .service-list li {
        font-size: 0.9rem;
        gap: 10px;
    }

    .services-grid .row {
        gap: 20px;
    }
}




/* services new ends */


/* ===================================
   FOOTER SECTION - PERFECT RESPONSIVE
   =================================== */

/* Base Footer Styles */
.footer-bg {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
}

.sec-padding {
    padding: 60px 0 0 0;
}

.footer-column {
    margin-bottom: 45px;
}

/* Logo Section */
.logo-wrapper {
    margin-bottom: 25px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: 60px !important;
}

.logo-img {
    flex-shrink: 0;
}

.logo-img img {
    margin-bottom: 0px;
    border-radius: 50%;
    /*width: 80px;*/
    background: #fff;
    height: 80px;
    object-fit: contain;
}

.logo-text {
    flex: 1;
}

.brand-name2 {
    flex-direction: column;
    justify-content: flex-start !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    /* line-height: 1.4; */
    color: #fff;
    display: flex !important;
    /* text-align: start; */
    margin-left: 5px !important;
}

/* About Us Widget */
.about-us-widget p.fottxt {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.about-us-widget>a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 20px;
}

.about-us-widget>a:hover {
    color: #2980b9;
}

.about-us-widget>a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.about-us-widget>a:hover i {
    transform: translateX(3px);
}

/* Social Media Links */
.about-us-widget ul.nav {
    display: flex;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.about-us-widget ul.nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.about-us-widget ul.nav li a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

/* Widget Containers */
.widget-links,
.widget-contact {
    height: 100%;
    text-align: left;
}

/* Widget Title */
.widget_title {
    text-align: justify;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.widget_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ffffff;
}

/* Widget Contact List Container */
.widget-contact-list {
    width: 100%;
}

/* Footer Links */
.footer-quicklinks,
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quicklinks li,
.footer-services li {
    margin-bottom: 13px;
}

.footer-quicklinks li:last-child,
.footer-services li:last-child {
    margin-bottom: 0;
}

.footer-quicklinks li a,
.footer-services li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
}

.footer-quicklinks li a::before,
.footer-services li a::before {
    content: '›';
    font-size: 1rem !important;
    position: relative;
    left: 0;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-quicklinks li a:hover,
.footer-services li a:hover {
    color: #3498db;
    padding-left: 22px;
}

/* Contact Widget - Fixed Get In Touch */
.widget-contact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-contact-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 6px;
}

.widget-contact-list ul li:last-child {
    margin-bottom: 0;
}

.widget-contact-list ul li i {
    color: #3498db;
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.widget-contact-list ul li .fleft {
    flex: 1;
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    text-align: justify;
}

.widget-contact-list ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.widget-contact-list ul li a:hover {
    color: #3498db;
}

/* Footer Bottom */
.footer-t-bottom {
    background: #1a252f;
    padding: 30px 0;
}

.fo-txt {
    color: #95a5a6;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.designby {
    margin: 0;
}

.designby a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.designby a:hover {
    color: #2980b9;
}

/* ===================================
   RESPONSIVE BREAKPOINTS - EVEN SPACING
   =================================== */

/* Large Desktop - 1400px and above */
@media (min-width: 1400px) {
    .footer-column {
        padding: 0 20px;
    }
}

/* Desktop - 1200px to 1399px */
@media (max-width: 1399px) {
    .footer-column {
        padding: 0 15px;
    }
}

/* Large Tablet - 992px to 1199px */
@media (max-width: 1199px) {
    .footer-bg {
        padding: 55px 0 0;
    }

    .footer-column {
        margin-bottom: 45px;
        padding: 0 15px;
    }

    .brand-name2 {
        font-size: 1.08rem;
    }

    .widget_title {
        font-size: 1.28rem;
        margin-bottom: 23px;
    }

    .about-us-widget p.fottxt,
    .footer-quicklinks li a,
    .footer-services li a,
    .widget-contact-list ul li .fleft {
        font-size: 0.98rem;
    }

    .footer-t-bottom {
        margin-top: 50px;
    }
}

/* Tablet - 768px to 991px */
@media (max-width: 991px) {
    .footer-bg {
        padding: 50px 0 0;
    }

    /* .footer-column {
        margin-bottom: 45px;
        padding: 0 20px;
        margin-left:10px;
    } */

    .brand-name2 {
        font-size: 1.05rem;
    }

    .about-us-widget p.fottxt {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .widget_title {
        font-size: 1.25rem;
        margin-bottom: 22px;
    }

    .footer-quicklinks li,
    .footer-services li {
        margin-bottom: 12px;
    }

    .footer-quicklinks li a,
    .footer-services li a,
    .widget-contact-list ul li .fleft {
        font-size: 0.96rem;
    }

    .widget-contact-list ul li {
        margin-bottom: 16px;
    }

    .footer-t-bottom {
        margin-top: 48px;
    }
}

/* Small Tablet/Large Phone - 576px to 767px */
@media (max-width: 767px) {
    .footer-bg {
        padding: 45px 0 0;
    }

    .footer-column {
        margin-bottom: 45px;
        padding: 0 20px;
        text-align: center;
    }

    /* Logo stays at original size */


    .logo-img img {
        width: 60px;
        height: 60px;
    }

    .brand-name2 {
        font-size: 1.05rem;
        text-align: center;
    }

    .about-us-widget p.fottxt {
        font-size: 0.96rem;
        line-height: 1.75;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .about-us-widget>a {
        display: inline-block;
    }

    .widget_title {
        font-size: 1.22rem;
        margin-bottom: 20px;
    }

    .widget_title::after {
        left: 10%;
        transform: translateX(-50%);
    }

    .footer-quicklinks li,
    .footer-services li {
        margin-bottom: 12px;
    }

    .footer-quicklinks li a,
    .footer-services li a {
        font-size: 0.96rem;
    }

    /* Fixed Get In Touch for mobile */
    .widget-contact-list ul li {
        padding-left: 15px;
        margin-bottom: 16px;
    }

    .widget-contact-list ul li .fleft {
        text-align: left;
        font-size: 0.96rem;
    }

    .about-us-widget ul.nav {
        justify-content: center;
    }

    .footer-t-bottom {
        margin-top: 45px;
        padding: 23px 0;
    }

    .footer-t-bottom .row {
        text-align: center;
    }

    .fo-txt.text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .fo-txt {
        font-size: 0.92rem;
    }
}

/* Mobile - 480px to 575px */
@media (max-width: 575px) {
    .footer-bg {
        padding: 40px 0 0;
    }

    .footer-column {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .logo-img img {
        width: 60px;
        height: 60px;
    }

    .brand-name2 {
        font-size: 1.02rem;
    }

    .about-us-widget p.fottxt {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .widget_title {
        font-size: 1.18rem;
        margin-bottom: 18px;
    }

    .footer-quicklinks li,
    .footer-services li {
        margin-bottom: 11px;
    }

    .footer-quicklinks li a,
    .footer-services li a {
        font-size: 0.94rem;
    }

    .widget-contact-list ul li {
        margin-bottom: 15px;
    }

    .widget-contact-list ul li .fleft {
        font-size: 0.94rem;
    }

    .footer-t-bottom {
        margin-top: 40px;
    }

    .fo-txt {
        font-size: 0.9rem;
    }
}

/* Small Mobile - 375px to 479px */
@media (max-width: 479px) {
    .footer-bg {
        padding: 35px 0 0;
    }

    .footer-column {
        margin-bottom: 38px;
    }

    .logo-img img {
        width: 60px;
        height: 60px;
    }

    .brand-name2 {
        font-size: 1.5rem !important;
        text-align: left;
    }

    .about-us-widget p.fottxt {
        font-size: 0.92rem;
    }

    .widget_title {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .footer-quicklinks li,
    .footer-services li {
        margin-bottom: 10px;
    }

    .footer-quicklinks li a,
    .footer-services li a {
        font-size: 0.92rem;
    }

    .widget-contact-list ul li {
        margin-bottom: 14px;
    }

    .widget-contact-list ul li .fleft {
        font-size: 0.92rem;
    }

    .fo-txt {
        font-size: 0.88rem;
    }
}

/* Extra Small Mobile - 320px to 374px */
@media (max-width: 374px) {
    .footer-bg {
        padding: 32px 0 0;
    }

    .footer-column {
        margin-bottom: 35px;
    }

    .logo-img img {
        width: 100px;
        height: 100px;
    }

    .brand-name2 {
        font-size: 1.2rem !important;
        margin-right: 50px;
        text-align: left;
        justify-content: flex-end !important;
        margin-top: 10px;
    }

    .about-us-widget p.fottxt {
        font-size: 0.9rem;
    }

    .widget_title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-quicklinks li,
    .footer-services li {
        margin-bottom: 10px;
    }

    .footer-quicklinks li a,
    .footer-services li a {
        font-size: 0.9rem;
    }

    .widget-contact-list ul li {
        margin-bottom: 13px;
    }

    .widget-contact-list ul li .fleft {
        font-size: 0.9rem;
    }

    .fo-txt {
        font-size: 0.86rem;
    }
}

/* footer responsive ends  */

/*our service card starts*/



/*our service card ends*/

.icon1 {
    color: var(--primary-blue) !important;
    font-size: 18px;
    margin-top: 5px;
}

.button-container {
    padding-bottom: 60px !important;
    background-color: #F4F6F7 !important;
    display: flex;
    justify-content: center;
}



/* new business growth  */
/* Center alignment for title & content */
.testimoniall-section .main-title,
.testimoniall-section .section-description {
    text-align: center;
}

/* Full-width container with margin */
.testimoniall-fullwidth {
    margin: 0 30px;
}

/* Flex-based carousel layout */
.testimoniall-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Each testimonial card (default for desktop - 3 per row) */
.testimoniall-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    min-height: 180px;
    border: 1px solid rgba(16, 38, 59, 0.1);
    transition: all 0.3s ease;
}

/* Hover effect */
.testimoniall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 38, 59, 0.1);
}



/* Centered Read More button */
.testimoniall-section .read-more-btn {
    margin: 0 auto;
    display: inline-block;
}



/* new for about  */
/* Equal height styling for first section */
.equal-height-row {
    display: flex;
    align-items: stretch;
}

.equal-height-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.equal-height-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Business cards styling for second section */
.business-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
    font-weight: 700;
}

.business-card-horizontal {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.business-card-img {
    height: 200px;
    overflow: hidden;
}

.business-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-card-horizontal:hover .business-card-img img {
    transform: scale(1.05);
}

.business-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.business-card-content h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.business-card-content p {
    color: #555;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .equal-height-row {
        flex-direction: column;
    }

    .equal-height-img {
        height: 400px;
        margin-bottom: 30px;
    }

    .business-cards-row {
        justify-content: center;
    }
}


/* new  for vission mission */
/* General Section Styling */
.vision-section {
    background: #36406A;
    padding: 30px !important;
    color: #fff;
}

.mission-section {
    background: #fff;
    padding: 30px;
    color: #36406A;
}

.section-title {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 3px;
}

/* Tick List Styling */
.tick-list {
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
}

.tick-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Vision Tick */
.vision-tick li::before {
    content: "✔";
    /* Tick symbol */
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    /* Gold */
    color: #36406A;
    /* Dark tick */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 100;
}

/* Mission Tick */
.mission-tick li::before {
    content: "✔";
    /* Tick symbol */
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #36406A;
    /* Dark circle */
    color: #fff;
    /* White tick */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Image max-width */
/* .vision-section img,
.mission-section img {
    max-width: 350px;
} */


/* new style for demo  */
.quality-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #eef2f5 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #36406A;
    text-align: center;
}

.quality-motto {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.motto-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #36406A;
}

.motto-text {
    font-style: italic;
    font-size: 18px;
    color: #36406A;
    margin: 0;
}

/* Cards */
.policy-card,
.commitments-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.policy-card:hover,
.commitments-card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #36406A;
    border-bottom: 2px solid #36406A;
    padding-bottom: 10px;
}

.policy-text {
    font-size: 16px;
    line-height: 1.7;
    color: #36406A;
    flex-grow: 1;
    /* push content to fill space */
}

/* Commitments List */
.commitments-list {
    list-style: none;
    padding-left: 0;
}

.commitments-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.commitments-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #36406A;
    font-weight: bold;
    font-size: 18px;
}

.commitment-title {
    font-weight: 600;
    color: #36406A;
    display: block;
    margin-bottom: 5px;
}

/* Quality Image */
.quality-image {
    border-radius: 10px;
    width: 100%;
    height: 600px;
    /* Fill the card height */
    min-height: 350px;
    /* Minimum height */
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Flex Stretch to match heights */
.row.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

@media (max-width: 768px) {
    .quality-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .quality-motto {
        margin-bottom: 30px;
    }

    .quality-image {
        min-height: 250px;
        margin-bottom: 20px;
    }
}


/* new  */
/* Common Styles */
.section-container {
    background-color: #36406A;
    padding: 30px;
}

.text-left1 {
    text-align: center;
    margin-bottom: 50px;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #36406A;
}

.section-description {
    font-size: 18px;
    color: #36406A !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section 1 - Clients */
.clients-section {
    background: #36406A;
    /* Added background color for 1st section */
}

.clients-section .main-heading,
.clients-section .section-description {
    color: white;
    /* Make text white for better contrast */
}

.client-content-card,
.client-logos-card {
    /* background: white; */
    border-radius: 10px;
    height: 100%;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    height: 100%;
    align-content: center;
}

.client-logo {
    width: 90%;
    height: 150px !important;
    object-fit: contain;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

/* Section 2 - Stats */
.stats-section {
    background: transparent;
    /* Removed background color for 2nd section */
}

.stats-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    height: 100%;
    /* Fixed height for square shape */
    width: 170px;
    /* Fixed width for square shape */
    margin: 0 auto;
    /* Center the cards */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    font-size: 40px;
    color: #36406A;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 32px;
    font-weight: 700;
    color: #36406A;
    margin-bottom: 10px;
}

.stats-text {
    font-size: 16px;
    color: #4a5568;
}

/* Equal height rows */
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row>[class*='col-'] {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card {
        height: 100%;
        width: 180px;
    }

}

@media (max-width: 768px) {
    .section-container {
        padding: 0px 0;
    }

        .section-description {
            font-size: 18px;
            color: #36406A !important;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            padding: 0px !important;
        }

                .client-content-card,
                .client-logos-card {
                    /* background: white; */
                    border-radius: 10px;
                    height: 100%;
                    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    /* padding: 10px; */
                }

    .main-heading {
        font-size: 28px;
    }

    .client-image {
        height: 250px;
        margin-bottom: 0px;
    }

    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo {
        height: 80px;
    }

    .stats-card {
        height: 100%;
        width: 160px;
        margin-bottom: 20px;
    }

    .stats-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .client-logos-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        height: 100%;
        width: 140px;
    }

    .stats-number {
        font-size: 24px;
    }

    .stats-text {
        font-size: 14px;
    }
}


@media (max-width: 1200px) {
    .stats-card {
        background: white;
        border-radius: 10px;
        padding: 10px;
        text-align: center;
        height: 100%;
        width: 150px;
        margin: 0 auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/* new for industries  */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-transform: capitalize;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.industry-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Dark transparent overlay */
.industry-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.6));
    /* soft top → darker bottom */
    z-index: 2;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-title {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 20px;
    /* background: linear-gradient(to top, rgba(54, 64, 106, 0.9), transparent); */
    z-index: 2;
}

.industry-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.industry-card:hover .industry-title::after {
    width: 80%;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #666;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }
}

/* text color for inner page heading  */
.fw-bold {
    color: white !important;
    font-weight: 700 !important;
}

/* swipper button color for gallery  */
.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    color: black;
    background-color: #36406A;
}





/* swipper for gallery  */
/* Button Row – equal height + width */
.gallery-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-buttons .btn-primary {
    background-color: #36406A;
    border: none;
    padding: 15px 40px;
    /* equal height & width */
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    height: 60px;
    /* fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-buttons .btn-primary:hover {
    background-color: #2a3355;
}

/* Ensure columns have equal height */
.gallery-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Equal-sized preview images */
.gallery-preview {
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    height: 260px;
    /* fixed height */
    width: 100%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-preview:hover {
    transform: scale(1.03);
}

/* Caption text */
.gallery-box h5 {
    margin-top: 12px;
    font-weight: 600;
    color: #36406A;
}

/* Modal slider images equal height */
.carousel-item img {
    height: 500px !important;
    width: 100%;
    object-fit: contain;
    /* prevents cropping */
    background: #000;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .gallery-buttons .btn-primary {
        width: 150px;
        height: 50px;
        padding: 10px;
        font-size: 16px;
    }

    .gallery-preview {
        height: 200px;
    }
}

/*vision mission img */
.vision-img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
}


/* client logo alignment check new 19.11 */
.client-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.client-logo {
    width: 90%;
    height: 150px !important;
    object-fit: contain;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 1300px) {
    .logo-row {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 1200px) {
    .logo-row {
        transform: scale(0.85);
        transform-origin: center;
    }
}

@media (max-width: 1100px) {
    .logo-row {
        gap: 30px !important;
        transform: scale(0.8);
        transform-origin: center;
    }
}

/* new  */
/* Show/hide based on screen size */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1023px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/* Ensure desktop layout stays fixed */
@media (min-width: 1024px) {
    .desktop-only .logo-row {
        flex-wrap: nowrap !important;
    }
}

/* image size  */
@media (max-width: 576px) {

    .logo-row {
        gap: 80px !important;
        /* Reduce spacing */
        padding: 0 10px;
    }

    .client-logo-container {
        width: 130px !important;
        height: 90px !important;
        min-width: 120px !important;
    }

    .client-logo {
        object-fit: contain !important;
    }
}z