    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+IE+Guides&display=swap');

    :root {
        --primary-color: #2e2a8f;
        --secondary-color: #ff6b6b;
        --text-color: #333;
        --light-text: #fff;
        --background-color: #f4f4f4;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', "Arial", sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--background-color);
    }

    .container {

        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    #sticky-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: white;
        color: var(--light-text);
        padding: 10px 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        /* display: flex;
        align-items: center;  */
    }

    /* Navbar Transparency Effect */
    .scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        padding: 8px 0;

    }

    /* Smaller height when scrolled */
    .scrolled .container {
        height: 40px;
    }

    #sticky-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: height 0.3s ease;
        height: 60px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;

    }

    nav {
        margin-left: auto;
    }

    #logo {
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
    }

    .brand-name {
        font-family: "Josefin Sans", serif;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    .black-text {
        color: black;
        font-weight: 1000;
    }

    .red-text {
        color: red;
        font-size: 13px;
        font-weight: 700;
    }

    #logo img {
        height: 60px;
        width: auto;
        transition: height 0.3s ease;
        max-height: 100%;
        cursor: pointer;
    }

    .scrolled #logo img {
        height: 50px;
    }

    nav ul li a i {
        filter: invert(1);
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        list-style: none;
        height: 100%;
        align-items: center;
    }

    nav ul li {
        position: relative;
    }

    nav {
        margin-left: auto;
    }

    nav ul li a {
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 15px;
        padding: 10px 15px;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--secondary-color);
    }

    .services-dropdown {
        position: relative;
    }

    .services-dropdown>a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .services-dropdown>a::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: 0%;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .services-dropdown:hover>a::after {
        transform: rotate(90deg);
    }

    .fa-chevron-down,
    .fa-chevron-right {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .services-dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }

    .nested-dropdown {
        position: relative;
    }

    .nested-dropdown>a::after {
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: 0%;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .nested-dropdown:hover .fa-chevron-right {
        transform: rotate(90deg);
    }

    .dropdown-menu {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #ffffff;
        display: none;
        position: fixed;
        background-color: #fff;
        min-width: 250px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 1;
        border-radius: 5px;
        padding: 10px 0;
    }

    .services-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding: 6px;
    }

    .dropdown-menu li a {
        color: rgb(255, 255, 255) !important;
        font-size: 14px;
        transition: all 0.3s ease;
        position: relative;
        padding: 8px 15px;
        display: block;
    }

    .dropdown-menu li a::before {
        content: "\2022";
        position: absolute;
        left: 3px;
        color: #ff6b6b;
    }

    .dropdown-menu li a:hover {
        background-color: var(--secondary-color);
        opacity: 0.9;
        color: white;
        font-weight: 700;
        border-radius: 20px;
    }

    .nested-menu {
        display: none;
        left: 100%;
        top: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 23px;
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nested-dropdown:hover .nested-menu {
        display: block;
    }

    .services-dropdown .dropdown-menu {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        padding: 15px;
        min-width: 280px;
        border-radius: 23px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-height: 585px;
        overflow-y: auto;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--light-text);
        padding: 40px 0px;
        margin-top: 0px;
        /* display: flex; */
        /* align-items: center;
        /* justify-content: center; */
        /* text-align: center; */
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -22%;
        left: -26%;
        width: 150%;
        height: 150%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(255, 255, 255, 0.124) 0%, rgba(255, 255, 255, 0) 70%);
        animation: rotate 18s linear infinite;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        max-width: 600px;
    }

    .hero-label {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-weight: 700;
        opacity: 0;
        transform: translateY(30px);
    }

    .hero p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.9;
        transform: translateY(30px);
    }

    .hero-image {
        flex: 1;
        position: relative;
        height: 600px;
        justify-content: center;
        align-items: center;
    }

    .cube-animation {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .cube {
        position: absolute;
        max-width: 150%;
        height: 150px;
        opacity: 0.8;
        transition: all 0.5s ease;
    }

    .cube-2 {
        width: 618px;
        height: 420px;
        top: 22%;
        left: 1%;
        animation: floatAndScale 10s ease-in-out infinite;
        filter: contrast(1.3);
    }

    .cube-3 {
        height: 380px;
        width: 380px;
        top: 26%;
        left: 76%;
        filter: invert(65%);
        opacity: 0.6;
        transform: rotate(180deg);
    }

    .cube-4 {
        height: 465px;
        width: 475px;
        top: 15%;
        left: -54%;
        filter: invert(67%);
        opacity: 0.4;
    }

    .cube-5 {
        height: 249px;
        width: 555px;
        top: -9%;
        left: 27%;
        opacity: 0.5;
        filter: grayscale(30%) brightness(1.9);
    }

    .cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--light-text);
        color: var(--primary-color);
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        transition: transform 0.3s ease, background-color 0.3s ease;
        /* animation: fadeInUp 1s ease 0.4s; */
    }

    .cta-button:hover {
        transform: translateY(-3px);
        background-color: var(--secondary-color);
        color: var(--light-text);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Services Section */
    .service-icon {
        border-radius: 10px;
        box-shadow: 3px 5px 7px 0px rgba(0, 0, 0, 0.1);
        width: 125px;
        height: 85px;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .service-yt-icon {
        border-radius: 10px;
        box-shadow: 3px 5px 7px 0px rgba(0, 0, 0, 0.1);
        width: 135px;
        height: 94px;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .servicesc-icon {
        border-radius: 10px;
        box-shadow: 3px 5px 7px 0px rgba(0, 0, 0, 0.1);
        width: 116px;
        height: 97px;
        margin-bottom: 18px;
        transition: transform 0.3s ease;
    }

    .services {
        padding: 80px 0;
        background-color: var(--light-text);
    }

    .services h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.5rem;
        color: var(--primary-color);
    }

    /* .services-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        cursor: pointer;
    } */

    .services-grid {
        display: grid;
        grid-auto-flow: row dense;
        align-items: center;
        justify-items: center;
        gap: 30px;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        cursor: pointer;
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card {
        background-color: var(--background-color);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex: 1 1 250px;
        /* max-width: 300px; */
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .service-card i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .service-card:hover i {
        transform: scale(1.1);
    }

    .service-card h3 {
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .service-detail {
        padding: 60px 0;
    }

    .service-detail:nth-child(even) {
        background-color: var(--background-color);
    }

    /* About Lead Section */
    .about-lead {
        margin-top: -27px;
        padding: 80px 0;
        background: #fff;
    }

    .about-lead-flex {
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .about-lead-image {
        flex: 1;
        position: relative;
    }

    .about-lead-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .experience-badge {
        position: absolute;
        bottom: 0px;
        right: 10px;
        background: #ff6b6b;
        color: white;
        padding: 12px;
        border-radius: 10px;
        text-align: center;
    }

    .experience-badge .years {
        font-size: 2.5rem;
        font-weight: bold;
        display: block;
    }

    .experience-badge .text {
        font-size: 0.9rem;
    }

    .about-lead-content {
        flex: 1;
    }

    .timeline-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .timeline-icon {
        width: 100px;
        height: 35px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .timeline-content h3 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    /* Why Different Section */
    .why-different {
        padding: 80px 0;
        background-color: var(--background-color);
    }

    .why-different .container {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .why-different .content {
        flex: 1;
    }

    .why-different h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .why-different ul {
        list-style-type: none;
        margin-top: 20px;
    }

    .why-different ul li {
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
    }

    .why-different ul li::before {
        content: '\2022';
        color: var(--secondary-color);
        font-size: 1.5em;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .why-different .image {
        flex: 1;
    }

    .why-different .image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Trust Section */
    .trust-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .trust-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .trust-content h2 {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .portfolio-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ff6b6b;
        color: white;
        padding: 6px 15px;
        border-radius: 25px;
        text-decoration: none;
        margin-top: 20px;
        transition: transform 0.3s ease;
    }

    .portfolio-link:hover {
        transform: translateY(-3px);
    }

    .client-logos-container1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        overflow: hidden;
        position: relative;
    }

    .client-logos-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        overflow: hidden;
        position: relative;
    }

    .client-logos-row {
        overflow: hidden;
        padding: 20px 0;
    }

    .client-logos {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        animation: scroll 20s linear infinite;
        width: max-content;
        align-items: center;
        justify-items: center;
    }

    .client-logos img {
        max-width: 130px;
        height: auto;
        filter: sepia(25%);
        transition: filter 0.3s ease;
        border-radius: 12px;
    }

    .client-logos img:hover {
        filter: brightness(150%);
        filter: contrast(150%);

    }

    .client-logos-row1 {
        overflow: hidden;
        padding: 20px 0;
    }

    .client-logos1 {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        animation: scroll-left 80s linear infinite;
        width: max-content;
        align-items: center;
        justify-items: center;
    }

    .client-logos1 img {
        max-width: 130px;
        height: auto;
        filter: sepia(25%);
        transition: filter 0.3s ease;
        border-radius: 12px;
    }

    .client-logos1 img:hover {
        filter: brightness(150%);
        filter: contrast(150%);

    }

    /* Affiliations Section */
    .affiliations {
        padding: 80px 0;
        background: white;
    }

    .affiliations h2 {
        font-size: 1.8rem;
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 40px;
    }

    .affiliation-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 29px;
        align-items: center;
        justify-items: center;
    }

    .affiliation-logos img {
        border-radius: 5px;
        max-width: 120px;
        height: auto;
    }

    /* Stats Section */
    .stats {
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 60px 0;
    }

    .stats .container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item h3 {
        font-size: 3rem;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

    .stat-item .plus {
        font-size: 2rem;
        margin-left: 2px;
    }

    /* Footer Styles */
    footer {
        position: relative;
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 60px 0 20px;
        overflow: hidden;
    }

    .footer-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .footer-bg-image::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-image: url(../assect/wave2.png);
        background-repeat: no-repeat;
        background-size: 1594px 536px;
        background-position: bottom center;
        opacity: 0.3;
        mix-blend-mode: overlay;
        /* overlay: hidden; */
        pointer-events: none;
    }

    .footer-content {
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 40px;
        z-index: 3;
    }

    .footer-section.map-section {
        grid-column: span 1;
    }

    .footer-map {
        border-radius: 8px;
        overflow: hidden;
        height: 200px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
        position: relative;

    }

    .footer-section h3 {
        position: relative;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer-section h3::after {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 65px;
        height: 1px;
        background: var(--secondary-color);
        z-index: 2;
    }

    .footer-section p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    .social-links a {
        color: var(--light-text);
        font-size: 1.5rem;
        margin-right: 15px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-links a:hover {
        color: var(--secondary-color);
        transform: translateY(-3px);
    }

    .copyright {
        position: relative;
        z-index: 3;
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
    }

    /* WhatsApp Button */
    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        text-decoration: none;
        background-color: #25D366;
        color: var(--light-text);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        z-index: 1000;
        outline: none;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
    }

    /* Animations */
    @keyframes floatAndRotate1 {

        0%,
        100% {
            transform: translateY(0) rotate(6deg);
            opacity: 0.8;
        }

        50% {
            transform: translateY(-20px) rotate(12deg);
            opacity: 1;
        }
    }

    @keyframes floatAndScale {

        0%,
        100% {
            transform: scale(1) translateY(0);
        }

        50% {
            transform: scale(1.05) translateY(-15px);
        }
    }

    @keyframes float1 {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(5deg);
        }
    }

    @keyframes float2 {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(20px) rotate(-5deg);
        }
    }

    @keyframes float3 {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-15px) scale(1.05);
        }
    }

    @keyframes float4 {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(25px) rotate(8deg);
        }
    }

    @keyframes float5 {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-30px) scale(0.95);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(0deg) scale(1);
        }

        50% {
            transform: translateY(-20px) rotate(0) scale(1.1);
        }
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-100% + 100vw));
        }
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .animate-fade-up {
        opacity: 0;
        animation: fadeInUp 1s ease forwards;
    }

    /* counter Animations */
    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .counter {
        animation: countUp 1s ease-out;
    }

    /* Small contact form styles */
    .small-contact-form {
        background: linear-gradient(135deg, #2e2a8f, #2e2a8f);
        color: #fff;
        padding: 30px 0;
        text-align: center;
    }

    .small-contact-form .container {
        max-width: 1200px;
        width: 90%;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .small-contact-form h2 {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .small-contact-form form {
        display: flex;
        flex-direction: column;
    }

    .small-contact-form input,
    .small-contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 10px;
        border: none;
        border-radius: 23px;
        font-size: 16px;
        color: #333;
        background: rgba(255, 255, 255, 0.9);
        outline: none;
        transition: 0.3s;
    }

    .small-contact-form input:focus,
    .small-contact-form textarea:focus {
        background: #fff;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }

    .small-contact-form textarea {
        height: 100px;
        resize: none;
    }

    .small-contact-form .submit-btn {
        background: #ff7f50;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        border: none;
        padding: 12px 30px;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
        width: auto;

    }

    .small-contact-form .submit-btn:hover {
        background: #ff5733;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(255, 87, 51, 0.3);
    }

    .contact-flex {
        display: flex;
        gap: 40px;
        align-items: center;
        justify-content: space-between;
    }

    .contact-form-content {
        flex: 0 1 60%;
        max-width: 550px;
    }

    .contact-illustration {
        flex: 0 1 45%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-illustration img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 3px 5px 7px 0px rgba(0, 0, 0, 0.1);
    }

    /* About page styles */

    /* About Page Hero Section */
    .page-hero {
        position: relative;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 120px 0 110px;
        margin-top: 75px;
        overflow: hidden;
    }

    .page-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 123%;
        background: url(../assect/about.png);
        opacity: 0.3;
        background-size: cover;
        background-repeat: no-repeat;
        animation: float 6s ease-in-out infinite;
    }

    .page-hero h1 {
        font-size: 35px;
        font-weight: bold;
        color: #ffffff;
        letter-spacing: 2px;
        margin-bottom: 10px
    }

    .page-hero p {
        font-size: 18px;
        font-weight: 500;
        color: #ffffff85;
        line-height: 1.6;
    }

    /* About Sections */
    .about-section {
        padding: 70px 0;
        position: relative;
        overflow: hidden;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        align-items: center;
    }

    .about-content {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .about-content.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        transition: transform 0.6s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

    /* Parallax Section */
    .parallax-section {
        position: relative;
        height: 400px;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        margin: 80px 0;
    }

    .parallax-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 auto;
    }

    .parallax-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 63%);
    }

    .parallax-section .parallax-content h2 {
        font-size: 28px;
        font-weight: bold;
        color: #ffffff;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .parallax-section .parallax-content p {
        font-size: 15px;
        color: #bbddff;
        text-align: center;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Timeline Section */
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: var(--primary-color);
        transform: translateX(-50%);
    }

    .timeline-item1 {
        position: relative;
        margin-bottom: 60px;
        width: calc(50% - 40px);
    }

    .timeline-item1:nth-child(even) {
        margin-left: auto;
    }

    .timeline-content1 {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Values Section */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .value-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .value-card:hover {
        transform: translateY(-10px);
    }

    /* Service Page */

    .services-hero {
        position: relative;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 120px 0 110px;
        margin-top: 75px;
        overflow: hidden;
    }

    .services-hero::before {
        content: "";
        position: absolute;
        top: -91px;
        left: 0;
        width: 100%;
        height: 145%;
        background: url(../assect/srvc.png);
        opacity: 0.5;
        background-size: cover;
        background-repeat: no-repeat;
        animation: float 6s ease-in-out infinite;
    }

    .services-hero h1 {
        font-size: 35px;
        font-weight: bold;
        color: #ffffff;
        letter-spacing: 2px;
        margin-bottom: 10px
    }

    .services-hero p {
        font-size: 18px;
        font-weight: 500;
        color: #ffffff85;
        line-height: 1.6;
    }

    /* catagory */
    .service-category {
        padding: 80px 0;
        background-color: var(--background-color);
    }

    .service-category:nth-child(even) {
        background-color: #fff;
    }

    .service-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .service-header h2 {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .service-text {
        flex: 3;
    }

    .service-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .feature-card {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        background-color: #f29a9a9e;
        transform: translateY(-5px);
    }

    .feature-icon {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }

    /* Contact form styles */
    .contact-hero {
        position: relative;
        background: linear-gradient(135deg, #000000 0%, #7425b1 100%);
        padding: 120px 0 110px;
        margin-top: 75px;
        overflow: hidden;
        text-align: center;
    }

    .contact-hero::before {
        content: "";
        position: absolute;
        top: -91px;
        left: 0;
        width: 100%;
        height: 145%;
        background: url(../assect/wrldmap.png) center / cover;
        opacity: 0.2;
        pointer-events: none;
        background-repeat: no-repeat;
    }

    .contact-hero .container {
        position: relative;
        z-index: 2;
    }

    .contact-hero h1 {
        font-size: 35px;
        font-weight: bold;
        color: #ffffff;
        letter-spacing: 2px;
        margin-bottom: 10px
    }

    .contact-hero p {
        font-size: 18px;
        color: #ffffff9d;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-form {
        padding: 80px 0;
        background: #e7c7ff2e;
    }

    .contact-form .container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .form-container {
        background: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    #contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #contact-form input,
    #contact-form textarea {
        padding: 15px;
        border: 1px solid #0000004b;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    #contact-form input:focus,
    #contact-form textarea:focus {
        border-color: #7421b4;
        outline: none;
    }

    #contact-form textarea {
        min-height: 150px;
        resize: vertical;
    }

    .checkbox-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .submit-btn {
        background: #7421b4;
        color: #fff;
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
        background: #5f1b93;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .contact-info h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 30px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 29px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-item i {
        color: #7421b4;
        font-size: 20px;
    }

    /* Career page styles */

    .career-hero {
        position: relative;
        background: linear-gradient(135deg, #7421b4 0%, #2e2a8f 100%);
        padding: 120px 0;
        margin-top: 75px;
        overflow: hidden;
        color: #fff;
    }

    .career-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../assect/bgv.png) center / cover;
        opacity: 0.2;
        pointer-events: none;
        background-repeat: no-repeat;
    }

    .career-hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
    }

    .career-hero-text {
        position: relative;
        z-index: 2;
    }

    .career-hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .company-name {
        color: #ff6b6b;
    }

    .dynamic-text {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 30px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .words {
        position: relative;
        color: #ff6b6b;
        padding-top: 0.5rem;
    }

    .words span {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        animation: rotateWords 8s linear infinite;
    }

    .words span:nth-child(2) {
        animation-delay: 2s;
    }

    .words span:nth-child(3) {
        animation-delay: 4s;
    }

    .words span:nth-child(4) {
        animation-delay: 6s;
    }

    .career-hero-image {
        position: relative;
        z-index: 2;
    }

    .career-hero-image img {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        object-fit: cover;
        border: 8px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* Career Listings Section */
    .career-listings {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 15px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1rem;
    }

    .job-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px;
    }

    .job-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .job-card:hover {
        transform: translateY(-5px);
    }

    .job-card-header {
        background: linear-gradient(135deg, #7421b4, #2e2a8f);
        padding: 25px;
        color: #fff;
        text-align: center;
    }

    .job-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .job-card-header h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .job-type {
        display: inline-block;
        padding: 5px 15px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        font-size: 0.9rem;
    }

    .job-card-content {
        padding: 25px;
    }

    .job-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
    }

    .highlight-item i {
        color: #7421b4;
    }

    .job-description h4 {
        color: #333;
        margin-bottom: 15px;
    }

    .job-description ul {
        list-style: none;
        padding: 0;
    }

    .job-description ul li {
        padding-left: 20px;
        position: relative;
        margin-bottom: 10px;
        color: #666;
    }

    .job-description ul li::before {
        content: '•';
        color: #7421b4;
        position: absolute;
        left: 0;
    }

    .apply-btn {
        display: inline-block;
        background: #7421b4;
        color: #fff;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .apply-btn:hover {
        background: #5f1b93;
        transform: translateY(-2px);
    }

    @keyframes rotateWords {
        0% {
            opacity: 0;
            transform: translateY(100%) scale(0.9);
        }

        10%,
        30% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        40% {
            opacity: 0;
            transform: translateY(-100%) scale(0.9);
        }

        100% {
            opacity: 0;
            transform: translateY(-100%) scale(0.9);
        }
    }

    /* api animation  */
    [data-aos] {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    [data-aos].animate {
        opacity: 1;
        transform: translateY(0);
    }

    [data-aos="fade-right"] {
        transform: translateX(-50px);
    }

    [data-aos="fade-left"] {
        transform: translateX(50px);
    }

    [data-aos="fade-right"].animate,
    [data-aos="fade-left"].animate {
        transform: translateX(0);
    }