﻿:root {
     Light Theme Colors 
    --background-light: rgb(242, 250, 250);
    --text-light: rgb(54, 148, 158);
    --navbar-light-bg: rgb(255, 255, 255);
    --button-light-bg: rgb(54, 148, 158);
    --button-light-hover-bg: rgb(33, 122, 131);
     Dark Theme Colors (blue-black style) 
    --background-dark: #0d1117;
    --text-dark: #ffffff;
    --navbar-dark-bg: #161b22;
    --button-dark-bg: #238;
    --button-dark-hover-bg: #2ea043;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-light);
    color: var(--text-light);
    transition: background-color 0.3s, color 0.3s;
    scroll-behavior: smooth;
/*    background-color:black;*/
}
/*
 Hero Section ============================================================================================================== */
:root {
    --primary-color: rgb(54, 148, 158);
    --primary-hover: rgb(44, 128, 138);
    --text-light: #ffffff;
    --text-dark: #333;
    --background-dark: #0d1117;
}

/* ========================== Hero Section ========================== */
.hero {
/*    margin-top: 100px;*/
    position: relative;
    height: 50vh; /* Reduced height */
    width: 100%;
    overflow: hidden;
    min-height: 500px;
    max-height: 700px;
}

/* Background Image */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 1s ease-in-out;
}

/* Text Content Overlay */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
}

    /* Headings */
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--text-light);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: var(--text-light);
    }

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* Primary Button */
    .hero-btn.primary {
        background-color: var(--primary-color);
        color: white;
    }

        .hero-btn.primary:hover {
            background-color: var(--primary-hover);
        }

    /* Secondary Button */
    .hero-btn.secondary {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

        .hero-btn.secondary:hover {
            background-color: var(--primary-color);
            color: white;
        }

/* Dark Mode Support */
body.dark-mode .hero-content {
    background: linear-gradient(to right, rgba(13, 17, 23, 0.85), rgba(13, 17, 23, 0.4));
}

body.dark-mode .hero-btn.secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

    body.dark-mode .hero-btn.secondary:hover {
        background-color: white;
        color: var(--background-dark);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        align-items: center;
        text-align: center;
    }

        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-content p {
            font-size: 1rem;
        }
}
/*hero end here  ======================================================  =       */
/*cards section start */

:root {
    --primary-color: rgb(54, 148, 158);
    --primary-hover: rgb(44, 128, 138);
    --background-light: #f0f8f9;
    --text-dark: #333;
    --text-light: #fff;
    --button-light-bg: rgb(54, 148, 158);
    --button-light-hover-bg: rgb(44, 128, 138);
}

/* ========================== Stats Section (Happy Clients) ========================== */
.stats-section {
    background-color: var(--background-light);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 10px 10px 10px 10px #dbe9eb;
}

    .stats-section .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

.stat-box {
    flex: 1 1 200px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .stat-box h2 {
        font-size: 48px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .stat-box p {
        font-size: 16px;
        color: var(--text-dark);
    }

/* ========================== Icon Section ========================== */
.icon-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.icon-card {
    background-color: var(--background-light);
    border-radius: 10px;
    width: 250px;
    height: 250px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--button-light-bg);
    transition: color 0.3s ease;
}

.icon-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.icon-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

    .icon-card:hover .icon,
    .icon-card:hover h3 {
        color: var(--button-light-hover-bg);
    }

/* ========================== Responsive Design ========================== */
@media (max-width: 768px) {
    .icon-section {
        flex-direction: column;
        align-items: center;
    }

    .icon-card {
        width: 80%;
        margin-bottom: 30px;
    }
}
/*card section over  ================================================================ */

/* NOW ABOUT SECTION START ========================================================= */
:root {
    --primary-color: rgb(54, 148, 158);
    --primary-hover: rgb(33, 122, 131);
    --button-bg: rgb(33, 122, 131);
    --button-hover-border: rgb(54, 148, 158);
    --text-dark: #000;
    --text-light: #fff;
}

/* ========================== About Section ========================== */
.about-section {
    padding: 70px 20px;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 300px;
}

    .about-text h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    .about-text p {
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .about-span{
        color:black;
    }

.about-btn {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--text-light);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .about-btn:hover {
        background-color: white;
/*        transition-duration:1s;*/
        color: rgb(54, 148, 158);
/*        transform:scale(1.2);*/
        font-weight:700;

        border: 2px solid var(--button-hover-border);

    }

.about-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.image-outline {
    padding: 10px;
    border: 3px solid transparent;
    border-radius: 10px;
    display: inline-block;
}

    .image-outline img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 6px;
    }

/* ========================== Responsive Design ========================== */
@media (max-width: 992px) {
    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        flex: 1 1 100%;
    }

        .about-text h2 {
            font-size: 2.2rem;
        }

    .about-image {
        flex: 1 1 100%;
    }

    .image-outline {
        width: 100%;
        padding: 0;
    }

        .image-outline img {
            max-width: 100%;
            height: auto;
        }
}

/*service section ========================================= ================================================== SERVICE===
====================== Service Section ======================*/
/*:root {
    --background-light: #f5f5f5;
    --primary-color: rgb(54, 148, 158);
    --button-light-bg: rgb(33, 122, 131);
    --button-light-hover-bg: rgb(28, 105, 113);
    --text-light: #333;
}*/
/*USP=========================================================================================================================*/
.usp-title {
    font-size: 50px;
    text-align: center;
    padding:10px;
    color: rgb(33, 122, 131);
    background-color: #f9f9f9;
}
.usp {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
    white-space: nowrap;
}

    /* Hide wrapping and allow side-by-side scrolling */
    .usp .card {
        display: inline-block;
        min-width: 250px;
        max-width: 250px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 30px;
        text-align: center;
        vertical-align: top;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .usp .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .usp .card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .usp .card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: rgb(33, 122, 131);
        }

        .usp .card p {
            font-size: 10px;
            color: #555;
/*            background:red;*/

            
            
        }

    /* Styled horizontal scrollbar for WebKit */
    .usp::-webkit-scrollbar {
        height: 5px;
    }

    .usp::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 10px;
    }

    .usp::-webkit-scrollbar-thumb {
        background-color: rgb(54, 148, 158);
        border-radius: 10px;
    }

        .usp::-webkit-scrollbar-thumb:hover {
            background-color: #555;
            width:15px;
        }

/* Responsive: Allow smaller cards on narrow screens */
@media (max-width: 768px) {
    .usp .card {
        min-width: 200px;
        max-width: 200px;
    }
}


/* ========================== Services Section ========================== */
.servicesec {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-light);
    text-align: center;
    transition: background-color 0.3s ease;
}

    /* Section heading */
    .servicesec h2 {
        width: 100%;
        font-size: 3rem;
        margin-bottom: 30px;
        color: var(--primary-color);
    }

    /* Service card */
    .servicesec .card {
        background-color: #fff;
        color: var(--text-light);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 25px 20px;
        text-align: center;
        transition: transform 0.3s ease;
        width: calc(33.333% - 20px);
        box-sizing: border-box;
    }

        .servicesec .card:hover {
            transform: translateY(-5px);
        }

        /* Card Image */
        .servicesec .card > img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 15px;
        }

        /* Card Heading */
        .servicesec .card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--primary-color);
        }

        /* Card Paragraph */
        .servicesec .card p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        /* Card Link */
        .servicesec .card a {
            color: var(--button-light-bg);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

            .servicesec .card a:hover {
                text-decoration: underline;
            }

    /* See More Button */
    .servicesec .see-more {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

        .see-more button a{
            display: inline-block;
/*            background-color: var(--button-bg);*/
/*            color: var(--text-light);*/
            padding: 2px 24px;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
        }

            .servicesec .see-more button:hover {
                background-color: var(--button-light-hover-bg);
            }

/* ========================== Responsive Design ========================== */
@media (max-width: 992px) {
    .servicesec .card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .servicesec .card {
        width: 100%;
    }
}
/*service section over ================================================================================ */

/* ========================== Offer Section ========================== */
.offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    flex-wrap: wrap;
    background-color: #fff;
    gap: 40px;
}

.offer-content {
    max-width: 600px;
    flex: 1 1 400px;
}

    .offer-content h1 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.4;
        color: rgb(54, 148, 158);
    }

    .offer-content .highlight {
        color: black;
    }

    .offer-content p {
        margin: 20px 0;
        color: black;
        font-size: 1rem;
        line-height: 1.6;
    }

/* Offer Button */
.btn {
    display: inline-block;
    padding: 12px 24px;
    color: rgb(54, 148, 158);
    border: 2px solid rgb(54, 148, 158);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .btn:hover {
        background-color: rgb(54, 148, 158);
        color: white;
    }

/* Offer Image */
.offer-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .offer-image img {
        max-width: 100%;
        width: 400px;
        height: auto;
        transform: rotate(-2deg);
        border-radius: 10px;
    }

/* ========================== Responsive ========================== */
@media (max-width: 992px) {
    .offer {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .offer-content h1 {
        font-size: 2rem;
    }

    .offer-image img {
        width: 90%;
        transform: rotate(0deg);
    }
}
/*offer end =============================================================================== */

/* ========================== Project Section ========================== */
/* Section Wrapper */
.project-section {
    padding: 90px 100px;
    max-width: 100%;
/*    margin: 0 auto;*/
    background-color: #f0f8f9;
}

.section-heading {
    margin-top:-50px;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(54, 148, 158);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: black;
    margin-bottom: 70px;
}

/* Grid Layout */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Project Card */
.project-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    perspective: 1000px;
}

    .project-card:hover {
        transform: translateY(-8px);
    }

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: rgb(54, 148, 158);
    z-index: 10;
}

/* Book Style */
.book {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.book-cover {
    padding: 20px;
    flex: 1;
    background-color: #ecf0f1;
    transition: background 0.3s;
}

    .book-cover h3 {
        font-size: 20px;
        color: rgb(54, 148, 158);
        margin-bottom: 10px;
    }

    .book-cover p {
        font-size: 15px;
        color: #000;
        line-height: 1.5;
    }

/* Book Page with Image */
.book-page {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* Image & Overlay Container */
.image-overlay-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

    .image-overlay-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

.project-card:hover .image-overlay-wrapper img {
    transform: scale(1.05);
}

.image-overlay-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    transition: background 0.3s ease;
}

.project-card:hover .overlay {
    background: rgba(0, 0, 0, 0.35);
}

/* View Project Button */
.view-project-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 8px 20px;
    background: #3498db;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    transition: background 0.3s;
}

    .view-project-btn:hover {
        background: #2980b9;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .view-project-btn {
        font-size: 13px;
        padding: 6px 16px;
    }

    .book-cover h3 {
        font-size: 18px;
    }
}

/* ========================== Portfolio Section Background ========================== */
.portfolio-section {
    background: #87c44b;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* ========================== Responsive Design ========================== */
@media (max-width: 992px) {
    .projects-container {
        flex-direction: column;
    }

    .project-card {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* ========================== SECTION WRAPPER ========================== */
.portfolio-section {
    position: relative;
/*    padding: 100px 20px;*/
    overflow: hidden;
    background: aliceblue;
}

/* ========================== BACKGROUND BLOBS ========================== */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    z-index: 0;
    background: linear-gradient(to right, #ece9e6, #ffffff);
    filter: blur(90px);
}

/* ========================== GLASS CONTAINER ========================== */
.portfolio-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 60px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border: 2px solid black;
    z-index: 2;
}

/* ========================== FLEX CONTENT ========================== */
.portfolio-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20vh;
}

/* ========================== LEFT SIDE - TEXT ========================== */
.portfolio-text {
    flex: 1;
    min-width: 280px;
}

.portfolio-heading {
    font-size: 3rem;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

    .portfolio-heading .highlight {
        color: #36949E;
    }

.portfolio-description {
    font-size: 0.9rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 30px;
}

.portfolio-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    color: #fff;
    background-color: #36949E;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

    .portfolio-btn:hover {
        background-color: #217A83;
    }

/* ========================== RIGHT SIDE - HEX GRID ========================== */
.hex-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 40px;
    place-items: center;
    min-width: 280px;
}

/* ========================== HEX SHAPE ========================== */
.hex {
    width: 170px;
    height: 140px;
    background: #DFF1FB;
    clip-path: polygon( 50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25% );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

    .hex span {
        font-weight: 600;
        font-size: 20px;
        color: #333;
        transition: transform 0.3s ease;
    }

    .hex:hover span {
        transform: scale(1.2);
        color: #36949E;
    }

/* ========================== RESPONSIVE ========================== */
@media (max-width: 900px) {
    .portfolio-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hex-grid {
        grid-template-columns: repeat(2, 100px);
        gap: 20px;
    }

    .hex {
        width: 100px;
        height: 86px;
    }
}

/*our team ==================================================================*/
.team-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #36949e;
}

.team-title {
    font-size: 3rem;
    font-weight:700;
    margin-bottom: 10px;
    color: #fff;
}

.team-subtitle {
    font-size: 16px;
    color: #e3f1f2;
    margin-bottom: 50px;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.team-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: rgb(44, 128, 138);
}

.role {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.quote {
    font-size: 14px;
    color: #000;
    font-style: italic;
    line-height: 1.5;
}

/* ------------------------------- our happy clients =========================================================*/
.clients-section {
    background-color: white;
    padding: 70px 20px;
}

.clients-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 90px;
    gap: 40px;
}

.clients-text {
    flex: 0 1 30%;
}

    .clients-text h2 {
        font-size: 3rem;
        font-weight: 700;
        color: rgb(54, 148, 158);
    }

    .clients-text p {
        font-size: 14px;
        color: black;
    }

.clients-slider-wrapper {
    flex: 1 1 55%;
    overflow: hidden;
    position: relative;
}

.clients-slider {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: slideClients 40s linear infinite;
}

    .clients-slider img {
        height: 60px;
        object-fit: contain;
        max-width: none;
        flex-shrink: 0;
        /* Optional styling */
        /* filter: grayscale(100%); */
        /* transition: filter 0.3s ease; */
    }

        .clients-slider img:hover {
            filter: grayscale(100%);
        }

/* Animation */
@keyframes slideClients {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-content {
        flex-direction: column;
        text-align: center;
        margin: 0 20px;
    }

    .clients-text h2 {
        font-size: 28px;
    }

    .clients-slider-wrapper {
        flex: 1 1 100%;
    }
}


/*testremonia section make css  ========================================    */
.testimonial-slider-section {
    background-color: #F2FAFA;
    padding: 80px 20px;
    text-align: center;
}

.testimonial-slider-title {
    font-size: 3rem;
    font-weight:700;
    color: rgb(54, 148, 158);
    margin-bottom: 10px;
    margin-top:-20px;
}

.testimonial-slider-subtitle {
    font-size: 16px;
    color: black;
    margin-bottom: 50px;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    width: 100%;
}

    /* Custom Scrollbar */
    .testimonial-track::-webkit-scrollbar {
        height: 5px;
    }

    .testimonial-track::-webkit-scrollbar-track {
        background: #e0f4f4;
        border-radius: 10px;
    }

    .testimonial-track::-webkit-scrollbar-thumb {
        background-color: #2c3e50;
        border-radius: 10px;
        border: 2px solid #e0f4f4;
    }

        .testimonial-track::-webkit-scrollbar-thumb:hover {
            background-color: #1a2d3f;
        }

.testimonial-card {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
    }



.tag-icon {
    position: absolute;
    top: -2px;
    right: 70px;
/*    align-items:center;*/
    width: 190px;
    height: 100px;
    border-radius:50%;
/*    z-index:1000;*/
    object-fit: contain;
}

.testimonial-text {
/*    display:flex;
    align-items:center;
    justify-content:center;*/
    font-style: italic;
    font-size: 15px;
/*    background-color:blue;*/
    color: #000;
    margin: 60px 0 20px;
    line-height: 1.6;
    height:60%;
/*    border:1px solid black;*/
-
    text-align:justify;
    
}


.testimonial-stars {
    color: #f1c40f;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 16px;
    color: rgb(54, 148, 158);
    font-weight: 600;
}

.slider-btn {
    background-color: #ffffff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
    color: #2c3e50;
    z-index: 2;
}

    .slider-btn:hover {
        background-color: #e6f5f5;
    }

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 90%;
    }

    .testimonial-text {
        margin-top: 50px;
    }
}

/*inquire now ke liye=======================================================*/
.inquiry-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
/*    margin: 0px auto;*/
    /*  background: #fff;*/
        background: linear-gradient(to bottom right, #fff, #e6f5f5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Left Image Section */
.left-image {
    flex: 1 1 50%;
/*    background: linear-gradient(to bottom right, #fff, #e6f5f5);*/
/*    background: #e6f5f5;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Blob-Shaped Container */
.blob-shape {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.blob-shape img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Right Form Section */
.right-form {
    flex: 1 1 50%;
    padding: 40px;
/*    background: #e6f5f5;*/
}

.right-form h2 {
  margin-bottom: 20px;
  color: rgb(54, 148, 158);
  font-size: 2.8rem;
}

form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

.captcha label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

form button {
  padding: 12px;
  background: rgb(54, 148, 158);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

    form button:hover {
        background:rgb(33, 122, 131);
    }

/* Responsive Design */
@media (max-width: 1024px) {
  .blob-shape {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .inquiry-section {
    flex-direction: column;
  }

  .left-image,
  .right-form {
    flex: 1 1 100%;
    padding: 30px 20px;
  }

  .blob-shape {
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .right-form h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  form button {
    width: 100%;
  }
}



/*blog ka lia ============================================================= 
 General container styling */
.recent-stories-container {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    background-color: white;
}

    .recent-stories-container h2 {
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        color: #36949E;
        margin-bottom: 2rem;
        padding: 10px;
    }

.recent-stories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

    .recent-stories-grid .card-content h3 {
        color: rgb(54, 148, 158);
    }

    .recent-stories-grid .card-content p {
        color: black;
    }

@media (min-width: 640px) {
    .recent-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .recent-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: #f2fafa;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .card img {
        width: 100%;
        height: 12rem;
        object-fit: cover;
    }

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
}

.card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 50px;
}

    .card .footer span {
        font-size: 0.875rem;
        color: black;
        padding: 1rem;
    }

    .card .footer i {
        font-size: 1.25rem;
        cursor: pointer;
        color: navajowhite;
        padding: 1rem;
    }

        .card .footer i:hover {
            color: black;
        }
/*map section ======================================================================================= */

.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }



/*our mission ============================================================ */
.vision-mission-section {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(to right, #f0f4f8 50%, #ffffff 50%);
    padding: 40px 60px;
    border-radius:10px;
}

.section-box {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
    border-radius:10px;
}

    .section-box h2 {
        color: rgb(54, 148, 158);
        font-size: 28px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

.icon >img {
    height:90px;
    width:95px;
    font-size: 60px;
    color: #5dade2;
    margin-bottom: 20px;
}

.section-box p {
    font-size: 14px;
    text-align:justify;
    color: black;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .vision-mission-section {
        flex-direction: column;
    }

    .section-box {
        padding: 30px 20px;
    }
}
/*footer style ===================================================================================== */
/* ========================= Footer Section ============================= */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* --------------------- Top Footer Grid --------------------- */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 40px;
    border-bottom: 1px solid #333;
}

.footer-box {
    flex: 1 1 250px;
    min-width: 240px;
}

    .footer-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
        color: #fff;
    }

    .footer-box p,
    .footer-box li,
    .footer-box a {
        color: #ccc;
        font-size: 14px;
        line-height: 1.8;
        text-decoration: none;
    }

    .footer-box ul {
        list-style: none;
        padding: 0;
    }

    .footer-box li a:hover {
        color: #00bcd4;
    }

/* --------------------- Social Icons --------------------- */
.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        margin-right: 12px;
        color: #fff;
        font-size: 18px;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #00bcd4;
        }

/* --------------------- Inquiry Form --------------------- */
.inquiry-form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.inquiry-form .form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"] {
    flex: 1 1 45%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 14px;
}

.inquiry-form input::placeholder {
    color: #bbb;
}

.inquiry-form button {
    padding: 10px 20px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    align-self: flex-start;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

    .inquiry-form button:hover {
        background-color: #0197a6;
    }

/* --------------------- Bottom Footer --------------------- */
.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

    .footer-bottom a {
        color: #00bcd4;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* --------------------- Responsive --------------------- */
@media (max-width: 1024px) {
    .footer-top {
        padding: 50px 7%;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        padding: 40px 5%;
        gap: 40px;
        text-align: center;
    }

    .inquiry-form .form-group {
        flex-direction: column;
    }

    .inquiry-form input {
        flex: 1 1 100%;
    }

    .inquiry-form button {
        align-self: center;
    }

    .footer-box {
        text-align: center;
    }

    .social-icons a {
        margin-right: 10px;
        font-size: 20px;
    }
}
