/* style for Hero Section */
#heroSection {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Styling */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-3d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Content Box Styling */
.hero-content-box {
    position: absolute;
    top: 140px;
    left: 50px;
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 3rem;
}


/* Typography */
.hero-content-box h1 {
    font-size: 38px;
    font-weight: 1000;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #fff;
}

/* Button */
.cta-btn {
    display: inline-flex;
    background: #FFD600;
    align-items: center; 
    gap: 10px;
    padding: 16px 38px;
    font-size: 18px;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0px 6px 18px rgba(255,214,0,0.35);
}

/* Button hover */
.hero-content-box:hover .cta-btn {
    transform: translateX(6px);
}

.highlight-text {
    color: #FFD600; /* Figma yellow */
}


/* Responsive Adjustments */

/* Small devices (phones) */
@media (max-width: 640px) {
    .hero-content-box {
        left: 20px;
        top: 220px;
        max-width: 90%;
        height: auto;
        padding: 1.5rem;
        transform: skewX(0); /* Removing skew for better mobile readability */
    }

    .hero-content-box p {
        font-size: 1.5rem;
    }

    .hero-content-box a {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* Medium devices (tablets) */
@media (min-width: 641px) and (max-width: 1024px) {
    .hero-content-box {
        left: 50px;
        top: 80px;
        max-width: 80%;
        padding: 2rem;
        transform: skewX(3deg);
    }

    .hero-content-box p {
        font-size: 2rem;
    }

    .hero-content-box a {
        padding: 0.5rem 2rem;
    }
}

/* Large screens */
@media (min-width: 1025px) {
    .hero-content-box {
        left: 108px;
        top: 160px;
    }
}

/* --- About Us Section --- */
#aboutUsSection {
    width: 100%;
    padding: 7rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9fbfc;
    position: relative;
    box-sizing: border-box;
}

.main-aboutUs-container {
    max-width: 1330px;
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0 1rem;
}

.aboutUs-content {
    flex: 1;
    min-width: 300px;
    position: relative; /* important */
}

.aboutUs-content::before,
.aboutUs-content::after {
    content: "";
    position: absolute;
    background: #e9eff5; /* light faded color */
    border-radius: 8px;
    opacity: 0.6;
}

/* Bigger top square */
.aboutUs-content::before {
    width: 60px;
    height: 60px;
    top: -100px;
    left: -70px;
}

/* Smaller square below, slightly right */
.aboutUs-content::after {
    width: 35px;
    height: 35px;
    top: -40px;
    left: -10px;
}

.aboutUs-subtitle {
    color: #0077cc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.aboutUs-title {
    color: #1b365d;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.aboutUs-description {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aboutUs-btn {
    display: inline-block;
    background-color: #0077cc;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.aboutUs-btn:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
}

.aboutUs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1;
    min-width: 300px;
    padding-top: 2rem;
}

.aboutUs-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.aboutUs-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease;
}

.aboutUs-card-title,
.aboutUs-quote {
    color: #1b365d;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.5s ease, bottom 0.5s ease;
}

.aboutUs-quote {
    font-size: 1rem;
    color: #98989892;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.aboutUs-card:hover .aboutUs-icon,
.aboutUs-card:hover .aboutUs-card-title {
    transform: translateY(-80px);
}

.aboutUs-card:hover .aboutUs-quote {
    bottom: 40px;
}

/* --- Responsive Styling --- */
/* Responsive Tweaks */
@media (max-width: 1024px) {
    .main-aboutUs-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .aboutUs-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #aboutUsSection {
        padding: 3rem 0rem;
    }

    .aboutUs-title {
        font-size: 1rem;
    }

    .aboutUs-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* style for count section */

.countstats-container {
    background: linear-gradient(to right, #2086c5, #0A629A);
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
}

.countstats-wrapper {
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.countstat-item {
    display: flex;
    justify-content: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.countstat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.counticon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    fill: #ffd700;
}

.countnumber {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.countlabel {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .countstats-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .countstat-item:not(:last-child)::after {
        display: none;
    }
}

/* style for service section */
.services-section-home {
    position: relative;
    min-height: 100vh;
    padding: 7rem 5rem;
    color: white;
    text-align: center;
}

.services-background-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Adjust transparency if needed */
}

/* Gradient Overlay */
.services-section-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        74.35deg,
        rgba(11, 53, 117, 0.85) 19.49%,
        rgba(0, 0, 0, 0.85) 80.65%
    );
    z-index: -1; /* Ensure it’s above the background image */
}

.servicessection-title-home {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.servicessection-heading-home {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.service-card-home {
    position: relative; /* For arrow positioning */
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid white;

    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align everything to the left */
    text-align: left; /* Ensure text is aligned left */
    background: rgba(255, 250, 250, 0.05); /* Very light transparency */
    backdrop-filter: blur(5px); /* Glassmorphism effect */
}

.service-card-home:hover {
    transform: translateY(-10px);
    background: #37affb;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* .service-card-home::after {
    content: '➜';
    font-size: 20px;
    color: white;
    position: absolute;
    top: 20px;
    right: 32px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-home:hover::after {
    opacity: 1;
    transform: translateX(5px);
} */

.service-card-home {
    position: relative;
    transition: all 0.3s ease;
}

.know-more-link {
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 20px;
    color: white;
    opacity: 0;
    transform: translateX(0);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.service-card-home:hover .know-more-link {
    opacity: 1;
    transform: translateX(5px);
    pointer-events: auto;
    cursor: pointer;
}

/* Icon Styling */
.service-icon-home {
    font-size: 2.5rem;
    margin-bottom: 1rem; /* Reduced margin for better spacing */
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card-home:hover .service-icon-home {
    transform: scale(1.2);
}

/* Title and Description */
.service-title {
    color: white;
    font-size: 18px;
    margin-bottom: 16px; /* Reduced for better spacing */
    text-align: left;
}
.service-card p {
    text-align: left;
}

.service-description {
    color: white;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
    text-align: left;
    margin-bottom: 20px;
}

.servicesexplore-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.servicesexplore-btn:hover {
    background: white;
    color: #002060;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* New Arrow Styles */
.card-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    transform: scale(0.8);
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: scale(1);
}

.card-arrow:hover {
    background: white;
    color: black;
}

@media (max-width: 1024px) {
    .services-section-home {
        padding: 5rem 3rem;
    }

    .servicessection-heading-home {
        font-size: 2.25rem;
    }

    .service-card-home {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .services-section-home {
        padding: 4rem 2rem;
    }

    .servicessection-heading-home {
        font-size: 2rem;
    }

    .services-grid-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-home {
        padding: 1.25rem;
        text-align: center;
        align-items: center;
    }

    .service-icon-home,
    .service-title,
    .service-description {
        text-align: center;
    }

    .card-arrow {
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .services-section-home {
        padding: 3rem 1rem;
    }

    .servicessection-title-home {
        font-size: 1rem;
    }

    .servicessection-heading-home {
        font-size: 1.5rem;
    }

    .servicesexplore-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .card-arrow {
        font-size: 1rem;
        padding: 6px;
    }
}

/* Portfolio Section Wrapper */
.portfolio-section {
    width: 100%;
    padding: 7rem 5rem; /* Top & bottom spacing */
    background-color: #f8f8f8; /* Light background for contrast */
}

/* Portfolio Container */
.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem; /* Side padding to prevent content from touching edges */
}

/* Portfolio Header */
.portfolioheader {
    text-align: left;
    margin-bottom: 3rem;
}

.portfolioheader h1 {
    color: #0066b2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.portfolioheader h2 {
    color: #003366;
    font-size: 2.5rem;
}

/* Portfolio Filter Navigation */
.portfoliofilternav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 4rem;
}

.portfoliofilter-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.portfoliofilter-btn.active {
    background-color: #0066b2;
    color: white;
    border-color: #0066b2;
}

/* Portfolio Grid Layout */
.portfolio-grid {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 1.5rem; */
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 11/9;
    /* border-radius: 8px; */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

/* Portfolio Overlay (for hover effect) */
.portfoliooverlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 178, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: white;
    transition: left 0.5s ease;
}

.portfolio-item:hover .portfoliooverlay {
    left: 0;
}

.portfoliooverlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfoliooverlay p {
    font-size: 1rem;
}

/* Play Icon */
.portfolioplay-icon {
    position: absolute;
    top: 10%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Optionally hide element */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-item:hover .portfolioplay-icon {
    opacity: 1; /* Show when hovered */
    visibility: visible; /* Make visible */
}

.portfolioplay-icon::after {
    content: "▶";
    color: #0066b2;
    font-size: 1.5rem;
}

.productcard-button {
    padding-top: 20px;
    color: #fff;
}

@media (max-width: 1024px) {
    .portfolioheader h2 {
        font-size: 2rem;
    }
    .portfoliofilter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .portfoliooverlay h3 {
        font-size: 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .portfoliofilter-nav {
        gap: 0.3rem;
    }
    .portfoliofilter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .portfoliooverlay h3 {
        font-size: 0.9rem;
    }
    .portfoliooverlay p {
        font-size: 0.85rem;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolioheader h2 {
        font-size: 1.8rem;
    }
    .portfoliofilter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* certification section*/
.certifications {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 5rem; /* Top & bottom spacing */
    text-align: center;
}

.certifications_subtitle {
    color: #0066cc;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.certifications_title {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certifications_description {
    color: #666;
    font-size: 16px;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certifications_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: start;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.certification-item_image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.certification-item_text {
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .certifications_title {
        text-align: center;
        font-size: 28px;
    }
    .certifications_grid {
        gap: 24px;
    }

    .certification-item_image {
        width: 100px;
        height: 100px;
    }
    .certifications {
        padding: 5rem 0rem; /* Top & bottom spacing */
    }
}

/* partner section styles */

.partners-section {
    background-image: url("../images/partners_bg.png");
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 5rem;
}

/* style for the partners logo */
.partners-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}

.mainpartner-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures text and images are side-by-side */
    position: relative;
    z-index: 1;
}

.partners-content {
    width: 50%;
}

.partnersubtitle {
    color: #ddd;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.partnertitle {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.partnerdescription {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.partners-logos {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rightcontainer {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rightcenterBox {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #071952;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.rightbox {
    position: absolute;
    width: 300px;
    height: 300px;
    animation: animate 15s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes animate {
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 360deg;
    }
}

.rightcontainer:hover .rightbox {
    animation-play-state: paused;
}

.rightbox .rightimg {
    position: relative;
    left: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.rightbox .rightimg .rightimgBx {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffffff;
    transform: rotate(calc(360deg / 7 * var(--i)));
    transform-origin: 190px;
}

.rightbox .rightimg .rightimgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: rotate(calc(-360deg / 7 * var(--i)));
    animation: animateImgBx 15s linear infinite;
}

@keyframes animateImgBx {
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: -360deg;
    }
}

.rightcontainer:hover .rightbox .rightimg .rightimgBx img {
    animation-play-state: paused;
}

.rightcenterBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive Design for Small Screens */
@media (max-width: 1024px) {
    .partners-section {
        padding: 3rem 3%;
    }

    .mainpartner-container {
        flex-direction: column; /* Stack content on smaller screens */
        text-align: center;
    }

    .partners-content {
        width: 100%;
        max-width: 100%;
    }

    .partners-logos {
        max-width: 300px;
    }

    .rightcenterBox {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

    .rightbox {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .partnertitle {
        font-size: 1.8rem;
    }

    .partnerdescription {
        font-size: 0.9rem;
    }

    /* .partners-logos {
        max-width: 250px;
    } */
    .partners-logos {
        max-width: 300px;
    }

    .rightbox {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .partnertitle {
        font-size: 1.5rem;
    }

    .partnersubtitle {
        font-size: 1.1rem;
    }

    .partnerdescription {
        font-size: 0.85rem;
    }

    .rightcenterBox {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    .rightbox {
        width: 200px;
        height: 200px;
    }

    /* .partners-logos {
        max-width: 200px;
    } */
    .partners-logos {
        max-width: 300px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .partnertitle {
        font-size: 1.8rem;
    }
    .partnerdescription {
        font-size: 0.9rem;
    }
    /* .partners-logos {
        max-width: 250px;
    } */
    .partners-logos {
        display: none;
    }
    .rightbox {
        width: 200px;
        height: 200px;
        animation: none; /* Stop rotation */
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .partners-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 2rem auto 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        backdrop-filter: blur(4px);
    }

    .rightcontainer {
        position: static;
        width: 100%;
        height: auto;
        display: contents;
    }

    .rightbox {
        display: contents;
        width: auto;
        height: auto;
        animation: none;
    }

    .rightimg {
        display: contents;
    }

    .rightimgBx {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        transform: none;
        position: relative;
    }

    .rightimgBx img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        animation: none;
        transform: none;
    }

    .rightcenterBox {
        display: none;
    }
    .partners-logos {
        display: none;
    }
}

/* style for testimonials */
.write-review-container {
    margin: 3rem 0 0;
    text-align: center;
}

.write-review-button {
    background-color: #00b4d8;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.write-review-button:hover {
    background-color: #0096c7;
}

.testimonial-section {
    width: 100%;
    padding: 7rem 5rem; /* Top & bottom spacing */
    background-color: rgba(3, 24, 77, 0.8);
    color: white;
}

.Testimonialscontainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.Testimonialssubtitle {
    color: #fff;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.Testimonialsdescription {
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: calc(33.333% - 2rem);
    margin: 0 1rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Testimonialsstars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.Testimonialsrating {
    color: #666;
    margin-left: 0.5rem;
}

.testimonial-text {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.Testimonialsprofile {
    display: flex;
    align-items: center;
    background: #0077b6;
    padding: 1rem;
    border-radius: 10px;
    color: white;
}

.Testimonialsprofile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.Testimonialsprofile-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.Testimonialsprofile-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Navigation buttons */
.Testimonialsslider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    z-index: 10;
}

.Testimonialsslider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.Testimonialsprev {
    left: 0;
}

.Testimonialsnext {
    right: 0;
}

/* Dots */
.Testimonialsdots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.Testimonialsdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Testimonialsdot.active {
    background: white;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 50%;
        max-width: calc(50% - 2rem);
    }
    .Testimonialsstars {
        font-size: 1.1rem;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-width: calc(100% - 2rem);
    }
    .Testimonialsstars {
        font-size: 1rem;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
    .testimonial-slider {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .Testimonialsprofile img {
        width: 40px;
        height: 40px;
    }

    .Testimonialsprofile-info h4 {
        font-size: 1rem;
    }

    .Testimonialsprofile-info p {
        font-size: 0.8rem;
    }

    .Testimonialsstars {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* style for gallery */

.gallery-section {
    width: 100%;
    padding: 7rem 5rem; /* Top & bottom spacing */
    color: white;
    background-color: #f9f9f9;
}

.gallery-container {
    /* max-width: 1200px; */
    width: 100%;
    align-items: center;
    /* display: flex;
   
    justify-content: space-between; /* Ensures text and images are side-by-side 
    position: relative;
    z-index: 1; */
}

.section-title {
    /* margin-bottom: 40px; */
    font-size: 2.5rem;
    color: #2c3e50;
    text-transform: uppercase;
    /* 
    letter-spacing: 1.5px;*/
    /* position: relative;
    display: inline-block; */
    text-align: center;
}

.section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 10px auto;
}

.gallery_subtitle {
    color: #2c3e50;
    font-size: 1.25rem;
    text-align: center;
}
.gallery-grid {
    width: 100%;
    height: 500px;
    position: relative;
}

.gallery-item {
    position: absolute;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border: 2px solid #eaeaea;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Style for contact-us-section */
.contact-us-section {
    padding: 15rem 3rem;
    color: white;
    background-color: #f9f9f9;
}

.Contactbackground-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.Contactshape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(208, 235, 255, 0.2),
        rgba(208, 235, 255, 0.1)
    );
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.Contactshape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(208, 235, 255, 0.2),
        rgba(208, 235, 255, 0.1)
    );
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.Contactcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h4 {
    color: #0077cc;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-header h1 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-left {
    flex: 1;
}

.Contactmap-container {
    margin-bottom: 30px;
}

.Contactmap-container img {
    width: 100%;
    border-radius: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.contact-right {
    flex: 1;
}
.contact-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.5s ease;
}
.Contactform-group {
    margin-bottom: 20px;
}

.Contactform-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.Contactform-group input,
.Contactform-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f8f8;
}

.Contactsubmit-btn {
    background: #0077cc;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.Contactsubmit-btn:hover {
    background: #0066b3;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .Contactcontainer {
        padding: 30px 20px;
    }

    .contact-header h1 {
        font-size: 2em;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-left,
    .contact-right {
        flex: none;
        width: 100%;
    }

    .contact-info {
        align-items: center;
    }

    .Contactmap-container img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 1.75em;
    }

    .contact-header p {
        font-size: 0.9rem;
    }

    .contact-content {
        flex-direction: column;
        padding: 20px;
    }

    .contact-left {
        padding-bottom: 20px;
    }

    .contact-info {
        align-items: center;
    }

    .Contactmap-container img {
        height: 200px;
    }

    .Contactform-group input,
    .Contactform-group textarea {
        font-size: 0.9rem;
    }

    .Contactsubmit-btn {
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.5em;
    }

    .contact-header p {
        font-size: 0.85rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .Contactmap-container img {
        height: 180px;
    }

    .Contactform-group input,
    .Contactform-group textarea {
        font-size: 0.8rem;
    }

    .Contactsubmit-btn {
        padding: 8px 20px;
    }
}

/* style for the client section */

.client-map-section {
    background: #e8f2f9;

    padding: 3rem 5rem; /* Top & bottom spacing */
    /* background-color: rgba(3, 24, 77, 0.8); */
    color: white;
}
#client-map {
    border: 2px solid #007bff;
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.client-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.client-global-presence {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.client-content {
    flex: 1;
    min-width: 320px;
}

.client-subtitle {
    color: #0084ff;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.client-title {
    color: #0a2540;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.client-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
}

.client-map-container {
    flex: 1;
    min-width: 320px;
    position: relative;
}

/* Fixed Responsive Design */
@media (max-width: 768px) {
    .client-global-presence {
        flex-direction: column; /* Force content on top */
        text-align: center;
    }

    .client-content {
        order: 1; /* Text first */
    }

    .client-map-container {
        order: 2; /* Map below */
        width: 100%;
    }

    .client-title {
        font-size: 1.8rem;
    }

    .client-description {
        font-size: 0.95rem;
    }

    #client-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .client-title {
        font-size: 1.5rem;
    }

    .client-description {
        font-size: 0.9rem;
    }

    #client-map {
        height: 300px;
    }
}

/* client logo section */
.container-logo_client {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logos-section-logo_client {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #f0f9ff, #ffffff);
    overflow: hidden;
}

.section-header-logo_client {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header-logo_client.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease forwards;
}

.section-header-logo_client h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-header-logo_client p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.logos-scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.logos-grid-logo_client {
    display: flex;
    gap: 30px;
    animation: scrollLeft 30s linear infinite;
}

.logos-scroll-wrapper:hover .logos-grid-logo_client {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item-logo_client {
    height: 100px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease,
        background-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    background-color: #fff;
}

.logo-item-logo_client:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.logo-item-logo_client.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-item-logo_client img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.logo-item-logo_client .overlay-logo_client {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
    text-align: center;
}

.logo-item-logo_client .overlay-logo_client h3 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
}

.logo-item-logo_client .overlay-logo_client p {
    font-size: 14px;
}

.logo-item-logo_client:hover .overlay-logo_client {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .logo-item-logo_client {
        padding: 12px;
        height: 80px;
        min-width: 140px;
    }

    .section-header-logo_client h2 {
        font-size: 28px;
    }

    .section-header-logo_client p {
        font-size: 16px;
    }
}
