.section-container {
    max-width: 1200px;
    margin: 0 auto;     
    padding: 0 20px; 
}
/* 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;
    inset: 0;  
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


/* Typography */
.hero-content-box h1 {
    font-size: clamp(3.2rem, 3.5vw, 3.5rem);
    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) {
    #heroSection {
        min-height: 60vh;   
        height: auto;
    }
    .hero-video-container {
        height: 60vh;  
    }
    .hero-video-3d {
        height: 100%;
    }
    .hero-content-box {
        padding: 0 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .hero-content-box h1 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .cta-btn {
        padding: 5px 12px;
        font-size: 10px;
        gap: 5px;
    }
}

/* Medium devices (tablets) */
@media (min-width: 641px) and (max-width: 1024px) {
     #heroSection {
        min-height: 85vh;   
        height: auto;
    }
    .hero-video-container {
        height: 85vh;  
    }
    .hero-video-3d {
        height: 100%;
    }
    .hero-content-box {
        left: 30px;       
       
    }
    .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: 30px;       
    }
}

/* --- About Us Section --- */
#aboutUsSection {
    width: 100%;
    padding: 7rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9fbfc;
    position: relative;
    box-sizing: border-box;
}

.main-aboutUs-container {
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.aboutUs-content {
    flex: 1;
    min-width: 300px;
    position: relative; /* important */
}

.aboutUs-subtitle {
    color: #147DC0;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    z-index: 1; 
}

.aboutUs-subtitle::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -45px;
    width: 64px;
    height: 65px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='%23e9eff5' fill-opacity='0.9'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='%23e9eff5' fill-opacity='0.9'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.aboutUs-title {
    color: #083551;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.aboutUs-description {
    color: #595959;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aboutUs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #074C79 0%, #147DC0 100%);
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Arrow default */
.aboutUs-btn .arrow {
    opacity: 1;
    transition: opacity 0.25s ease;
}

/* Hover colors */
.aboutUs-btn.hover {
    background: linear-gradient(90deg, #FBE25D 0%, #ECC702 100%);
    color: #000;
}

/* Hide arrow first */
.aboutUs-btn.hide-arrow .arrow {
    opacity: 0;
}

.aboutUs-cards {
    height: 260px;
    display: flex;   
    gap: 30px;
    flex: 1;
    min-width: 300px;
    align-items: flex-start;
}

.aboutUs-card {
    height: auto;
    min-height: 160px;
    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;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    justify-content: center; 
}

.aboutUs-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease;
    margin-bottom: 0px;
}

.aboutUs-card-title,
.aboutUs-quote {
    color: #595959;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.aboutUs-quote {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%) translateY(10px);
    width: 90%;
    font-size: 0.95rem;
    color: #595959;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.aboutUs-card:hover .aboutUs-icon,
.aboutUs-card:hover .aboutUs-card-title {
    transform: translateY(-75px);
}

.aboutUs-card:hover .aboutUs-quote {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.aboutUs-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.column-down {
    transform: translateY(20px);
}

.column-up {
    transform: translateY(-20px);
}

.aboutUs-icon,
.aboutUs-card-title,
.aboutUs-quote {
    transition:
        transform 0.5s cubic-bezier(.34,1.56,.64,1),
        color 0.3s ease,
        opacity 0.4s ease;
}

/* --- Responsive Styling --- */
/* Responsive Tweaks */
@media (max-width: 1024px) {
    .main-aboutUs-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .aboutUs-title {
        font-size: 2rem;
    }
    .aboutUs-cards {
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        
    }
}

@media (max-width: 640px) {
    #aboutUsSection {
        padding: 4rem 1rem;
    }
    .main-aboutUs-container {
        text-align: center;
    }

    .aboutUs-content {
        text-align: center;
        font-size: 0.9rem;
        
    }

    .aboutUs-title {
        font-size: 1.5rem;
        text-align: center;
    }

    /* 2 COLUMN GRID */
    .aboutUs-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: stretch;
    }

    .aboutUs-column {
        display: contents;
        transform: none;
    }

    /* SAME HEIGHT CARDS */
    .aboutUs-card {
        padding: 12px;
        min-height: 120px;
        height: auto;      
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    /* ICON LEFT */
    .aboutUs-icon {
        margin-bottom: 0;
    }

    /* TITLE LEFT */
    .aboutUs-card-title {
        font-size: 1rem;
        padding-top: 0; 
        
    }

    /* QUOTE ALWAYS VISIBLE */
    .aboutUs-quote {
        position: static;
        transform: none;
        opacity: 1;
        font-size: 12px;
        line-height: 18px;
        width: 100%;
        padding: 0;
        text-align: left;
        color: #595959;
        font-weight: 400;
             
    }

    /* REMOVE ALL ANIMATION */
    .aboutUs-icon,
    .aboutUs-card-title,
    .aboutUs-quote {
        transition: none;
    }

    .aboutUs-card:hover .aboutUs-icon,
    .aboutUs-card:hover .aboutUs-card-title,
    .aboutUs-card:hover .aboutUs-quote {
        transform: none;
    }

    .aboutUs-subtitle::before {
        top: -35px;
        left: -45px;
        width: 50px;
        height: 50px;
    }
}

/* style for count section */

.countstats-container {
    position: relative;
    padding: 40px 0px;
    color: #FFFFFF;

   background: linear-gradient(
        90deg,
        #0A629A 0%,
        #37AFFB 100%
    );
}


/* Keep content above overlay */
.countstats-wrapper {
    position: relative;
    z-index: 2;
}
.countstats-wrapper {
    display: flex; 
    align-items: center;  
}

.countstat-item {
    display: flex;
    align-items: center;
    flex: 1;   
    position: relative;
    text-align: left;
    padding: 0 20px;   
}

.countstat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.counticon {
    width: 100px;
    height: 100px;
    fill: #ffd700;
}

.countnumber {
    font-size: 36px;
    font-weight: bold;   
    color: #FFFFFF;
}

.countlabel {
    font-size: 16px;
    opacity: 0.9;
    white-space: nowrap
}
@media (max-width: 640px) {
  .countstats-container {
      padding: 40px 0px;
  }

  .countstats-wrapper {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .countstat-item {
      flex: unset !important;   
      padding: 0 !important;   
      width: 100%;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .countstat-item::after {
      display: none;
  }

  .counticon {
      width: 48px;
      height: 48px;
  }

  .countnumber {
      font-size: 22px;
  }

  .countlabel {
      font-size: 12px;
      white-space:normal;
      line-height: 1.2;
      
  }
}
@media (min-width: 641px) and (max-width: 1024px) {

    .countstats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        justify-items: center;
        margin: 0 auto;  
    }

    .countstat-item {
        flex: unset;
        width: 100%;
        display: flex;
        flex-direction: row;      
        align-items: center;      
        gap: 15px;                
        text-align: left;
    }

    .countstat-item::after {
        display: none;
    }
}


/* style for service section */
.services-section-home {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0;
    color: white;
    text-align: center;
    /* inclined bottom */
     clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 96% );
}

.services-background-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2; /* Adjust transparency if needed */
}

.services-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.services-heading-inner {
    position: relative;
    display: inline-block; 
}

.services-figma-icon {
    position: absolute;
    top: -45px;
    right: 95px;  
    width: 65px;
    height: 66px;
    pointer-events: none;
}

.services-figma-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 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;
    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 {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem; /* Reduced margin for better spacing */
    display: inline-block;
    transition: transform 0.3s ease;
}
.service-icon-home img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.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_page {
    color: white;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.8;
    text-align: left;
    
}

.servicesexplore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Arrow default */
.servicesexplore-btn .arrow {
    opacity: 1;
    transition: opacity 0.25s ease;
}

/* Hover colors (via JS class) */
.servicesexplore-btn.hover {
    background: yellow;
    color: #002060;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hide arrow */
.servicesexplore-btn.hide-arrow .arrow {
    opacity: 0;
}

/* 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;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 97%
        );
    }

    .servicessection-heading-home {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
     .services-title-wrapper {
      text-align: center;
      margin-bottom: 0;
    }

    .service-card-home {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }
    .services-figma-icon {
        top: -42px;
        right: 70px;
        width: 64px;
        height: 65px;
    }
    .service-icon-home {
       margin-bottom: 0.5rem; 
    }
}

@media (max-width: 768px) {
    .services-section-home {
        padding: 4rem 2rem;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 99%
        );
    }

    .servicessection-heading-home {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .services-grid-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-home {
        padding: 1.25rem;
        text-align: left;
        align-items: flex-start;
    }
    .services-title-wrapper {
      text-align: center;
      margin-bottom: 0;
    }

    .service-icon-home,
    .service-title,
    .service-description {
        text-align: left;
    }

    .card-arrow {
        top: 5px;
        right: 5px;
    }
    .services-figma-icon {
        top: -34px;
        right: 64px;
        width: 54px;
        height: 55px;
    }
    /* Icon Styling */
   .service-icon-home {
      width: 54px;
      height: 54px;
      margin-bottom: 1rem; /* Reduced margin for better spacing */
    }
    /* Title and Description */
    .service-title {
      font-size: 20px;
      margin-bottom: 0.5rem; /* Reduced for better spacing */
    }

   
}

@media (max-width: 480px) {
    .services-section-home .section-container {
      padding: 0 10px;
    }
    .services-section-home {
        padding: 4rem 1rem;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 99%
        );
    }

    .servicessection-title-home {
        font-size: 1rem;
    }
    .services-title-wrapper {
      text-align: center;
      margin-bottom: 0;
    }

    .servicessection-heading-home {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .servicesexplore-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

   .service-icon-home {
      width: 34px;
      height: 34px;
      margin-bottom: 0.5rem; 
    }
    .service-title {
      font-size: 14px;
      margin-bottom: 0.5rem; 
    }
    .card-arrow {
        font-size: 1rem;
        padding: 6px;
    }
    .services-figma-icon {
        top: -26px;
        right: 40px;
        width: 44px;
        height: 45px;
    }
    .service-card-home {
      padding: 1.4rem 1.2rem;
    }
}

/* Portfolio Section Wrapper */
.portfolio-section {
    width: 100%;
    padding: 5rem 0 8rem 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

/* front square + bottom icon */
.portfolio-section::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:

    url("data:image/svg+xml,%3Csvg width='81' height='136' viewBox='0 0 61 136' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='114.482' height='114.482' rx='10' transform='matrix(-0.258819 0.965926 0.965926 0.258819 27.3848 -2.24487)' fill='%2362A8D5'/%3E%3C/svg%3E") no-repeat center,
    
    /* TOP FRONT SQUARE */
    url("data:image/svg+xml,%3Csvg width='86' height='145' viewBox='0 0 86 145' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='111.32' height='111.32' rx='10' transform='matrix(-0.5 0.866025 0.866025 0.5 52.002 -3.65869)' fill='%2362A8D5'/%3E%3C/svg%3E") no-repeat,

    /* BOTTOM DECORATIVE ICON */
    url("/images/portfoliobottomicon.svg") no-repeat;
    background-size:
        160px
        160px,
        120px;

    background-position:
        right -30px top 60px,
        right -10px top 10px,
        right -30px bottom -40px;

    z-index: 1;
}

/* Portfolio Header */
.portfolioheader {
    text-align: left;
    margin-bottom: 3rem;
}

.portfolioheader h1 {
    color: #0066b2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.portfolioheader h1::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -45px;
    width: 60px;
    height: 61px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='%23E6EEF4' fill-opacity='0.8'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='%23E6EEF4' fill-opacity='0.8'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.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;
    /* 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) {
    .portfolio-section {
      padding: 5rem 0 8rem 0; /* Top & bottom spacing */
    }
    .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-section {
      padding: 5rem 0; /* Top & bottom spacing */
    }
     .portfolioheader {
      margin-bottom: 1.5rem;
    }
    .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;
    }
    .portfolioheader h1::before {
      top: -55px;
      left: -10px;
      width: 65px;
      height: 66px;
    }
    .portfolio-section::after{ 
      background:
      url("data:image/svg+xml,%3Csvg width='81' height='110' viewBox='0 0 61 136' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='114.482' height='114.482' rx='10' transform='matrix(-0.258819 0.965926 0.965926 0.258819 27.3848 -2.24487)' fill='%2362A8D5'/%3E%3C/svg%3E") no-repeat center,  
      url("data:image/svg+xml,%3Csvg width='86' height='90' viewBox='0 0 86 145' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='111.32' height='111.32' rx='10' transform='matrix(-0.5 0.866025 0.866025 0.5 52.002 -3.65869)' fill='%2362A8D5'/%3E%3C/svg%3E") no-repeat,
      url("/images/portfoliobottomicon.svg") no-repeat;
      background-size:
        100px,
        140px,
        65px;

      background-position:
        right -20px top 30px,
        right -20px top 0,
        right 0 bottom -20px;
    }

}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .portfolio-section {
      padding: 5rem 0; /* Top & bottom spacing */
    }
    .portfolioheader {
      margin-bottom: 1rem;
    }
    .portfolioheader h2 {
        font-size: 1.6rem;
    }
    .portfolioheader h1 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .portfoliofilter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    /* Remove overlay */
    .portfoliooverlay {
        display: none;
    }
    .portfoliooverlay p {
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
     line-clamp: 3;
   }

    .portfolio-item {
        background: #1f5f94;
        border-radius: 10px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        min-height: 280px;
    }

    /* White image box */
    .portfolio-item img {
        background: #f4f4f4;
        border-radius: 10px;
        margin-bottom: 16px;
        object-fit: cover;
        width: 100%;
        height: 80px;
    }

    /* Title & text */
    .portfoliooverlay {
        display: block;
        position: static;
        background: none;
        color: white;
        text-align: left;
        
    }
    .portfoliooverlay h3 {
      display: -webkit-box;
      -webkit-line-clamp: 1;   /* max 2 lines */
      -webkit-box-orient: vertical;
       overflow: hidden;
       line-clamp: 3;
    }
    

    .portfoliooverlay {
        padding: 0;
        margin-top: auto;
    }

    /* Move play button to bottom right */
    .portfolioplay-icon {
        position: absolute;
        bottom: 14px;
        right: 14px;
        top: auto;
        left: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 35px;
        height: 35px;
        
    }
    .portfolioplay-icon::after {
      font-size: 1rem;
      
    }

    /* Two cards per row */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .portfolioheader h1::before {
      top: -45px;
      left: -30px;
      width: 50px;
      height: 51px;
    }
    .portfolio-section::after{ 
      background:
      url("data:image/svg+xml,%3Csvg width='81' height='110' viewBox='0 0 61 136' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='114.482' height='114.482' rx='10' transform='matrix(-0.258819 0.965926 0.965926 0.258819 27.3848 -2.24487)' fill='%2362A8D5'/%3E%3C/svg%3E") no-repeat center,  
      url("data:image/svg+xml,%3Csvg width='86' height='90' viewBox='0 0 86 145' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='111.32' height='111.32' rx='10' transform='matrix(-0.5 0.866025 0.866025 0.5 52.002 -3.65869)' fill='%2362A8D5'/%3E%3C/svg%3E") no-repeat,
      url("/images/portfoliobottomicon.svg") no-repeat;
      background-size:
        90px,
        120px,
        65px;

      background-position:
        right -20px top 30px,
        right -20px top 0,
        right 0 bottom -20px;
    }

}

/* certification section*/
.certifications {
    padding: 5rem 0; /* Top & bottom spacing */
    text-align: center;
}

.certifications_subtitle {
    color: #0066cc;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    z-index: 1;          
}
.certifications_subtitle::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -50px;
    width: 66px;
    height: 67px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='%23F0F4F7' fill-opacity='2'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='%23F0F4F7' fill-opacity='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;         
    
}

.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 {
      padding: 3rem 0; /* Top & bottom spacing */
      text-align: center;
    }
    .certifications_title {
        text-align: center;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .certifications_description {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .certifications_grid {
        gap: 24px;
    }

    .certification-item_image {
        width: 100px;
        height: 100px;
    }
    .certifications_subtitle {
       font-size: 1.1rem;
       margin-bottom: 1rem;
    }
    .certifications_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .certification-item_image {
        width: 60px;
        height: 60px;
    }

    .certification-item_text {
        font-size: 11px;
    }
    
}
@media (max-width: 480px) {
    .certifications {
      padding: 3rem 0; /* Top & bottom spacing */
      text-align: center;
    }
    .certifications_title {
        text-align: center;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .certifications_description {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .certifications_grid {
        gap: 24px;
    }

    .certification-item_image {
        width: 100px;
        height: 100px;
    }
    .certifications_subtitle {
       font-size: 1.1rem;
       margin-bottom: 1rem;
    }
    .certifications_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .certification-item_image {
        width: 40px;
        height: 40px;
    }

    .certification-item_text {
        font-size: 9px;
    }
    .certifications_subtitle::before {
      top: -30px;
      left: -40px;
      width: 50px;
      height: 51px;         
    }
    
}

/* partner section styles */

.partners-section {
    background-image: url("/admin_assets/img/ourpartnersbg.jpg");
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* inclined bottom */
     clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 96% );
}
.partners-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3, 17, 54, 0.8) 0%,
        rgba(0, 7, 25, 0.5) 100%
    );

    z-index: 0;
}
.partnersubtitle {
    position: relative;
    display: inline-block;
}

.partnersubtitle::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -45px;
    width: 60px;
    height: 61px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='white' fill-opacity='0.3'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='white' fill-opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
}


/* style for the partners logo */
.partners-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mainpartner-container {
    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;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;   
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.center-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 1;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.center-globe {
    position: absolute;
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 2;
    border-radius: 50%;
      
}

.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;
}


/* Responsive Design for Small Screens */
@media (max-width: 1024px) {
    .partners-section {
        padding: 3rem 3%;
        clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 96% );
    }

    .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;
    }
    .partnersubtitle::before {
        top: -35px;
        right:-5px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 96% );
    }
    .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;
    }
    .partnersubtitle::before {
        top: -35px;
        right:-5px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .mainpartner-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .partners-content {
        display: contents;
        flex-direction: column;
        align-items: center;
    }
    .partners-section {
       clip-path: polygon(
        0 0,          
        100% 3%,      
        100% 100%,   
        0 97%        
    );
        
    }
    .partnertitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        order: 2;
    }
    .partnersubtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
         order: 1;
    }

    .partnerdescription {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
        order: 4; 
    }
     .partners-logos {
        order: 3;                 
        display: flex;            
        margin: 1.5rem 0;
    }
    .partners-logos {
        width: 160px;
        height: 160px;
        
    }
    .rightbox {
        width: 160px;
        height: 160px;
    }
  
   .rightbox .rightimg .rightimgBx {
        width: 45px;
        height: 45px;
        transform-origin: 100px; 
    } 
     .rightcenterBox {
        width: 70px;
        height: 70px;
    }

    .center-bg {
        width: 70px;
        height: 70px;
    }

    .center-globe {
        width: 55px;
        height: 55px;
    }

   
    .partnersubtitle::before {
        top: -30px;
        right:-5px;
        width: 50px;
        height: 50px;
    }
    
}

/* 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 {
    position: relative;
    width: 100%;
    padding: 7rem 0; /* Top & bottom spacing */ 
    color: white;
    text-align: center;
    overflow: hidden;
}
/* Background Image */
.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/admin_assets/img/testimonial.jpg") center/cover no-repeat;
    z-index: -2;
}

/* Gradient Overlay (same pattern as services) */
.testimonial-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 24, 77, 0.8);
    z-index: -1;
}

.Testimonialscontainer {
    text-align: center;
}

.Testimonialssubtitle {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    z-index: 1;          
}
.Testimonialssubtitle::before {
    content: "";
    position: absolute;
    top: -55px;
    left: -60px;
    width: 64px;
    height: 65px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='%23F0F4F7' fill-opacity='0.3'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='%23F0F4F7' fill-opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;         
    
}


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: 20px; 
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative; 
}
.card-blue {
    background: #1272AF;
   
}
.card-content {
    background: white;
    border-bottom-right-radius: 40px;
    color: #333;
}

.Testimonialsstars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.Testimonialsrating {
    color: #666;
    margin-left: 0.5rem;
}

.testimonial-text {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;

}
.Testimonialsprofile {
    background: #1272AF;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    border-radius: 40px 0 20px 20px ;       
}


.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;
    display: flex;               
    align-items: center;         
    justify-content: center; 
    padding: 0;                  
    line-height: 1;              

}

.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: 3rem;
    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;
    }
    .Testimonialsprofile {
        margin-top: -1px;   
    }
    .card-content {
        margin-bottom: -1px;
    }

}

@media (max-width: 768px) {
    .testimonial-section {
      padding: 5rem 0; 
    }
    .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;
    }
    .Testimonialsprofile {
        margin-top: -1px;  
    }
    .card-content {
        margin-bottom: -1px;
    }
     .Testimonialsslider-nav {
    display: none;
    }
    .testimonials-wrapper {
      overflow-x: auto;          /* horizontal scroll */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .testimonials {
      display: flex;
    }
    .testimonial-card {
      flex: 0 0 100%;
      scroll-snap-align: center;
    }
    .testimonials-wrapper::-webkit-scrollbar {
      display: none;
    }
    .testimonials-wrapper {
      scrollbar-width: none;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
      padding: 4rem 0; /* Top & bottom spacing */ 
    }
    .testimonial-slider {
      padding: 0 12px;   
    }
    .Testimonialssubtitle {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .Testimonialssubtitle::before {
      top: -40px;
      left: -47px;
      width: 50px;
      height: 51px;      
    }
    .testimonial-section h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .Testimonialsdescription {
        margin: 0 auto 1.5rem;   
        font-size: 0.9rem;
    }

    .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;
    }
    .Testimonialsprofile {
        margin-top: -1px;  
    }
    .card-content {
        margin-bottom: -1px;
    }
    .Testimonialsslider-nav {
    display: none;
    }
    .testimonials-wrapper {
      overflow-x: auto;          /* horizontal scroll */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .testimonials {
      display: flex;
    }
    .testimonial-card {
      flex: 0 0 100%;
      max-width: 100%;   
      scroll-snap-align: center;
    }
    .testimonials-wrapper::-webkit-scrollbar {
      display: none;
    }
    .testimonials-wrapper {
      scrollbar-width: none;
    }
}

/* style for gallery */

.gallery-section {
    width: 100%;
    padding: 7rem 5rem; /* Top & bottom spacing */
    color: white;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}
.gallery-section::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    background:

    /* FIRST CIRCLE ICON */
    url("data:image/svg+xml,%3Csvg width='162' height='220' viewBox='0 0 162 235' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2'%3E%3Ccircle cx='117.331' cy='117.332' r='78.9074' stroke='%23147DC0'/%3E%3Ccircle cx='117.331' cy='117.332' r='64.4877' stroke='%23147DC0'/%3E%3Ccircle cx='117.334' cy='117.334' r='50.2654' stroke='%23147DC0'/%3E%3Ccircle cx='121.123' cy='117.383' r='38.4136' stroke='%23147DC0'/%3E%3Ccircle cx='117.334' cy='117.334' r='98.2654' stroke='%23147DC0'/%3E%3Ccircle cx='117.333' cy='117.333' r='116.833' stroke='%23147DC0'/%3E%3C/g%3E%3C/svg%3E") no-repeat,

    /* SECOND CIRCLE ICON */
    url("data:image/svg+xml,%3Csvg width='93' height='150' viewBox='0 0 93 235' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2'%3E%3Ccircle cx='117.331' cy='117.331' r='78.9074' stroke='%23147DC0'/%3E%3Ccircle cx='117.331' cy='117.332' r='64.4877' stroke='%23147DC0'/%3E%3Ccircle cx='117.334' cy='117.333' r='50.2654' stroke='%23147DC0'/%3E%3Ccircle cx='121.121' cy='117.383' r='38.4136' stroke='%23147DC0'/%3E%3Ccircle cx='117.334' cy='117.333' r='98.2654' stroke='%23147DC0'/%3E%3Ccircle cx='117.333' cy='117.333' r='116.833' stroke='%23147DC0'/%3E%3C/g%3E%3C/svg%3E") no-repeat;

    background-size:
        180px,
        130px;

    background-position:
        right 0 top -120px,
        right -10px top -70px;
}

.gallery-container {
    /* max-width: 1200px; */
    width: 100%;
    align-items: center;
    text-align: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;
    position: relative;
    display: inline-block;
    z-index: 1;          
}
.gallery_subtitle::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -50px;
    width: 66px;
    height: 67px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='%23F0F4F7' fill-opacity='2'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='%23F0F4F7' fill-opacity='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;         
    
}

    

.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;
}
@media (max-width: 768px) {
    .gallery-section {
      padding: 3rem 3rem; 
    }
     .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;  
    }
    .gallery_subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;    
    }
}
@media (max-width: 480px) {
    .gallery-section {
      padding: 3rem 2rem; 
    }
     .section-title {
        font-size: 1.5rem;
        margin-bottom: 0;  
    }
    .gallery_subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;    
    }
    .gallery-grid {
      position: relative;   
      height: auto;
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 0;
      padding: 0;
    }
    /* Hide scrollbar */
    .gallery-grid::-webkit-scrollbar {
      display: none;
    }
    .gallery-grid {
      scrollbar-width: none;
    }

    .gallery-item {
      position: relative !important;
      top: unset !important;
      left: unset !important;
      transform: none !important;
      flex: 0 0 100%;
      width: 100%;
      height: 200px;
      margin: 0;
      scroll-snap-align: center;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
   .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .gallery-dots span {
        width: 10px;
        height: 10px;
        background: #1272AF;
        border-radius: 50%;
        display: inline-block;
        transition: 0.3s ease;
    }

    .gallery-dots span.active {
        background: #ccc;
        
    }
    .gallery_subtitle::before {
      top: -30px;
      left: -40px;
      width: 50px;
      height: 51px;
    }
    .gallery-section::after{
      background-size:
        130px,
        100px;

      background-position:
        right -10px top -90px,
        right -10px top -50px;
    }
}


/* 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;
    position: relative;
    display: inline-block;
    z-index: 1;          
}
.contact-header h4::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -50px;
    width: 66px;
    height: 67px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill='%23F0F4F7' fill-opacity='1'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill='%23F0F4F7' fill-opacity='1'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;         
    
}


.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 {
      margin-bottom: 2rem;
    }
    .contact-header h4 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .contact-header h1 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }

    .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-us-section {
    padding: 15rem 4rem;
    }
    .contact-header h1 {
        font-size: 1.5em;
    }
    .contact-header p {
        font-size: 0.85rem;
    }
    .contact-header {
      margin-bottom: 2rem;
    }
    .contact-header h4 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
    .contact-header h1 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .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;
    }
    .contact-header h4::before {   
      top: -40px;
      left: -50px;
      width: 50px;
      height: -51px;        
    }
    .contact-info {
      align-items: flex-start;
    }
    .contact-item {
      justify-content: flex-start;
      text-align: left;
    }
}

/* 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;
    /* inclined bottom */
    clip-path: polygon(
    0 0,
    100% 4%,
    100% 100%,
    0 100%
);
}
#client-map {
    border: 2px solid #007bff;
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.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;
    position: relative;
    display: inline-block;
    z-index: 1;          
}
.client-subtitle::before {
    content: "";
    position: absolute;
    top: -38px;
    left: -48px;
    width: 60px;
    height: 61px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77 76'%3E%3Crect x='0' y='0' width='49' height='49' rx='5' fill=' %2363A5DC' fill-opacity='0.2'/%3E%3Crect x='49' y='49' width='28' height='28' rx='5' fill=' %2363A5DC' fill-opacity='0.2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.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-map-section {
       padding: 5rem 5rem;
    }
    .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-map-section {
       padding: 3rem 5rem;
       clip-path: polygon(
        0 0,
        100% 3%,
        100% 100%,
        0 100%
        );
    }
    .client-title {
        font-size: 1.5rem;
    }
    .client-subtitle::before {
      top: -38px;
      left: -46px;
      width: 50px;
      height: 51px;
    }
    .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;
    }
    .client-logos-section-logo_client .client-subtitle::before {
      top: -40px;
      left: -18px;
    }
    .section-header-logo_client h2 {
        font-size: 1.6rem;
    }
    .section-header-logo_client p {
        font-size: 0.9rem;
    }
}
