    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: #f5f5f5;
        color: #333;
        font-family: 'Poppins', sans-serif;

    }

    .main-head {
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .link-header {
        background-color: #ff1887;
        color: white;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 65px;
        padding: 0 30px;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .contact-link a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    .contact-link a:hover {
        color: #3c00ff;
        /* Or any highlight color */
    }


    .contact-link {
        display: flex;
        align-items: center;
    }

    .phone,
    .mail {
        display: flex;
        align-items: center;
        margin: 0 20px;
    }

    .phone img,
    .mail img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .contact-link #pysimp {
        font-size: 18px;
        font-weight: bold;
    }

    .social-links ul {
        display: flex;
        list-style: none;
        margin-left: 20px;
    }

    .social-links a i {
        font-size: 18px;
        color: #fff;
        margin-right: 25px;
    }

    .social-links a i:hover {
        color: #2600ff;
        /* Or any highlight color */
    }

    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #0e6fbf url('/assets/image/Rectangle 1944.png') repeat;
        padding: 0;
        height: 90px;
    }

    .header-left {
        padding-left: 50px;
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
        width: 40%;
        display: flex;
        align-items: center;
        background: #ffffff url('/assets/image/Rectangle 1944.png') repeat;
        height: 90px;
    }

    .header-left .logo {
        height: 100px;
        width: 350px;
    }

    .header-right {
        display: flex;
        gap: 15px;
        padding-right: 20px;
    }

    .header-right a {
        color: white;
        font-size: 15px;
        font-weight: bold;
        position: relative;
        padding-right: 15px;
        text-decoration: none;
    }

    .header-right a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 2px;
        background: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .header-right a:hover::after {
        opacity: 1;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .bar {
        height: 4px;
        background: rgb(0, 0, 0);
        border-radius: 2px;
        transition: 0.4s ease;
    }

    .hamburger.open .bar1 {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open .bar2 {
        opacity: 0;
    }

    .hamburger.open .bar3 {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        background-color: white;
        text-align: center;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.1s ease-in-out;
    }

    .mobile-nav a {
        color: #454243;
        padding: 15px 0;
        font-weight: bold;
    }

    .mobile-nav.open {
        display: flex;
        max-height: 400px;
    }


    @media (max-width: 1024px) {
        .header-left .logo {
            width: 300px;
            padding-right: 30px;
        }
    }

    @media screen and (max-width: 900px) {
        .link-header {
            padding-right: 100px;
            font-size: 13px;
        }

        .header-left .logo {
            width: 290px;
            padding-right: 60px;
        }

        .header-right a {
            font-size: 12px;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
            position: absolute;
            right: 4%;
        }

        .link-header {
            font-size: 11px;
            padding-right: 140px;
        }

        .social-links li a {
            position: relative;
            left: -20px;
        }

        .header-left {
            width: 100%;
            background: white;
            clip-path: none;
        }

        .header-left .logo {
            width: 280px;
            margin-left: 32%;
        }

        .header-right {
            display: none;
        }

        .header-right a {
            text-decoration: none;
        }
    }

    @media (max-width: 600px) {
        .link-header {
            font-size: 8px;
            padding-right: 90px;
        }

        .social-links li a {
            left: -120px;
        }

        .main-header .logo {
            padding-right: 100px;
        }

        .header-right {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .mobile-nav {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .link-header {
            font-size: 8px;
            padding-right: 30px;
        }

        .social-links li a {
            left: -120px;
        }

        .phone img,
        .mail img {
            width: 15px;
            height: 15px;
        }

        .main-header .logo {
            position: absolute;
            left: 0;
        }

        .main-head {
            top: -0px;
            right: 0;
        }
    }

    @media (max-width: 400px) {
        .link-header {
            font-size: 7px;
            padding-right: -30px;
        }

        .social-links li a {
            left: -20px;
        }

        .main-header .logo {
            position: absolute;
            left: -20px;
        }
    }

    /* -----------hero section---------- */

    .hero {
        position: relative;
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(14, 111, 191, 0.5);
        z-index: 1;
    }

    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.8);
        position: relative;
        z-index: 0;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: white;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-top: 150px;
    }

    /* Media Queries */

    /* 2500px down to 1600px */
    @media (max-width: 2500px) {
        .hero-text h1 {
            font-size: 3rem;
        }
    }

    /* 1599px to 1200px */
    @media (max-width: 1599px) {
        .hero-text h1 {
            font-size: 3rem;
        }
    }

    /* 1199px to 992px */
    @media (max-width: 1199px) {
        .hero {
            height: 45vh;
        }

        .hero-text h1 {
            font-size: 3rem;
        }
    }

    /* 991px to 768px */
    @media (max-width: 991px) {
        .hero {
            height: 40vh;
        }

        .hero img {
            margin-top: 20px;
        }

        .hero-text h1 {
            font-size: 2.5rem;
        }
    }

    /* 767px to 576px */
    @media (max-width: 767px) {
        .hero {
            height: 35vh;
        }

        .hero-text h1 {
            font-size: 2rem;
        }
    }

    /* 575px to 400px */
    @media (max-width: 575px) {
        .hero {
            height: 30vh;
        }

        .hero-text {
            margin-top: 20px;
        }

        .hero-text h1 {
            font-size: 1.8rem;
        }
    }

    @media screen and (max-width: 480px) {
        .hero img {
            margin: 0;

        }

    }

    /* 399px to 330px */
    @media (max-width: 399px) {
        .hero {
            height: 28vh;
        }

        .hero-text h1 {
            font-size: 1.5rem;
        }
    }




    /* ----------client section---------- */
    .clients-logo {
        padding: 60px 20px;
        background: #f8f8f8;
        text-align: center;
    }

    .logo-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: center;
        justify-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo-container img {
        max-width: 100%;
        height: auto;
        max-height: 80px;
        transition: filter 0.3s ease;
    }

    .logo-container img:hover {
        transition: 0.3s ease;
        transform: scale(1.05);
    }

    /* Responsive Media Queries */
    @media (max-width: 992px) {
        .logo-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .logo-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .logo-container {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .logo-container img {
            max-height: 60px;
        }
    }



    /* ----------footer section---------- */

    .footer-column {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .reviews {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .review-card {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 60px;
        margin: 10px;
        width: 45%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }


    .layout-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 50px;
    }

    .map-container,
    .contact-info,
    .image-section {
        flex: 1;
        min-width: 300px;
        margin: 10px;
    }

    .map-container iframe {
        width: 90%;
        height: 250px;
        border: 0;
        border-radius: 20px;
    }

    .contact-info {
        font-size: 1.2rem;
        line-height: 1.6;
        text-align: left;
        margin-top: 5%;
    }

    .contact-info img {
        width: 350px;
    }

    .image-section {
        text-align: right;
    }

    .image-section img {
        max-width: 38%;
        height: auto;
        border-radius: 10px;
        margin-top: 80px;
        margin-right: 80px;
    }

    .download-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #005aab;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin-right: 80px;
    }

    footer {
        margin-top: 40px;
        text-align: center;
        color: #fff;
        padding: 20px;
        background-color: #555555;
    }

    @media screen and (max-width: 1024px) {
        .image-section img {
            width: 200px;
        }

        .contact-info p {
            font-size: 13px;

        }

        .map-container iframe {
            width: 300px;
            height: 200px;
            margin-right: 50px;
        }

        .map-container h2 {
            margin-right: 200px;
        }
    }



    @media (max-width: 768px) {
        h1 {
            font-size: 2rem;
        }

        .review-card {
            width: 90%;
        }

        .layout-grid {
            flex-direction: column;
            align-items: center;
        }

        .image-section,
        .contact-info {
            text-align: center;
        }

        .download-btn {
            margin-top: 10px;
        }

        .logo {
            width: 120px;
        }

        .map-container iframe {
            margin-right: -50px;
        }

        .image-section {
            padding-left: 80px;
        }

        .image-section img {
            width: 30%;
            margin-top: 20px;
        }

        footer {
            font-size: 0.7rem;
        }
    }

    @media screen and (max-width: 400px) {
        .contact-info p {
            font-size: 0.6rem;
            margin-right: 50px;
        }

        .contact-info img {
            width: 250px;
            margin-right: 50px;
        }

        .map-container iframe {
            width: 250px;
            height: 150px;
            margin-right: 50px;
        }
    }

    @media screen and (max-width: 370px) {
        .contact-info p {
            font-size: 0.5rem;
            margin-right: 50px;
        }

        .contact-info img {
            width: 200px;
            margin-right: 50px;
        }

        .map-container iframe {
            width: 200px;
            height: 100px;
            margin-right: 50px;
        }
    }
