/* GLOBAL FONTS */
body {
    font-family: 'Inter', sans-serif;
}


/* Logo text */
.brand-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 16px;
    color: #333 !important;
    margin: 0 10px !important;
    /* GAP INCREASED */
}

/* CONTACT BUTTON */

.contact-btn {
    width: fit-content;
    display: flex;
    gap: 0.4rem;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-family: 'Work Sans';
    font-weight: 600;
    cursor: pointer;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(90deg, #0d6efd, #f25538);
    background-size: 300%;
    background-position: left center;
    transition: background 0.3s ease;
    color: #fff;
}

.contact-btn:hover {
    background-size: 320%;
    background-position: right center;
}

.contact-btn:hover svg {
    fill: #fff;
}

/* SERVICES MENU */
.services-menu {
    position: relative;
}

/* .services-menu .menu-icon {
    font-weight: 700;
    font-size: 18px;
    margin-left: 6px;
} */

/* DROPDOWN MENU */
.services-dropdown {
    display: none;
    /* hidden by default */
    position: absolute;
    top: 38px;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.dropdown-item {
    padding: 7px 14px;
    font-size: 15px;
}

.dropdown-item:hover {
    background: #ff6a00;
    color: #fff;
}

a.nav-link:hover {
    color: #ff6a00 !important;
}

.navbar {
    padding: 0px;
    ;
}

/* DESKTOP HOVER BEHAVIOR */
@media (min-width: 992px) {
    .services-menu:hover .services-dropdown {
        display: block !important;
    }

    .services-menu:hover .menu-icon {
        content: "-";
        color: #000;
    }
}


/* ================= Banner Section ================= */
.banner-section {
    background: url('../images/banner3.webp') no-repeat center/cover;
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
}

.banner-title {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85),
        0 2px 8px rgba(0, 0, 0, 0.65);
}

.banner-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #f1f1f1;
    max-width: 90%;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85),
        0 2px 8px rgba(0, 0, 0, 0.65);
}

/* ===== GRID SYSTEM ON RIGHT ===== */


.banner-label {
    display: inline-block;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    background: linear-gradient(90deg, #0d6efd, #f25538);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 2px 14px;
    border-radius: 7px;
    margin-bottom: 25px;
}

.banner-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ROWS */
.banner-row {
    display: flex;
    gap: 18px;
}

.row-1,
.row-2,
.row-3 {
    justify-content: flex-end;
}

/* ========= IMAGE FULL CARD ========= */
.img-card {
    width: 140px;
    height: 140px;
}

.img-full {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ========= TEXT CARDS ========= */
.text-card {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* COLORS */
.peach-card {
    background: #cdd2ca;
}

.purple-card {
    background: #efe6ff;
}

.orange-card {
    background: #ff8d3a;
    color: #fff;
}

.green-card {
    background: #0774bf;
    color: #fff;
}

/* STATS */
.stat-number {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 14px;
}

/* Mobile */
@media(max-width: 768px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-title {
        font-size: 32px;
    }
}


/* ================= TIMELINE SECTION ================= */
/* Title styling */
.circle-title {
    position: relative;
    font-weight: 600;
    display: inline-block;
    z-index: 2;
    padding-left: 22px;
    /* spacing from circle */
}

/* Animated circle behind title */
.circle-title::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background: #ff8d3a;
    /* soft orange */
    border-radius: 50%;
    opacity: 0.85;
    z-index: -1;
    animation: floatCircle 3s ease-in-out infinite;
}



.section-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #1c2534;
}

.yearly-timeline-section {
    background: #fff;
}

.year-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.year-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #6a7488;
    padding: 12px 0;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: 0.3s;
    padding-left: 15px;
}

.year-list li:hover {
    color: #ff8d3a;
}

.year-list li.active {
    color: #ff8d3a;
    font-weight: 600;
    border-left: 3px solid #ff8d3a;
}

/* RIGHT CARD */
.year-card-wrapper {
    padding-left: 20px;
}

.year-card {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
    border-radius: 12px;
    padding: 40px;
    min-height: 300px;
    transition: background 0.5s ease;
}

/* TITLE */
#yearTitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #1c2534;
    margin-bottom: 12px;
}

/* TEXT */
#yearText {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #292929;
    line-height: 1.6;
}

/* BACKGROUND VARIANTS */
/* Soft Orange → Peach */
.bg-1998 {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
}

/* Soft Blue → Light Cyan */
.bg-2005 {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
}

/* Warm Gold → Cream */
.bg-2010 {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
}

/* Mint Green → Aqua */
.bg-2015 {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
}

/* Lavender → Sky Blue */
.bg-2018 {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
}

/* Premium Blue → Indigo */
.bg-2024 {
    background: linear-gradient(100deg, #ddebff, #ffeeee);
}

/* Responsive */
@media(max-width: 768px) {
    .year-list li {
        font-size: 16px;
    }

    #yearTitle {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .year-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 25px;
        padding-bottom: 10px;
    }

    .year-list li {
        padding: 10px 5px;
        font-size: 16px;
        min-width: max-content;
    }

    /* Hide scrollbar (nice look) */
    .year-list::-webkit-scrollbar {
        height: 0;
    }
}



/* Section styling */
.services-section {
     background: url('../images/serbloc.png') no-repeat center/cover;
    padding: 80px 0;
    background-attachment: fixed;
}

/* Top label */
.services-label {
    color: #f59e42;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main title */
.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #101828;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #f59e42;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 3px;
}

/* Description */
.services-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* Cards */
.service-card {
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
    opacity:0.9;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.08);
}

.service-card img {
    width: 70px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #101828;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* View More */
.view-more-container {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    color: #444;
}

.view-more-link {
    color: #f59e42;
    font-weight: 600;
    margin-left: 6px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.view-more-link:hover {
    border-color: #f59e42;
}

.col-lg-2-4 {
    width: 20%;
}

@media (max-width: 992px) {
    .col-lg-2-4 {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .col-lg-2-4 {
        width: 100%;
    }
}



.industries-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.industry-left {
    min-height: 420px;
    background: url('../images/industry.png') center/cover no-repeat;
}

.industries-content {
   padding: 40px 40px 0px 40px;
}

.industries-label {
    color: #f59e42;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.industries-title {
    font-size: 32px;
    font-weight: 700;
    margin: 8px 0 18px;
    color: #0f1724;
    position: relative;
}


/* Swiper card styles */
.swiper {
    padding-bottom: 80px;
}

.swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.industry-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    width: 100%;
    height: 100%;
    min-height: 175px;
    cursor: pointer;
    margin: 10px 2px 0px 2px;
}

.industry-item h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f1724;
    font-weight: 600;
}

.industry-item p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #0f1724;
}

/* Responsive */
@media (max-width: 991px) {
    .industry-left {
        min-height: 260px;
    }

    .industries-content {
        padding: 24px;
    }
}


.section-label {
    color: #f59e42;
    /* same orange label */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 8px 0 18px;
    color: #0f1724;
    position: relative;
}

/* .section-title.line-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #f59e42;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 3px;
} */




/************************* client section css ******************************/
.clients-section {
    padding: 40px 0;
    background: #f8fafc;
}

.clients-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.clients-subtext {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
}

/* Swiper wrapper fix */
.clientsSwiper {
    padding-bottom: 20px;
}

/* Client Cards */
.client-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    width:320px !important;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}




/* get in touch section css */
.get-in-touch-section {
    position: relative;
    background: #f7d74c; /* yellow bg similar to reference */
    padding: 60px 0;
    overflow: hidden;
}

/* Title */
.git-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #176ef8;
}

/* Action icons (email and phone) */
.git-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.git-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease;
    background: linear-gradient(90deg, #0d6efd, #f25538);
    background-size: 300%;
    background-position: left center;
}

.git-icon:hover {
    transform: scale(1.08);
    background-size: 320%;
    background-position: right center;
    transform: translateY(-2px);
}

/* CTA Button */
.git-button {
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-family: 'Work Sans';
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
    margin-left: 15px;
    transition: 0.3s ease;
    background: linear-gradient(90deg, #0d6efd, #f25538);
    background-size: 300%;
    background-position: left center;
    color: #fff;
}

.git-button:hover {
    background-size: 320%;
    background-position: right center;
    transform: translateY(-2px);
}

/* Note text */
.git-note {
    margin-top: 15px;
    color: #333;
    font-size: 15px;
}

/* Decorative shapes */
.shape-left {
    position: absolute;
    left: -80px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ea8b61, #d95e4b);
    border-radius: 50%;
}

.shape-right {
    position: absolute;
    right: -80px;
    top: -40px;
    width: 240px;
    height: 240px;
    background: linear-gradient(45deg, #3baec4, #06304a);
    border-bottom-left-radius: 200px;
    border-top-right-radius: 200px;
}

a {
    text-decoration: none;
}

@media (max-width: 992px) {
   .shape-right, .shape-left {
    display: none;
   }
}


/* footer section css */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #333;
}

/* Left side brand + address */

.footer-address {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #333;
}

/* Social Icons */
.footer-social a {
    color: #333;
    font-size: 15px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #5ec9ff;
}

/* Bottom strip */
.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
    color: #333;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-container {
        /*flex-direction: column;*/
    }

    .footer-col {
        margin-bottom: 20px;
    }
}
.footer {
    background: #f5f5f5; /* base */
    position: relative;
    padding: 50px 0px;
    overflow: hidden;
}

/* Soft gradient blobs */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(120px);
    opacity: 0.6;
    z-index: 0;
}

.w35 {
    max-width: 35% !important;
}

/* Left pink blob */
.footer::before {
    background: radial-gradient(circle, rgba(255,150,150,0.8), rgba(255,150,150,0));
    top: 0;
    left: -120px;
}

/* Right green blob */
.footer::after {
    background: radial-gradient(circle, rgba(150,255,180,0.8), rgba(150,255,180,0));
    top: 0;
    right: -120px;
}

/* Content Above Blobs */
.footer > * {
    position: relative;
    z-index: 2;
}
.footer-col p {
    margin: 8px 0;          /* spacing between paragraphs */
    font-size:13px;
    max-width:280px;
}



/******************* services css **************************/
.services-banner {
    background: url('../images/servicebnr.png') no-repeat center/cover;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
}
/* LEFT BLACK GRADIENT OVERLAY */
.services-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;   /* how much gradient covers left side */
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0));
    z-index: 0;
}

/* ensure text stays above overlay */
.services-banner * {
    position: relative;
    z-index: 2;
}

/* Section background spacing */
.info-box-section {
    padding: 80px 0;
}

/* Main box */
.info-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Subheading label */
.info-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff7b2f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Main Title */
.info-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1d1d1d;
    margin-bottom: 0;
}

/* Paragraph */
.info-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding: 10px 0px 0px 10px;
}
.brdleft {
        border-left: 10px solid #ff7b2f;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .info-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .info-box {
        padding: 35px 25px;
    }
    .info-text {
        margin-top: 15px;
    }
}

/* Services Section */
.services-grid-section {
    padding: 0px 0;
}

/* Cards */


.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-list {
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.5;
}



/******************* about css **************************/
.about-banner {
    background: url('../images/aboutbnr.png') no-repeat top/cover;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
}
/* LEFT BLACK GRADIENT OVERLAY */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;   /* how much gradient covers left side */
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0));
    z-index: 0;
}

/* ensure text stays above overlay */
.about-banner * {
    position: relative;
    z-index: 2;
}

.info-box-section p {
    max-width: 700px;
}











.mv-section {
    padding: 50px 0;
    background: linear-gradient(to right, #f8f8f8, #fbfbfb);
    overflow-x: hidden;
}

.mv-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.mv-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.mv-col {
    width: 50%;
    position: relative;
}

/* LEFT LABEL */
.mv-label-left {
    color: #de684e;
    font-weight: 500;
    font-size: 15px;
    padding-left: 28px;
    margin-bottom: 0px;
    position: relative;
}

.mv-dot-left {
    width: 10px;
    height: 10px;
    background: #e73e7a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
}

.mv-label-left::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 150px;
    border-left: 2px solid #e73e7a;
    border-bottom: 2px solid #e73e7a;
    left: 5px;
    top: 12px;
    border-radius: 0 0 0 20px;
}

/* RIGHT LABEL */
.mv-label-right {
    color: #e4b83b;
    font-weight: 500;
    font-size: 15px;
    padding-right: 28px;
    margin-bottom: 0px;
    position: relative;
    text-align: right;
}

.mv-dot-right {
    width: 10px;
    height: 10px;
    background: #ff9b00;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 5px;
}

.mv-label-right::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 150px;
    border-right: 2px solid #ff9b00;
    border-bottom: 2px solid #ff9b00;
    right: 5px;
    top: 12px;
    border-radius: 0 0 20px 0;
}

/* PUZZLE IMAGE AREA */
.mv-image-box {
    position: relative;
    text-align: center;
}

.mv-puzzle-img {
    width: 80%;
    max-width: 250px;
}

/* TEXT INSIDE PUZZLE */
.mv-text {
    margin-top: 15px;
}

.mv-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mv-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .mv-row {
        flex-direction: column;
    }
    .mv-col {
        width: 100%;
    }
    .mv-section {
        overflow-x: hidden !important;
    }
}




/* Section Background */
.founder-section {
    padding: 50px 0;
    background: #ffffff;
}

/* Two Column Layout */
.founder-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Content */
.founder-content {
    width: 70%;
    color: #222;
}

/* Main Title */
.founder-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Yellow Underline */
.founder-title .underline {
    display: block;
    width: 120px;
    height: 6px;
    background: #f4c20d;
    margin-top: 8px;
}

/* Subtitle */
.founder-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #999;
    margin-bottom: 20px;
}

/* Text */
.founder-text {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Right Image */
.founder-image {
    width: 30%;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founder-row {
        flex-direction: column;
        text-align: center;
    }

    .founder-content,
    .founder-image {
        width: 100%;
    }

    .founder-title .underline {
        margin-left: auto;
        margin-right: auto;
    }
}





/******************* contact css **************************/
.contact-banner {
    background: url('../images/contactbnr.png') no-repeat center/cover;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
}

.contact-info-section {
    padding: 50px 0;
    background: #f8f9fc;
}

.contact-badge {
color: #f59e42;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #192f60;
    margin-top: 15px;
}

.contact-title span {
    color: #ff5722;
}

.contact-subtext {
    max-width: 600px;
    margin: 0 auto;
    color: #6a6a6a;
    font-size: 15px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.contact-card .icon {
    width: 55px;
    height: 55px;
    background: #f59e42;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 20px;
}

.contact-card .label {
    font-size: 14px;
    color: #6c7a9a;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card .highlight {
    font-size: 18px;
    font-weight: 700;
    color: #f59e42;
    margin-bottom: 10px;
}

.contact-card .desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

@media(max-width: 768px) {
    .contact-title {
        font-size: 28px;
    }
    .contact-card {
        text-align: center;
    }
}




.formsec img {
    border-radius: 5px;
}
.contact-input {
    background: #f4f7fb;
    border: none;
    padding: 10px 18px;
    border-radius: 0px;
    font-size: 15px;
    width: 100%;
}

.contact-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,112,67,0.3);
}

.contact-textarea {
    background: #f4f7fb;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
    width: 100%;
    resize: none;
    font-size: 15px;
}

.contact-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,112,67,0.3);
}

.mleft {
    margin-left: auto;
}
@media(max-width: 768px) {
    .contact-input, .contact-textarea {
        border-radius: 20px;
    }
}


.map-section {
    padding: 50px 0;
    background: #f8f9fb;
}

.map-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 10px;
}

.map-text {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.footer-col ul li a:hover{
    color:#ff6a00;
}
@media(max-width: 767.98px) {
    .navbar{
       padding-bottom: 20px;
    }
    .about-banner,.services-banner{
        background-position: 90% 100%;
    }
    .banner-label{
        margin-bottom: 5px;
    }
}
/******************* project works css **************************/
.project-banner {
    background: url('../images/ourprojects.png') no-repeat center/cover;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
}
/* SECTION BACKGROUND */
.projects-showcase {
    background: linear-gradient(to bottom, #ffffff 55%, #042c6b 55%);
    padding: 50px 0;
    position: relative;
}

/* LEFT IMAGE BOX */
.project-image-box {
    background: #fff;
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.project-image-box img {
    width: 100%;
    border-radius: 5px;
}

/* DECORATIVE STARS */
.decor-star {
    width: 70px;
    position: absolute;
    z-index: 5;
}

.decor-star-1 {
    left: -40px;
    top: 60%;
}

.decor-star-2 {
    left: 10px;
    top: 75%;
}

/* METRICS BOX */
.project-metrics-box {
    background: #ff6b00;
    padding: 40px 30px;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255,107,0,0.3);
}

.project-metrics-box h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 0;
}

.project-metrics-box p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .decor-star-1, .decor-star-2 {
        display: none;
    }

    .project-metrics-box {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .project-metrics-box h3 {
        font-size: 32px;
    }

    .project-metrics-box p {
        font-size: 16px;
    }
}


/* Section container */
.process-section {
    padding: 50px 0;
    background: #ffffff;
}


/* Step container using grid */
.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

/* Step block */
.process-step {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Step badge */
.step-badge {
    display: inline-block;
    background: #ed690b;
    color: #fff;
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Titles */
.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Paragraph */
.step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Arrow style */
.step-arrow {
    font-size: 26px;
    color: #ff6a00;
    text-align: center;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
    .process-steps {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .step-arrow {
        display: none;
    }
}

.projects-expand-section {
    padding:50px 0;
        background: linear-gradient(100deg, #ddebff, #ffeeee);
}

.projects-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.projects-sub {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.projects-expand-wrapper {
    display: flex;
    gap: 18px;
}

.project-card {
    flex: 1;
    height: 420px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex 0.5s ease, transform 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.project-card.active,
.project-card:hover {
    flex: 4;
}

.project-card:not(.active):hover {
    flex: 4;
}

.project-info {
    position: absolute;
    bottom: 20px;
    left: 25px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s ease-in-out;
}

.project-card.active .project-info,
.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 1px 1px #565656;
}

.project-info p {
    font-size: 14px;
    text-shadow: 1px 1px #565656;

}
.project-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Dark overlay */
    border-radius: inherit;
    transition: 0.3s ease-in-out;
}

.project-card.active::after,
.project-card:hover::after {
    background: rgba(0, 0, 0, 0.1); /* Darker on active card */
}



/******************* offers page css **************************/
.offers-banner {
    background: url('../images/offersbnr.png') no-repeat center/cover;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
}
.srushti-why-section {
    padding: 50px 0;
    position: relative;
}

.why-title {
    font-size: 34px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 50px;
}

.why-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD BASE STYLE */
.why-card {
    width: 280px;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    position: relative;
    transform: rotate(-3deg);
    transition: 0.3s ease-in-out;
}

.why-card:hover {
    transform: rotate(0deg) scale(1.05);
}

/* CARD COLORS LIKE YOUR IMAGE */
.card-green {
    background: #d5ffd8;
}

.card-pink {
    background: #ffd6f2;
    transform: rotate(3deg);
}

.card-white {
    background: #c1e3ff;
    transform: rotate(-2deg);
}

/* Stars */
.stars {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

/* Text */
.why-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 10px 0;
    color: #333;
}

/* Profile */
.profile {
    align-items: center;
    gap: 10px;
}

.profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile h5 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.mwidth {
    max-width: 20%;
}

.profile span {
    font-size: 13px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .why-card {
        width: 100%;
        transform: rotate(0deg);
    }
}






/* Container */
.ofrsbg {
        background: #171717;
}
.offers-carousel-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  height: 480px;
  position: relative;
  perspective: 2000px;
}

/* track holds absolute cards */
.offers-track {
  width: 100%;
  height: 100%;
  position: relative;
}

/* base card */
.offers-track .card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #000000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.7s cubic-bezier(.16,1,.3,1), opacity 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  border: 1px solid rgba(0,0,0,0.03);
}

/* content inside card */
.card .offer-content {
  padding: 28px;
  height: 100%;
  box-sizing: border-box;
}

.card h3 {
  font-size: 20px;
  color: #06153a;
  font-weight: 700;
  text-align: center;
}

.card ul {
  color: #333;
  line-height: 1.45;
  font-size: 14px;
}

.card .offer-btn {
  display:block;
  margin-top:auto;
  width:100%;
  padding:12px 14px;
  border-radius:999px;
  border:none;
  background:#ff784e;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

/* positions */

/* center - front and larger */
.card.center {
  z-index: 10;
  transform: translate(-50%, -50%) scale(1.08) translateZ(0);
  opacity: 1;
  box-shadow: 0 40px 80px rgba(6,21,58,0.28);
}

/* left side (previous) */
.card.left-1 {
  z-index: 5;
  transform: translate(calc(-50% - 260px), -50%) scale(0.9) rotateY(12deg) translateZ(-80px);
  opacity: 0.1;
  box-shadow: 0 18px 40px rgba(6,21,58,0.12);
}

/* right side (next) */
.card.right-1 {
  z-index: 5;
  transform: translate(calc(-50% + 260px), -50%) scale(0.9) rotateY(-12deg) translateZ(-80px);
  opacity: 0.1;
  box-shadow: 0 18px 40px rgba(6,21,58,0.12);
}

/* hidden (others, shouldn't be present here but safe) */
.card.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8) translateZ(-300px);
}

/* responsive */
@media (max-width: 1024px) {
  .offers-carousel-wrap { height: 420px; }
  .offers-track .card { width: 300px; height: 380px; }
  .card.left-1 { transform: translate(calc(-50% - 200px), -50%) scale(0.88) rotateY(10deg) translateZ(-60px); }
  .card.right-1 { transform: translate(calc(-50% + 200px), -50%) scale(0.88) rotateY(-10deg) translateZ(-60px); }
}

@media (max-width: 600px) {
  .offers-carousel-wrap { height: 340px; }
  .offers-track .card { width: 240px; height: 320px; }
  .card.left-1, .card.right-1 { transform: translate(calc(-50% - 110px), -50%) scale(0.86) rotateY(8deg) translateZ(-40px); }
  .card.right-1 { transform: translate(calc(-50% + 110px), -50%) scale(0.86) rotateY(-8deg) translateZ(-40px); }
}



/* ============================================================
   OFFER CARDS WITH BACKGROUND IMAGES
   ============================================================ */

.offer-card {
    position: relative;
    padding: 25px 25px 30px;
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}
.ofbtn {
    margin: auto !important;
    margin-top: 36px !important;
}

/* card background images */
.offer-card.bg1 {
    background: url('../images/ofr1.png') center/cover no-repeat;
}
.offer-card.bg2 {
    background: url('../images/ofr2.png') center/cover no-repeat;
}
.offer-card.bg3 {
    background: url('../images/ofr3.png') center/cover no-repeat;
}

/* dark overlay for text visibility */
.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    z-index: 1;
}

.offer-card * {
    position: relative;
    z-index: 2;
}

/* typography */
.offer-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.offer-card ul li {
    color: #e6e6e6;
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* button */
.offer-card .offer-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: #ff7f4d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.offer-btn .offer-icon {
    margin-right: 8px;
    font-size: 16px;
}

button.contact-btn .fa-gift {
  font-size: 18px;               /* Adjust size */
  display: inline-flex;          /* Make icon container flex */
  align-items: center;           /* Vertical center icon */
  justify-content: center;       /* Horizontal center icon */
}
