    /* ========== COLOR PALETTE ========== */
    :root {
        --primary-color: #2b6cb0;
        /* Professional blue */
        --secondary-color: #1a4971;
        /* Darker blue for hover */
        --accent-color: #68d391;
        /* Green accent for highlights */
        --text-dark: #1a202c;
        /* Near-black for text */
        --text-light: #f7fafc;
        /* Off-white for light backgrounds */
        --background-dark: #1a202c;
        /* Dark background for navbar/footer */
        --background-light: #edf2f7;
        /* Light background for sections */
        --gradient-start: #e2e8f0;
        /* Soft gradient start */
        --gradient-end: #f7fafc;
        /* Soft gradient end */
    }

    /* ========== BASE STYLES ========== */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: var(--text-dark);
        overflow-x: hidden;
        scroll-behavior: smooth;
        line-height: 1.6;
    }

    /* ========== LOGO STYLES ========== */
    .logo1 {
        height: 32px;
        position: fixed;
        top: 14px;
        left: 24px;
        display: none;
        z-index: 102;
        transition: transform 0.3s ease;
    }

    .logo1:hover {
        transform: scale(1.05);
    }


    #logo {
        position: fixed;
        top: 14px;
        left: 24px;
        height: 32px;
        width: auto;
        z-index: 101;
        display: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    #logo:hover {
        transform: scale(1.05);
        opacity: 0.95;
    }

    .scrolled #logo {
        display: block;
    }

    /* ========== LOGO STYLES ========== */
    .navbar-logo {
        position: relative;
        top: 50%;
        left: 0;
        height: 32px;
        display: flex;
        filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(748%) hue-rotate(177deg) brightness(94%) contrast(93%);
        /* Approximates #181818 */
        align-items: center;
    }

    .navbar-logo img {
        height: 100%;
        width: auto;
        transition: transform 0.3s ease;
        filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(748%) hue-rotate(177deg) brightness(94%) contrast(93%);
        /* Approximates #181818 */
    }

    .navbar-logo img:hover {
        transform: scale(1.05);
    }

    .logo1 {
        height: 32px;
        position: fixed;
        top: 14px;
        left: 24px;
        display: none;
        z-index: 102;
        transition: transform 0.3s ease;
        filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(748%) hue-rotate(177deg) brightness(94%) contrast(93%);
        /* Approximates #181818 */
    }

    .logo1:hover {
        transform: scale(1.05);
    }

    /* ========== NAVBAR ========== */
    #navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        border-bottom: 1px solid rgba(224, 224, 224, 0.8);
        height: 60px;
        z-index: 100;
        background-color: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        width: 100%;
        display: flex;
        align-items: center;
        backdrop-filter: blur(5px);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    #navbar:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    #navbar ul {
        list-style: none;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 1280px;
        gap: 16px;
    }

    #navbar li {
        flex: none;
    }

    .company-name{
color: #ffffff;
    margin-bottom: -16px;
}

    #navbar a {
        text-decoration: none;
        color: #181818;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 12px 16px;
        line-height: 64px;
        transition: color 0.3s ease, background-color 0.3s ease;
        border-radius: 6px;
        position: relative;
    }

    #navbar a:hover {
                color: rgb(71, 160, 233);
        background-color: rgba(255, 255, 255, 0.05);
    }

    #navbar a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 12px;
        left: 50%;
    }

    #navbar a:hover::after {
        width: 50%;
        left: 25%;
    }

    /* ========== HAMBURGER MENU ========== */
    #hamburger {
        display: none;
        position: fixed;
        top: 20px;
        right: 24px;
        width: 28px;
        height: 20px;
        z-index: 1000;
        cursor: pointer;
    }

    #hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #181818;
        margin: 4px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    #hamburger:hover span {
        background-color:rgb(71, 160, 233);
    }

    #hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color:rgb(71, 160, 233);
    }

    #hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    #hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color:rgb(71, 160, 233);
    }

    /* ========== RESPONSIVE STYLES ========== */
    @media (max-width: 1024px) {
        #navbar ul {
            gap: 8px;
        }

        #navbar a {
            font-size: 0.9rem;
            padding: 8px 12px;
        }
    }

    @media (max-width: 768px) {
        #navbar {
            border-bottom: none;
            box-shadow: none;
        }

        .navbar-logo {
            display: none;
        }

        .logo1 {
            display: block;
        }

        #hamburger {
            display: block;
        }

        #navbar ul {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: #ffffff;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            border: none;
        }

        #navbar ul.active {
            max-height: 400px;
            padding: 10px 0;
        }

        #navbar li {
            width: 100%;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
        }

        #navbar ul.active li {
            opacity: 1;
            transform: translateY(0);
        }

        #navbar a {
            font-size: 1rem;
            padding: 18px 1px;
            line-height: normal;
            border-bottom: none;
            margin: 0;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #181818;
        }
    }

    /* ========== HAMBURGER MENU ========== */
    #hamburger {
        display: none;
        position: absolute;
        top: 20px;
        right: 24px;
        width: 28px;
        height: 20px;
        z-index: 1000;
        cursor: pointer;
    }

    #hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #000000;
        margin: 4px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    #hamburger:hover span {
        background-color:rgb(71, 160, 233);
    }

    #hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color:rgb(71, 160, 233);
    }

    #hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    #hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color:rgb(71, 160, 233);
    }

/* ========== FIRST PAGE ========== */
#first-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 20px 20px 20px;
    box-sizing: border-box;
}

.matter-content {
    width: 90%;
    max-width: 1895px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative; /* Add position relative for top to work */
    top: 17%; /* Match previous matter-content */
}

.text-content {
 position: relative;
    width: 133%;
    height: 100px;
    max-width: 100%;
    /* margin-bottom: -135px; */
    top: 27px;
    display: flex
;
    justify-content: space-between;
}


#main-title {
    font-size: 45px;
    font-weight: 700;
    color: #3c3c3c;
    margin: 0;
    line-height: 2.2;
    letter-spacing: 1px;
    text-align: left;
}

#subtitle {
    font-size: 30px;
    font-weight: 400;
    padding-top: 28px;
    color: #3c3c3c;
    margin: 0;
    line-height: 1.5;
    text-align: right;
    max-width: 62%;
}

#description {
   font-size: 35px;
    font-weight: 600;
    margin: 81px 0 40px 0;
    line-height: 1.5;
    max-width: 1252px;
}

/* ========== FIRST PAGE GRID ITEMS ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1406px;
}


.grid-item {
    background: #ededed;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 25.62vh;
    width: 39.40vh;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid-item p {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 400;
    width: 37vh;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.grid-item p img {
    display: none;
}



.grid-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== FIRST PAGE RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    #first-page {
        min-height: 80vh;
        padding: clamp(60px, 8vh, 70px) clamp(10px, 3vw, 15px) clamp(10px, 3vw, 15px);
    }

    .matter-content {
        width: 95%;
        max-width: 1200px;
    }

    .text-content {
        margin-bottom: clamp(40px, 6vh, 60px);
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    #main-title {
        font-size: clamp(2rem, 5vw, 3rem);
        text-align: left;
    }

    #subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        max-width: 70%;
        text-align: right;
        padding-top: clamp(10px, 2vh, 20px);
    }

    #description {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
        max-width: 90%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(10px, 1.5vw, 15px);
        max-width: 100%;
    }

    .grid-item {
        height: auto;
        min-height: clamp(150px, 25vh, 180px);
        width: auto;
        padding: clamp(15px, 2vw, 20px);
    }

    .grid-item p {
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        width: auto;
        padding-top: clamp(10px, 2vh, 15px);
    }

    .grid-item .icon {
        width: clamp(35px, 4vw, 45px);
        height: clamp(35px, 4vw, 45px);
        margin-bottom: clamp(10px, 1.5vh, 12px);
    }

    .asdf {
        height: clamp(35px, 5vw, 50px);
        width: clamp(35px, 5vw, 50px);
    }
}

@media (max-width: 768px) {
    #first-page {
        min-height: 70vh;
        padding: clamp(50px, 7vh, 60px) clamp(8px, 2vw, 10px);
    }

    .matter-content {
        width: 100%;
    }

    .text-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: clamp(8px, 1.5vh, 12px);
        margin-bottom: clamp(30px, 5vh, 50px);
    }

    #main-title {
        font-size: clamp(1.5rem, 4.5vw, 2.5rem);
        text-align: center;
    }

    #subtitle {
        font-size: clamp(0.8rem, 2vw, 1.2rem);
        max-width: 100%;
        text-align: center;
        padding-top: clamp(8px, 1.5vh, 10px);
    }

    #description {
        font-size: clamp(0.7rem, 1.8vw, 1rem);
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: clamp(8px, 1.2vw, 12px);
    }

    .grid-item {
        min-height: clamp(130px, 20vh, 160px);
        padding: clamp(12px, 1.8vw, 15px);
    }

    .grid-item p {
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
        padding-top: clamp(8px, 1.5vh, 12px);
    }

    .grid-item .icon {
        width: clamp(30px, 3.5vw, 40px);
        height: clamp(30px, 3.5vw, 40px);
    }

    .asdf {
        height: clamp(30px, 4.5vw, 45px);
        width: clamp(30px, 4.5vw, 45px);
    }

    .logo1 {
        display: block;
    }

    #hamburger {
        display: block;
    }
}

@media (max-width: 480px) {

    #subtitle {
font-size: 15px;
    }
    #first-page {
        min-height: 60vh;
        padding: clamp(40px, 6vh, 50px) clamp(6px, 1.5vw, 8px);
    }

    .text-content {
        margin-bottom: clamp(20px, 4vh, 40px);
    }

    #main-title {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }

    #subtitle {
        font-size: clamp(0.7rem, 1.8vw, 1rem);
        padding-top: clamp(6px, 1vh, 8px);
    }

    #description {
        font-size: clamp(0.6rem, 1.5vw, 0.9rem);
        margin-bottom: clamp(15px, 3vh, 30px);
    }

    .features-grid {
        gap: clamp(6px, 1vw, 10px);
    }

    .grid-item {
        min-height: clamp(120px, 18vh, 140px);
        padding: clamp(10px, 1.5vw, 12px);
    }

    .grid-item p {
        padding-top: clamp(6px, 2vh, 10px);
    }

    .grid-item .icon {
        width: clamp(25px, 3vw, 35px);
        height: clamp(25px, 3vw, 35px);
        margin-bottom: 10px;
    }

    .asdf {
        height: clamp(25px, 4vw, 40px);
        width: clamp(25px, 4vw, 40px);
    }
}


    /* Responsive adjustments */
    @media (max-width: 1024px) {
        #navbar ul {
            gap: 8px;
        }

        #navbar a {
            font-size: 0.9rem;
            padding: 8px 12px;
        }



        #main-title {
            font-size: 48px;
        }

        #subtitle {
            font-size: 20px;
        }

        #description {
            font-size: 16px;
            max-width: 90%;
        }

        .features-grid {
            gap: 15px;
        }


    }

    @media (max-width: 768px) {
        #navbar {
            border-bottom: none;
            box-shadow: none;
        }

        .navbar-logo {
            display: none;
        }

        .logo1 {
            display: block;
        }

        #hamburger {
            display: block;
        }

        #navbar ul {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: #ffffff;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            border: none;
        }

        #navbar ul.active {
            max-height: 400px;
            padding: 10px 0;
        }

        #navbar li {
            width: 100%;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
        }

        #navbar ul.active li {
            opacity: 1;
            transform: translateY(0);
        }

        #navbar a {
            font-size: 1rem;
            padding: 18px 1px;
            line-height: normal;
            border-bottom: none;
            margin: 0;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #181818;
        }

        #main-title {
            font-size: 36px;
        }

        #subtitle {
            font-size: 18px;
        }

        #description {
            font-size: 14px;
            max-width: 100%;
        }

        .features-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }


    }

    @media (max-width: 480px) {


        #main-title {
            font-size: 28px;
        }

        #subtitle {
            font-size: 16px;
        }

        #description {
            font-size: 12px;
            max-width: 100%;
        }
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        #navbar ul {
            gap: 8px;
        }

        #navbar a {
            font-size: 0.9rem;
            padding: 8px 12px;
        }


        #main-title {
            font-size: 48px;
        }

        #subtitle {
            font-size: 20px;
        }

        #description {
            font-size: 16px;
            max-width: 90%;
        }

        .features-grid {
            gap: 15px;
        }


    }

    @media (max-width: 768px) {
        #navbar {
            border-bottom: none;
            box-shadow: none;
        }

        .navbar-logo {
            display: none;
        }

        .logo1 {
            display: block;
        }

        #hamburger {
            display: block;
        }

        #navbar ul {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: #ffffff;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            border: none;
        }

        #navbar ul.active {
            max-height: 400px;
            padding: 10px 0;
        }

        #navbar li {
            width: 100%;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
        }

        #navbar ul.active li {
            opacity: 1;
            transform: translateY(0);
        }

        #navbar a {
            font-size: 1rem;
            padding: 18px 1px;
            line-height: normal;
            border-bottom: none;
            margin: 0;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #181818;
        }



        #main-title {
            font-size: 36px;
        }

        #subtitle {
            font-size: 18px;
        }

        #description {
            font-size: 14px;
            max-width: 100%;
        }

        .features-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }


    }

    @media (max-width: 480px) {


        #main-title {
            font-size: 28px;
        }

        #subtitle {
            font-size: 16px;
        }

        #description {
            font-size: 12px;
            max-width: 100%;
        }

    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    #hamburger {
        display: none;
        position: fixed;
        /* Ensure hamburger stays in place */
        top: 20px;
        right: 24px;
        width: 28px;
        height: 20px;
        z-index: 1000;
        cursor: pointer;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {


        #main-title {
            font-size: clamp(2rem, 4.5vw, 3.5rem);
        }

        #subtitle {
            font-size: clamp(0.9rem, 2.2vw, 1.1rem);
            max-width: 95%;
        }

        #subtitle1 {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            max-width: 95%;
        }
    }

    @media (max-width: 768px) {


        #main-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
        }

        #subtitle {
            font-size: clamp(0.85rem, 2vw, 1rem);
            max-width: 100%;
        }

        #subtitle1 {
            font-size: clamp(1rem, 2.8vw, 1.5rem);
            max-width: 100%;
        }

        .logo1 {
            display: block;
            /* Show logo on mobile */
        }

        #hamburger {
            display: block;
            /* Show hamburger menu on mobile */
        }
    }

    @media (max-width: 480px) {


        #main-title {
            font-size: clamp(1.5rem, 3.5vw, 2.5rem);
        }

        #subtitle {
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
            max-width: 100%;
        }

        #subtitle1 {
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            max-width: 100%;
        }
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    /* Optional: Adjust for responsiveness */
    @media (max-width: 768px) {
        #main-title {
            font-size: 4rem;
            /* Reduce size on smaller screens */
            top: 15px;
            left: 15px;
        }

        #subtitle {
            font-size: 1rem;
            /* Reduce size on smaller screens */
            top: 15px;
            right: 0px;
            max-width: 437px;
        }

        .matter-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        #main-title {
            font-size: 2.5rem;
            /* Further reduce on very small screens */
            top: 10px;
            left: 10px;
        }

        #subtitle {
            font-size: 0.9rem;
            /* Further reduce on very small screens */
            top: 10px;
            right: 10px;
            max-width: 200px;
        }
    }

    #subtitle1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--text-dark);
        font-weight: 700;
        letter-spacing: 2px;
        width: 93%;
        margin-bottom: 10px;
        text-align: center;
        z-index: 5;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 1s ease-out, float 6s ease-in-out infinite;
    }

    #button-container {
        position: absolute;
        top: 39%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        gap: 25px;
    }

    /* ========== BUTTON STYLES ========== */
    .action-button {
        padding: 12px 25px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-light);
        background-color: var(--primary-color);
        border: none;
        animation: pulse 2s infinite;
        width: 140px;
        height: 45px;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
        position: relative;
        overflow: hidden;
    }

    .action-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .action-button:hover::before {
        left: 100%;
    }

    .action-button:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(67, 97, 238, 0.6);
    }

    .action-button:active {
        transform: translateY(1px);
    }


    /* ========== SECOND PAGE (SLIDER) ========== */
    #second-page {
        position: relative;
        height: 70vh;
        background-color: white;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    .slider-container {
        position: static;
        height: 100%;
        width: 100%;
        /* margin: -34px auto; */
        margin-top: 34px;
        overflow: hidden;
    }

    .slider-container1 {
        position: static;
        margin: 0 auto;
        top: 12px;
        overflow: hidden;
    }


    .slider {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease-in-out;
    }

    /* Add these styles to your CSS */
    .slider-controls-container {
        width: 96%;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
        margin-top: 2%;
    }

    .slider-controls-container1 {
        width: 96%;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
        margin-top: 0%;
    }

    .slider-controls {
        display: flex;
        gap: 20px;
    }

    .round-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: white;
        border: 2px solid #000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .round-button:hover {
        background-color: #000;
        color: #fff;
    }

    .headingg {
        padding-left: 3vh;
        font-size: 3rem;
    }



    /* Remove any conflicting button styles */
    .prev-btn,
    .next-btn {
        display: none !important;
    }

    .slide {
        flex: 0 0 25%;
        padding: 10px;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .slide img {
    width: 90%;
        height: 100%;
        object-fit: cover;
        border-radius: 11px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .slide.active {
        transform: scale(1.05);
    }



    .prev-btn,
    .next-btn {
        position: absolute;
        top: 49%;
        transform: translateY(-50%);
        background-color: #d1bd8200;
        color: var(--text-light);
        border: none;
        border-radius: 8px;
        width: 48px;
        height: 48px;
        font-size: 24px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prev-btn {
        left: 20px;
    }

    /* Remove the old absolute positioned buttons */
    .prev-btn,
    .next-btn {
        display: none;
    }

    .next-btn {
        right: 20px;
    }

    .prev-btn:hover,
    .next-btn:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .dots-container {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
    }

    .dots-container1 {
        position: absolute;
        top: 507px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 12px;
        height: 12px;
        background-color: #dfdfdf;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        position: relative;
    }

    .dot.active {
        background-color:rgb(71, 160, 233);
        transform: scale(1.2);
    }

    .dot::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
        opacity: 0;
        border-radius: 50%;
    }

    .dot.active::after {
        animation: progress 3s linear forwards;
    }

    @keyframes progress {
        0% {
            opacity: 1;
            transform: scale(0);
        }

        100% {
            opacity: 0;
            transform: scale(2);
        }
    }


    /* ========== FOURTH PAGE ========== */
    #fourth-page {
        position: relative;
        min-height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
        box-sizing: border-box;
        overflow: hidden;
        /* Prevent content from overflowing */
    }


    .features-grid-fourth {
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 50px;
    width: auto;
    max-width: 1474px;
        /* padding: 6px; */
        box-sizing: border-box;
        margin-bottom: 31px;
        justify-content: center;
        flex-direction: column;
    }

    .grid-item-fourth {
        height: 31.48vh;
        width: 147.04vh;
        padding: 30px;
        flex-direction: column;
        align-items: center;
        text-align: justify;
    background-color: #ededed;
        border-radius: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .grid-item-fourth:hover {
        transform: translateY(-5px);
    }

    .circle-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .grid-item-fourth h3 {
        color: #333;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: capitalize;
    }

    .grid-item-fourth p {
        color: #555;
        font-size: 25px;
    line-height: 47px;
        margin: 0;
    }

    /* Responsive adjustments for fourth page */
    @media (max-width: 1024px) {
        #fourth-page {
            padding: clamp(30px, 6vh, 60px) clamp(10px, 2vw, 15px);
        }

        .features-grid-fourth {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(10px, 1.5vw, 15px);
        }

        .grid-item-fourth {
            padding: clamp(15px, 2.5vw, 25px);
            height: auto;
            min-height: clamp(180px, 25vh, 260px);
            width: auto;
        }

        .circle-icon {
            width: clamp(45px, 5vw, 55px);
            height: clamp(45px, 5vw, 55px);
        }

        .grid-item-fourth h3 {
            font-size: clamp(1.1rem, 2.2vw, 1.6rem);
        }

        .grid-item-fourth p {
            font-size: clamp(0.85rem, 1.6vw, 1.1rem);
        }
    }

    @media (max-width: 768px) {
        #fourth-page {
            min-height: auto;
            padding: clamp(20px, 5vh, 40px) clamp(8px, 1.5vw, 12px);
        }

        .features-grid-fourth {
            grid-template-columns: 1fr;
            gap: clamp(10px, 1.2vw, 12px);
        }

        .grid-item-fourth {
            padding: clamp(15px, 2vw, 20px);
            min-height: clamp(160px, 22vh, 240px);
            width: auto;
        }

        .circle-icon {
            width: clamp(40px, 4.5vw, 50px);
            height: clamp(40px, 4.5vw, 50px);
        }

        .grid-item-fourth h3 {
            font-size: clamp(1rem, 2vw, 1.4rem);
        }

        .grid-item-fourth p {
            font-size: clamp(0.8rem, 1.5vw, 1rem);
        }
    }

    @media (max-width: 480px) {
        #fourth-page {
            padding: clamp(15px, 4vh, 30px) clamp(16px, 1vw, 10px);

        }

        .features-grid-fourth {
            gap: clamp(8px, 1vw, 10px);
        }

        .grid-item-fourth {
            padding: clamp(12px, 1.8vw, 15px);
            min-height: clamp(140px, 20vh, 200px);
            width: auto;
        }

        .circle-icon {
            width: clamp(35px, 4vw, 45px);
            height: clamp(35px, 4vw, 45px);
            background-size: 65%;
        }

        .grid-item-fourth h3 {
            font-size: clamp(0.9rem, 1.8vw, 1.2rem);
        }

        .grid-item-fourth p {
            font-size: clamp(0.7rem, 1.4vw, 0.9rem);
        }
    }

    /* ========== FOOTER ========== */
    #sixth-page {
        height: auto;
        min-height: 50vh;
        width: 100%;
        background-color: #1a1a1a;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 80px 20px 20px;
        box-sizing: border-box;
        position: relative;
        margin-top: 10px;
    }

    #footer {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0;
    }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
        flex: 1;
        min-width: 240px;
    }

    .footer-tagline {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 280px;
    }

    .footer-social {
        display: flex;
        gap: 16px;
    }

    .footer-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
    }

    /* ========== RESPONSIVE DESIGN FOR FOOTER ========== */
    @media (max-width: 1024px) {
        #sixth-page {
            padding: 48px 16px 24px;
        }

        .footer-top {
            gap: 32px;
        }

        .footer-brand {
            min-width: 200px;
        }

        .footer-tagline {
            font-size: 0.9rem;
            max-width: 100%;
        }

        .social-link img {
            width: 22px;
            height: 22px;
        }

        .footer-links {
            gap: 32px;
        }

        .link-group {
            min-width: 140px;
        }

        .link-title {
            font-size: 0.95rem;
        }

        .link-group a {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 768px) {
        #sixth-page {
            padding: 40px 12px 20px;
        }

        .footer-top {
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
        }

        .footer-brand {
            min-width: 100%;
        }

        .footer-tagline {
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 24px;
            width: 100%;
        }

        .link-group {
            min-width: 100%;
            text-align: center;
        }

        .link-title {
            font-size: 0.9rem;
        }

        .link-group a {
            font-size: 0.8rem;
        }

        .social-link img {
            width: 20px;
            height: 20px;
        }
    }

    @media (max-width: 480px) {
        #sixth-page {
            padding: 32px 8px 16px;
        }

        .footer-top {
            gap: 16px;
        }

        .footer-tagline {
            font-size: 0.8rem;
            margin-bottom: 12px;
        }

        .footer-social {
            gap: 12px;
        }

        .social-link img {
            width: 18px;
            height: 18px;
        }

        .footer-links {
            gap: 16px;
        }

        .link-group {
            min-width: 100%;
        }

        .link-title {
            font-size: 0.85rem;
        }

        .link-group a {
            font-size: 0.75rem;
        }
    }

    .social-link {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .social-link img {
        width: 24px;
        height: 24px;
        filter: brightness(0.8);
        transition: filter 0.3s ease;
    }

    .social-link:hover {
        transform: translateY(-3px);
    }

    .social-link:hover img {
        filter: brightness(1);
    }


    .link-group {
        flex: 1;
        min-width: 160px;
    }

    .link-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--text-light);
    }

    .link-group ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .link-group li {
        margin-bottom: 10px;
    }

    .link-group a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .link-group a:hover {
        color:rgb(71, 160, 233);
    }

    /* ========== ANIMATIONS ========== */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translate(-50%, -60%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(-50%, -50%);
        }

        50% {
            transform: translate(-50%, -53%);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate(-50%, -40%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
        }
    }



    @media (max-width: 1500px) {
        
            #second-page {
        position: relative;
        height: 58vh;
        background-color: white;
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }}

     @media (max-width: 1100px) {
        
            #second-page {
        position: relative;
        height: 47vh;
        background-color: white;
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }}

    /* ========== RESPONSIVE DESIGN ========== */
    @media (max-width: 1024px) {
        #second-page {
    position: relative;
    height: 45vh;
    background-color: white;
    width: 100%;
    display: flex
;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
        #navbar ul {
            gap: 8px;
        }

        #navbar a {
            font-size: 0.9rem;
            padding: 8px 12px;
        }

        #main-title {
            font-size: 3rem;
            /* Reduce size on smaller screens */
            top: 28px;
            left: 15px;
        }

        #subtitle {
            font-size: 1rem;
            /* Reduce size on smaller screens */
            top: 15px;
            right: 0px;
            max-width: 437px;
        }

        .matter-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

    }

    @media (max-width: 630px) {
        .matter-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #main-title {
            font-size: 28px;
        }

        #subtitle {
            font-size: 12px;
        }
    }

    @media (max-width: 768px) {
        
            #second-page {
        position: relative;
        height: auto;
        background-color: white;
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
        .asdf {
            height: auto;
            width: 45px;
        }

        #navbar {
            border-bottom: none;
            box-shadow: none;
        }

        .navbar-logo {
            display: none;
        }

        .logo1 {
            display: block;
            position: absolute;

        }

        #logo {
            display: none;
        }

        #hamburger {
            display: block;
            position: absolute;

        }

        #navbar ul {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: #ffffff;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            border: none;
        }

        #navbar ul.active {
            max-height: 400px;
            position: absolute;
            padding: 10px 0;
        }

        #navbar li {
            width: 100%;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
        }

        #navbar ul.active li {
            opacity: 1;
            transform: translateY(0);
        }

        #navbar a {
            font-size: 1rem;
            padding: 18px 1px;
            line-height: normal;
            border-bottom: none;
            margin: 0;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }



        #main-title {
            font-size: 36px;
        }

        #subtitle {
            font-size: 14px;
        }

        #subtitle1 {
            font-size: 20px;
            bottom: 262px;
        }

        .features-grid {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(4, auto);
            gap: 15px;
            height: auto;
            padding: 10px;
        }

        .slider {
            height: 300px;
            width: 220vh;

        }

        .dot {
            height: 8px;
            width: 8px;
            margin: 0 4px;
        }

        #fourth-page {
            min-height: auto;
        }

        .features-grid-fourth {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(6, auto);
            gap: 15px;
        }

        .grid-item-fourth {
            padding: 12px;
        }

        .grid-item-fourth h3 {
            font-size: 14px;
        }

        .grid-item-fourth p {
            font-size: 14px;
        }

        .circle-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
        }


        .social-icons {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {

        .social-icons img {
            width: 20px;
            height: 20px;
        }

        .matter-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #main-title {
            font-size: 28px;
        }

        #subtitle {
            font-size: 12px;
        }

    }

    /* ========== RESPONSIVE STYLES for 480px ========== */
    @media (max-width: 533px) {


        .matter-content {
            flex-direction: column;
            align-items: center;
        }

        #main-title {
            font-weight: 700;
            color: #333333;
            margin: 0 0 10px 0;
            line-height: 1.3;
            letter-spacing: 0.5px;
            text-align: center;
        }

        #subtitle {
            font-size: clamp(0.75rem, 3.5vw, 0.95rem);
            font-weight: 400;
            color: #666666;
            margin: 0 0 15px 0;
            line-height: 1.4;
            max-width: 100%;
            text-align: center;
        }
    }