@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap);
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}


/* Navigation Styles */

nav {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 65px;
    position: absolute;
    z-index: 999;
    width: 100%;
    transition: background 0.3s ease, position 0.3s ease;
}

nav.fixed-nav {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

nav .mainlogo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

nav .mainlogo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background: #00000085;
}

nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 3px solid rgb(88, 180, 250);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #000000d7;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

nav ul ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul ul li a {
    line-height: 50px;
    padding: 0 20px;
    color: #ffffff;
}

nav ul ul li a:hover {
    background: #011021;
    color: #ffffff;
}

nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

nav ul li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.icon {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

.logo {
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    margin-left: 5px;
}

.fa {
    color: white;
}


/* Navigation Media Queries */

@media (max-width: 1300px) and (min-width: 1160px) {
    nav {
        padding: 0 6px;
    }
    nav ul li a {
        font-size: 17px;
        padding: 8px 9px;
    }
}

@media (max-width: 1160px) {
    nav {
        padding: 0 40px;
        background: transparent;
    }
    nav.fixed-nav {
        background: rgb(0, 0, 0);
    }
    nav .mainlogo img {
        height: 50px;
    }
    .icon {
        display: block;
    }
    nav ul {
        display: none !important;
        position: fixed;
        top: 70px;
        right: 0;
        width: 50%;
        background: #000000d7;
        flex-direction: column;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    nav ul.show {
        display: flex !important;
    }
    nav ul li {
        width: 100%;
        margin: 0;
    }
    nav ul li a {
        padding: 15px 20px;
    }
    nav ul ul {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none !important;
        background: #000000;
        box-shadow: none;
        padding: 0;
        height: auto;
        /* Ensure the container shrinks to fit content */
        min-height: 0;
        /* Prevent any minimum height from adding space */
    }
    nav ul ul.show {
        display: block !important;
    }
    nav ul li:hover>ul {
        display: block;
    }
    nav ul ul li {
        border-bottom: none;
        margin: 0;
    }
    nav ul ul li:last-child {
        margin-bottom: 0;
        /* Ensure no extra margin on the last item */
    }
    nav ul ul li a {
        padding: 12px 40px;
        line-height: normal;
        margin: 0;
        /* Ensure no margins on the link itself */
    }
    nav ul li a:hover {
        background: #011021;
        color: #ffffff;
    }
}

@media (max-width: 660px) {
    nav {
        padding: 0 10px;
    }
    nav ul {
        width: 80%;
    }
    .logo {
        font-size: 1em;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        margin-left: 5px;
    }
}


/* Footer Styles */

a {
    text-decoration: none;
}

.footer {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 3rem 1rem 1rem !important;
}

.footer .second-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 2fr !important;
    }
}

.footer .footer-brand {
    text-align: center;
    margin-left: 20px;
}

@media (min-width: 640px) {
    .footer .footer-brand {
        text-align: left !important;
    }
}

.footer .footer-logo {
    display: inline-flex !important;
    margin-bottom: 1rem !important;
    align-items: center !important;
}

.footer .footer-logo img {
    height: 1.8rem !important;
    width: auto !important;
    margin-right: 0.3rem !important;
}

.footer .footer-brand-name {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
    display: block !important;
}

.footer .footer-brand-name span {
    display: block !important;
}

.footer-description {
    color: #a0a0a0 !important;
    max-width: 18rem !important;
    margin: 0 auto 1.5rem;
    line-height: 1.5 !important;
    font-size: 0.875rem !important;
    text-align: justify !important;
}

@media (min-width: 640px) {
    .footer .footer-description {
        margin: 0 0 1.5rem !important;
    }
}

.footer .social-links {
    display: flex !important;
    gap: 1rem !important;
    list-style: none !important;
    align-items: center !important;
    margin-left: -30px !important;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer .social-links {
        justify-content: flex-start !important;
    }
}

.footer .social-links a {
    color: #fff !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.8rem !important;
    height: 1.8rem !important;
    border-radius: 50% !important;
    background-color: transparent !important;
}

.footer .social-links a:hover {
    transform: scale(1.1) !important;
    color: #4a90e2 !important;
}

.footer .social-links svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    display: block !important;
}

.footer .footer-columns {
    display: grid !important;
    grid-template-columns: 2fr !important;
    gap: 1.4rem !important;
    align-items: start !important;
}

@media (min-width: 640px) {
    .footer .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .footer .footer-columns {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.footer .footer-column {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer .footer-title {
    position: relative !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    text-align: left !important;
    padding: 0 !important;
    display: inline-block !important;
    width: 100% !important;
}

.footer .footer-title:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 30px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #4a90e2, transparent) !important;
}

.footer .footer-links {
    list-style: none !important;
    margin-top: 1rem !important;
    text-align: left !important;
    padding: 0 !important;
}

.footer .footer-links li {
    margin: 0 0 0.75rem 0 !important;
    padding: 0 !important;
}

.footer .footer-links a {
    position: relative !important;
    color: #fff !important;
    transition: color 0.3s ease !important;
    display: block !important;
    text-align: left !important;
    font-size: 0.875rem !important;
}

.footer .footer-links a:after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 0.5px !important;
    bottom: -2px !important;
    left: 0 !important;
    background-color: #4a90e2 !important;
    transition: width 0.3s ease !important;
}

.footer .footer-links a:hover:after {
    width: 20% !important;
}

.footer .footer-links a:hover {
    color: #4a90e2 !important;
}

.footer .contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
    margin-left: -30px !important;
    font-size: 0.875rem !important;
}

.footer .contact-item svg {
    width: 1rem !important;
    height: 1rem !important;
    stroke: #fff !important;
    flex-shrink: 0 !important;
    margin-right: 0.2rem !important;
    display: block !important;
}

.footer .contact-item:hover {
    color: #4a90e2 !important;
}

.footer .contact-item address,
.footer .contact-item span {
    color: #fff !important;
    margin: 0 !important;
    text-align: left !important;
    display: inline-block !important;
    line-height: 1.25rem !important;
}

.footer .contact-item:hover address,
.footer .contact-item:hover span {
    color: #4a90e2 !important;
}

.footer .footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 1rem !important;
    text-align: center !important;
}

@media (min-width: 640px) {
    .footer .footer-bottom {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.footer .footer-bottom p {
    color: #a0a0a0 !important;
    font-size: 0.75rem !important;
}

.footer .footer-bottom a {
    color: #4a90e2 !important;
    transition: color 0.3s ease !important;
}

.footer .footer-bottom a:hover {
    color: #357abd !important;
}




/* Chatbot Styles */


/* Styles for the chatbot container */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


/* Styles for the chatbot icon */

.chatbot-icon {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.chatbot-icon:hover {
    transform: scale(1.1);
}

.chatbot-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}


/* Styles for the chat window */

.chatbot-window {
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/* Hidden class for toggling visibility */

.hidden {
    display: none;
}


/* Styles for the chat header */

.chatbot-header {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.chatbot-close:hover {
    color: #ffca2c;
}


/* Styles for the messages area */

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.text {
    padding: 8px 12px;
    border-radius: 15px;
    background: #e0e0e0;
    max-width: 70%;
}

.message.bot .text {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
}

.message.user .text {
    background: #d1e7ff;
}


/* Styles for the button container */

.button-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* Styles for main menu buttons (Home, Company, etc.) */

.main-nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
    transition: background 0.3s, transform 0.1s;
    margin: 5px;
}

.main-nav-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0096cc);
    transform: scale(1.05);
}

.main-nav-btn:active {
    transform: scale(0.95);
}


/* Styles for sub-menu buttons (AI & ML, Farm2Plate, etc.) */

.sub-nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #17a2b8, #20c997);
    color: white;
    transition: background 0.3s, transform 0.1s;
    margin: 5px;
}

.sub-nav-btn:hover {
    background: linear-gradient(45deg, #138496, #1aab7d);
    transform: scale(1.05);
}

.sub-nav-btn:active {
    transform: scale(0.95);
}


/* Styles for default response Yes/No buttons */

.contact-yes-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #28a745;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.contact-yes-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.contact-yes-btn:active {
    transform: scale(0.95);
}

.contact-no-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #dc3545;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.contact-no-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.contact-no-btn:active {
    transform: scale(0.95);
}


/* Styles for "No" response buttons */

.doubt-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #ffca2c;
    color: #333;
    transition: background 0.3s, transform 0.1s;
}

.doubt-btn:hover {
    background: #e0b024;
    transform: scale(1.05);
}

.doubt-btn:active {
    transform: scale(0.95);
}

.menu-return-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #6c757d;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.menu-return-btn:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.menu-return-btn:active {
    transform: scale(0.95);
}


/* Styles for the input container */

.chatbot-input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}


/* Styles for the input field */

.chatbot-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    outline: none;
    margin-right: 10px;
}

.chatbot-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


/* Styles for the send button */

.chatbot-send {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: background 0.3s, transform 0.1s;
}

.chatbot-send:hover {
    background: linear-gradient(45deg, #0056b3, #0096cc);
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}


/* Styles for the mic button (added via JS) */

.chatbot-mic {
    background: linear-gradient(45deg, #ffca2c, #ffdb6d);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    margin-left: 10px;
    transition: background 0.3s, transform 0.1s;
}

.chatbot-mic:hover {
    background: linear-gradient(45deg, #e0b024, #e0c056);
    transform: scale(1.05);
}

.chatbot-mic:active {
    transform: scale(0.95);
}


/* Typing indicator styles (used in components.js) */

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

.orange-container {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.orange-container .heading {
    font-weight: bold;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.orange-container .heading .big-e {
    position: relative;
    bottom: -5px;
    left: 5px;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    line-height: 1;
    margin-right: -5px;
    transform: translateZ(40px);
    transition: transform 0.5s ease;
}

.content-container {
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin: 0 auto 10px;
    opacity: 0;
    transform: translateY(50px) rotateX(30deg);
    box-sizing: border-box;
    transform-style: preserve-3d;
    color: white;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateZ(20px) rotateX(10deg);
}

.tab.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateZ(30px);
}

.orange-container .description {
    font-size: clamp(14px, 2vw, 24px);
    color: white;
    opacity: 0;
    max-width: 550px;
    font-weight: 600;
    border-left: 8px solid white;
    padding-left: 20px;
    text-align: left;
    line-height: 1.4;
}

.content-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-top: 0;
    transform: translateY(20px) translateZ(10px);
    line-height: 1.6;
    color: white;
    opacity: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-heading {
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.stats-container {
    display: grid;
    margin-bottom: 20px;
    justify-items: center;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 5px;
    border: 2px solid white;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    position: relative;
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    overflow: visible;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box:hover {
    transform: translateY(0) scale(1.05);
}

.stat-box i {
    position: absolute;
    top: 6px;
    right: 6px;
    background: green;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transform: translateZ(10px);
}

.stat-name {
    font-size: 0.8rem;
    color: white;
    line-height: 1.1;
    font-weight: 500;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1.3rem;
}

.back-button:hover {
    background: #0056b3;
}
        /* Home Section Styles */

        .home {
            position: relative;
            width: 100vw;
            min-height: 100vh;
            overflow: hidden;
            contain: layout;
            scroll-behavior: smooth;
        }

        .home:before {
            z-index: 1;
            content: '';
            position: absolute;
            background: rgba(0, 0, 0, 0.3);
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .home .content {
            z-index: 222;
            color: #fff;
            width: 70%;
            max-width: 1200px;
            padding: 0 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            text-align: center;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .home .content.active {
            display: block;
        }

        .home .content h1 {
            font-size: 6rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 2px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            backface-visibility: hidden;
            will-change: opacity, transform;
        }

        .home .content p {
            font-size: 1.5rem;
            font-weight: 400;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            will-change: opacity, transform;
        }

        .home .content button {
            margin-top: 20px;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            background: #0000004b;
            border: 2px solid #ffffff;
            border-radius: 25px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            will-change: opacity, transform;
        }

        .home .content button:hover {
            background: #ffffff;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }

        .home img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .slider-navigation {
            z-index: 888;
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            opacity: 0;
            will-change: opacity;
        }

        .slider-navigation .nav-btn {
            width: 15px;
            height: 15px;
            background: transparent;
            border: 2px solid #fff;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-navigation .nav-btn.active {
            background: #fff;
            transform: scale(1.2);
        }

        .slider-navigation .nav-btn:hover {
            transform: scale(1.3);
            background: rgba(255, 255, 255, 0.8);
        }

        .bg-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.1);
            will-change: opacity, transform;
        }

        .bg-slide.active {
            opacity: 1;
            transform: scale(1);
            transition: opacity 1s ease, transform 1s ease;
        }

        /* Section 2 Styles */

        .sec-2 {
            background-color: #ffffff;
            padding: 30px;
            position: relative;
            min-height: 600px;
            margin-bottom: 40px;
            contain: layout;
            scroll-behavior: smooth;
        }

        .solution {
            text-align: center;
            padding: 50px 20px 20px 20px;
            color: rgb(0, 0, 0);
            width: 100%;
            margin: auto;
            opacity: 0;
            transform: translateY(50px);
            will-change: opacity, transform;
        }

        .solution h2 {
            font-size: 36px;
            width: 60%;
            text-align: center;
            margin: auto;
            font-weight: 700;
        }

        .solution p {
            color: rgba(31, 31, 31, 1);
            font-size: 22px;
            width: 100%;
            margin: 10px auto;
            opacity: 0;
            transform: translateY(30px);
            will-change: opacity, transform;
            color: #737272
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            max-width: 1300px;
            margin: auto;
        }

        .grid-item {
            text-align: center;
            padding: 1.5rem;
            background: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(60px);
            will-change: transform, opacity;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
            background-color: #d5efff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-wrapper i {
            font-size: 28px;
            color: #007BFF;
        }

        .grid-item h3 {
            font-size: 1.1rem;
            margin: 0.5rem 0;
            color: #222;
        }

        .grid-item p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .read-more-link {
            color: #007BFF;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .read-more-link:hover {
            text-decoration: underline;
        }


        /* Custom Section Styles */

        .custom-section-bg {
            width: 100%;
            height: 80vh;
            min-height: 50vh;
            background: url(/assets/home-sec5-bg.png) no-repeat center center/cover;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            color: white;
            padding: 20px;
            contain: layout;
            opacity: 1;
            will-change: opacity, transform;
        }

        .custom-content-wrapper {
            max-width: 600px;
            padding: 30px;
            text-align: left;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            margin-right: 5%;
            opacity: 1;
            background: rgba(0, 0, 0, 0);
            will-change: opacity, transform;
        }

        .custom-text-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .custom-heading {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0;
        }

        .custom-paragraph {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        .custom-cta-button {
            background-color: #1a7bb8;
            color: rgb(255, 255, 255);
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
            margin-top: 20px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .custom-cta-button:hover {
            background-color: #045d94;
            color: white;
        }

        /* Blog Section Styles */

        .blog-section-custom {
            margin-top: 2%;
            width: 95%;
            padding: 20px 40px;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            contain: layout;
            opacity: 1;
            background: #f9f9f9;
            will-change: opacity, transform;
            margin-bottom: 50px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-title-custom {
            font-size: 3rem;
            font-weight: 700;
            color: #000000;
            text-align: left;
            width: 80%;
            padding: 0 60px;
            margin-top: 60px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .blog-container-custom {
            display: flex;
            gap: 30px;
            width: 100%;
            justify-content: center;
        }

        .blog-main-custom {
            width: 800px;
            height: 550px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .blog-image-custom {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 5px;
        }

        .blog-info-custom h3 {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
        }

        .blog-info-custom p {
            font-size: 1.3rem;
            line-height: 1.5;
            color: #666;
            margin-bottom: 20px;
        }

        .read-more-btn-custom {
            background-color: #ffffff;
            color: rgba(119, 119, 119, 1);
            padding: 10px 20px;
            border: 2px solid rgba(71, 71, 71, 1);
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .read-more-btn-custom:hover {
            background-color: black;
            color: white;
        }

        .blog-list-custom {
            width: 639px;
            height: 550px;
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-right: 15px;
            opacity: 1 !important;
            will-change: opacity, transform;
        }

        .blog-list-custom::-webkit-scrollbar {
            width: 8px;
        }

        .blog-list-custom::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-right: 10px;
        }

        .blog-list-custom::-webkit-scrollbar-thumb {
            background: #007BFF;
            border-radius: 5px;
        }

        .blog-list-custom::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }

        .blog-item-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: transform 0.2s ease;
            padding: 10px;
            background-color: white;
            border: 1px solid #ddd;
            height: 145px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .blog-item-custom:hover {
            background-color: #f1f1f1;
            transform: scale(1.05);
        }

        .blog-item-custom img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 5px;
        }

        .blog-text-head {
            font-size: 1.2rem;
            font-weight: 700;
            color: #444;
        }

        /* Section 3 Styles */

        .sec-3 {
            width: 100%;
            padding: 0;
            position: relative;
            overflow: hidden;
            opacity: 1;
            background: url(/assets/home-sec3-bg.png) no-repeat center center/cover;
            color: white;
            min-height: 60vh;
            contain: layout;
            scroll-behavior: smooth;
            will-change: opacity;
        }

        .main-container {
            width: 100%;
            padding: 30px 30px 30px 30px;
            display: flex;
            flex-direction: column;
            gap: 50px;
            background-color: #00000052;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 2.3fr;
            gap: 50px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 10px 0px;
        }

        .header-section h1 {
            font-size: 36px;
            font-weight: 700;
            margin-top: 20;
            line-height: 1.3;
            padding-bottom: 20px;
            opacity: 0;
            transform: translateY(50px);
            will-change: opacity, transform;
        }

        .header-section h1 span {
            display: block;
        }

        .cmmi {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .cmmmi-header {
            margin-bottom: 25px;
        }

        .cmmi-badge {
            display: inline-block;
            /* border: 2px solid #cce4f6; */
            border-radius: 12px;
            padding: 10px 20px;
            margin-left: 10px;
            background: #fff;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.301);
            color: #1d1d1d;
            font-family: 'Poppins', sans-serif;
            min-width: 300px;
        }

        .cmmi-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cmmi-main {
            font-size: 3.2rem;
            font-weight: 700;
            color: #1d3063;
            letter-spacing: 1px;
            white-space: nowrap;
            line-height: 0%;
        }

        .cmmi-right {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1px;
            margin-left: 12px;
        }

        .cmmi-sub {
            font-size: 1rem;
            font-weight: 500;
            color: #2ca8da;
            letter-spacing: 0.5px;
        }

        .cmmi-sub .ml3 {
            color: #2ca8da;
        }

        .cmmi-appraised {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1d3063;
        }

        .cmmi-info {
            display: block;
            font-size: 0.85rem;
            font-weight: 400;
            color: #333;
            margin-top: 2px;
        }

        .why-choose-us {
            background: rgba(0, 0, 0, 0.603);
            padding: 30px;
            border-radius: 10px;
            transform: translateY(50px);
            will-change: opacity, transform;
        }

        .why-choose-us h2 {
            font-size: 30px;
            margin: 0;
            padding: 10px 20px 10px 25px;
            border-left: 6px solid rgb(0, 149, 255);
            background-color: rgba(255, 255, 255, 0.11);
            width: 100%;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .why-choose-us p {
            font-size: 16px;
            line-height: 1.6;
            margin-top: 20px;
            font-weight: 300;
        }

        .clients-section-title p {
            font-size: 25px;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 0px;
            padding-left: 60px;
            opacity: 0;
            transform: translateY(30px);
            will-change: opacity, transform;
        }

        .clients-section {
            width: 85%;
            overflow-x: hidden;
            position: relative;
            height: 100%;
            -ms-overflow-style: none;
            scrollbar-width: none;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(50px);
            will-change: opacity, transform;
        }

        .clients-section::-webkit-scrollbar {
            display: none;
        }

        .clients-row {
            display: flex;
            width: fit-content;
            height: 100%;
            animation: scroll 40s linear infinite;
            will-change: transform;
            gap: 10px
        }

        .clients-row:hover {
            animation-play-state: paused;
        }

        .client {
            display: flex;
            flex-direction: column;
            width: 160px;
            height: 110%;
            text-align: center;
            margin-right: 10px;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            /* overflow-y: hidden; */
        }

        .client img {
            width: 110px;
            height: 110px;
            margin-bottom: 10px;
            object-fit: fill;
            display: block;
            border-radius: 15px;
        }

        .client p {
            font-size: 0.9rem;
            margin: 0;
            text-transform: capitalize;
            white-space: normal;
        }

        /* Parallax Effect */

        .parallax {
            background-position: center;
            will-change: background-position;
        }

        /* Portfolio Section Styles */

        .section-4 {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* Contact Section Styles */

        .contact-section {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f2f6ff;
            min-height: 90vh;
            padding-top: 20px;
            padding-bottom: 20px;
            contain: layout;
        }

        .contact-container {
            display: flex;
            width: 100%;
            max-width: 1400px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            gap: 50px;
            margin-bottom: 30px;
        }

        .contact-left {
            flex: 1;
            background: url(/assets/home-sec7-bg.png) no-repeat center center/cover;
            color: white;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

        .contact-left h2 {
            margin-bottom: 60px;
            font-size: 1.5rem;
            background-color: rgba(255, 255, 255, 0.11);
            padding: 5px;
            /* font-weight: lighter; */
            border-left: 5px solid rgb(10, 10, 220);
        }

        .contact-left p {
            margin-bottom: 50px;
            font-size: 1.9rem;
            font-weight: bold;
            line-height: 1.5;
        }

        .contact-btn {
            background-color: white;
            width: 40%;
            color: black;
            padding: 15px 20px;
            font-size: 1rem;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #ecf4fffb;
        }

        .contact-right {
            flex: 1.5;
            background-color: rgb(255, 255, 255);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-right #contactForm {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Each input container */
        .form-row>div {
            flex: 1 1 250px;
            /* Grow, shrink, and set minimum width */
        }

        /* Label styling */
        .contact-right label {
            font-weight: bold;
            font-size: 1rem;
            color: rgba(105, 105, 105, 1);
        }

        /* Input and textarea styling */
        .contact-right input,
        .contact-right textarea {
            width: 100%;
            padding: 10px;
            font-size: 1rem;
            border: 2px solid rgba(91, 91, 91, 1);
            border-radius: 5px;
            background: transparent;
            outline: none;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        /* Textarea specific */
        .contact-right textarea {
            height: 90px;
            margin-bottom: 15px;
        }

        /* Responsive breakpoint */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 10px;
                /* Controls spacing between fields */
            }

            .form-row>div {
                min-width: 100%;
                /* Take full width */
                margin-bottom: 0;
                /* Remove extra spacing */
                flex: 1 1 60px;
            }
        }

        /* Dialog Box Styling */

        .dialog-box {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
            z-index: 1000;
        }

        .dialog-box.show {
            display: block;
        }

        .dialog-box p {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 20px;
        }

        .dialog-box button {
            background-color: #4476ff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }

        .dialog-box button:hover {
            background-color: #000ecc;
        }

        /* Responsive Adjustments */

        @media (max-width: 1400px) {
            .sec-2 {
                padding: 20px;
            }

            .solution h2 {
                font-size: 48px;
            }

            .solution p {
                width: 50%;
            }
        }

        @media (max-width: 992px) {
            .home .content h1 {
                font-size: 4.5rem;
            }

            .home .content p {
                font-size: 1.2rem;
            }

            .solution h2 {
                font-size: 40px;
            }

            .solution p {
                width: 60%;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .home .content h1 {
                font-size: 3.5rem;
            }

            .home .content p {
                font-size: 1rem;
            }

            .slider-navigation {
                bottom: 20px;
            }

            .slider-navigation .nav-btn {
                width: 12px;
                height: 12px;
            }

            .home .content button {
                padding: 10px 25px;
                font-size: 1rem;
            }

            .solution h2 {
                font-size: 32px;
            }

            .solution p {
                font-size: 18px;
                width: 70%;
            }

            .main-container {
                padding: 50px 20px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .why-choose-us {
                padding: 40px;
            }

            .header-section h1 {
                font-size: 36px;
                padding-bottom: 20px;
            }


            .why-choose-us h2 {
                font-size: 24px;
                padding: 15px 15px 15px 20px;
            }

            .why-choose-us p {
                font-size: 14px;
            }

            .clients-section-title p {
                font-size: 24px;
                padding-left: 10px;
            }

            .clients-section {
                height: 130px;
            }

            .client {
                width: 130px;
                margin-right: 20px;
            }

            .client img {
                width: 90px;
                height: 90px;
            }

            .client p {
                font-size: 0.8rem;
            }

            .contact-container {
                flex-direction: column;
                gap: 30px;
            }

            .contact-left,
            .contact-right {
                padding: 20px;
            }

            .contact-left p {
                font-size: 1.8rem;
            }

            .contact-btn {
                width: 60%;
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .home {
                position: relative;
                width: 100vw;
                min-height: 80vh;
                overflow: hidden;
                contain: layout;
                scroll-behavior: smooth;
            }

            .home .content {
                width: 95%;
            }

            .home .content h1 {
                font-size: 3rem;
            }

            .home .content p {
                font-size: 0.95rem;
            }

            .home .content button {
                padding: 8px 20px;
                font-size: 0.9rem;
            }

            .solution h2 {
                font-size: 28px;
            }

            .solution p {
                font-size: 16px;
                width: 80%;
            }

            .custom-section-bg {
                height: auto;
                min-height: 70vh;
                padding: 20px;
                justify-content: center;
            }

            .custom-content-wrapper {
                max-width: 100%;
                margin: 0;
                text-align: center;
                padding: 15px;
            }

            .custom-cta-button {
                align-self: center;
                width: 100%;
            }

            .blog-container-custom {
                max-width: 95%;
                width: 100%;
                height: auto;
                overflow: visible;
                margin: auto;
            }

            .blog-main-custom {
                width: 100%;
                height: auto;
            }

            .blog-list-custom {
                flex-direction: column;
                overflow: visible;
                height: auto;
                width: 100%;
            }

            .blog-item-custom {
                width: 100%;
                height: auto;
                flex-direction: row;
            }

            .main-container {
                padding: 30px 15px;
            }

            .header-section h1 {
                font-size: 28px;
                padding-bottom: 20px;
            }


            .contact-left p {
                font-size: 1.5rem;
            }

            .contact-btn {
                width: 100%;
            }

            .contact-right {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .home .content h1 {
                font-size: 2.5rem;
            }

            .home .content p {
                font-size: 0.9rem;
            }

            .sec-2 {
                background-color: #ffffff;
                padding: 15px;
                position: relative;
                min-height: 600px;
                contain: layout;
                scroll-behavior: smooth;
            }

            .solution h2 {
                font-size: 32px;
                width: 90%;
            }

            .solution p {
                font-size: 17.5px;
                width: 90%;
            }

            .custom-heading {
                font-size: 1.8rem;
            }

            .custom-paragraph {
                font-size: 1rem;
            }

            .custom-content-wrapper {
                max-width: 100%;
                padding: 10px;
            }

            .custom-cta-button {
                width: 100%;
                text-align: center;
                padding: 12px;
            }

            .blog-item-custom img {
                width: 100px;
                height: 100px;
            }

            .blog-item-custom {
                flex-direction: row;
                width: 100%;
                padding: 10px;
                height: auto;
            }

            .blog-container-custom {
                max-width: 95%;
                width: 100%;
                height: auto;
                overflow: visible;
                margin: auto;
            }

            .read-more-btn-custom {
                font-size: 0.7rem;
            }

            .blog-title-custom {
                font-size: 2rem;
                width: 100%;
                text-align: center;
            }

            .blog-info-custom h3 {
                font-size: 1.5rem;
            }

            .blog-info-custom p {
                font-size: 1rem;
            }

            .blog-container-custom {
                flex-direction: column;
                align-items: center;
            }

            .blog-main-custom {
                width: 100%;
            }

            .blog-main-custom img {
                height: 300px;
            }

            .blog-list-custom {
                flex-direction: column;
                overflow: visible;
                scroll-snap-type: none;
            }

            .blog-item-custom {
                flex-direction: row;
                width: 100%;
                padding: 10px;
                height: auto;
            }

            .blog-text-head {
                font-size: 0.75rem;
            }

            .main-container {
                padding: 50px 0px;
            }

            .header-section h1 {
                font-size: 24px;
                line-height: 1.2;
                padding-bottom: 10px;
            }

            .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, max(180px, 1fr));
            gap: 2rem;
            max-width: 1300px;
            margin: auto;
        }


            .why-choose-us {
                padding: 20px;
            }

            .why-choose-us h2 {
                font-size: 18px;
                padding: 8px 8px 8px 12px;
            }

            .why-choose-us p {
                font-size: 11px;
                line-height: 1.5;
            }

            .clients-section-title p {
                font-size: 20px;
            }

            .clients-section {
                height: 130px;
            }

            .client {
                width: 110px;
                margin-right: 15px;
            }

            .client img {
                width: 70px;
                height: 70px;
                margin-bottom: 10px;
            }

            .client p {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 360px) {
            .home .content h1 {
                font-size: 2rem;
            }

            .home .content p {
                font-size: 0.85rem;
            }

            .sec-2 {
                background-color: #ffffff;
                padding: 15px;
                position: relative;
                min-height: 600px;
                contain: layout;
                scroll-behavior: smooth;
            }

            .solution h2 {
                font-size: 32px;
                width: 90%;
            }

            .solution h2 {
                font-size: 22px;
            }

            .solution p {
                font-size: 14px;
                width: 95%;
            }
        }

        /* Keyframe Animations */

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .contact-btn2 {
            background-color: #5403bf;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 30px;
        }

        /* Portfolio Section Styles */
        /* Portfolio Section Styles */

        .section-4 {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            /* padding:10px 30px; */
        }

        .portfolio-section {
            display: grid;
            grid-template-columns: 0.5fr 1fr;
            gap: 0;
            width: 95%;
            border-radius: 10px;
            overflow: hidden;
            /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); */
            padding-bottom: 90px;
            position: relative;
            height: auto;
            padding-top: 60px;
            opacity: 0;
            transform: translateY(50px);
            contain: layout;
        }

        .portfolio-content {
            padding: 20px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #ffffff;
            opacity: 0;
            transform: translateY(30px);
            will-change: opacity, transform;
        }

        .portfolio-content h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .portfolio-content h2 {
            font-size: 24px;
            font-weight: 500;
            color: rgb(78, 78, 78);
            margin-bottom: 30px;
        }

        .portfolio-content p {
            font-size: 18px;
            line-height: 1.3;
            /* margin-bottom: 32px; */
            color: rgb(102, 102, 102);
        }

        .explore-btn {
            background-color: #2195d7;
            color: white;
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 32px;
            max-width: fit-content;
            opacity: 0;
            transform: scale(0.9);
            will-change: opacity, transform;
        }

        .explore-btn:hover {
            background-color: #0873b1;
        }

        .portfolio-slider {
            position: relative;
            display: flex;
            overflow: hidden;
            width: 100%;
            height: 500px;
            opacity: 0;
            transform: translateX(50px);
            will-change: opacity, transform;
        }

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

        .slider-item {
            flex: 0 0 calc(50% - 20px);
            position: relative;
            overflow: hidden;
            margin: 10px;
            height: 100%;
            opacity: 0;
            transform: scale(0.95);
            will-change: opacity, transform;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 500ms ease;
        }

        .slider-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            pointer-events: none;
        }

        .slider-item-content {
            position: absolute;
            top: 10px;
            left: 10px;
            color: white;
            padding: 10px;
            z-index: 2;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .slider-item-content h3 {
            font-size: 48px;
            font-weight: 600;
            margin: 5px 0;
        }

        .slider-item-content p {
            font-size: 20px;
            font-weight: 400;
            margin: 0;
        }

        .slider-item-content .view-btn {
            font-size: 20px;
            font-weight: 500;
            color: #ffffff;
            /* White text */
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.2);
            /* Semi-transparent white background */
            border: 2px solid #ffffff;
            /* White border */
            border-radius: 25px;
            /* Rounded corners */
            transition: all 0.3s ease;
        }

        .slider-item-content .view-btn:hover {
            background: #ffffff;
            /* Solid white background on hover */
            color: #000000;
            /* Black text on hover */
            transform: translateY(-2px);
            /* Slight lift effect */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            /* Subtle shadow for depth */
        }

        .slider-item:hover .slider-item-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
        }

        .slider-item:hover .slider-item-content p {
            display: none;
        }

        .arrow {
            position: absolute;
            top: 45%;
            /* Positioned below the slider */
            color: #000000;
            /* Black color for visibility */
            border: none;
            cursor: pointer;
            z-index: 100;
            /* Increased z-index to ensure visibility */
            background: rgba(255, 255, 255, 0.8);
            /* Semi-transparent white background */
            font-size: 2.2rem;
            /* Circular buttons */
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 0px 10px;
        }

        .arrow.left {
            left: 0%;
            /* Centered with offset for left arrow */
        }

        .arrow.right {
            right: 0%;
            /* Centered with offset for right arrow */
        }

        .arrow:hover {
            background: #000000;
            /* Black background on hover */
            color: #ffffff;
            /* White icon on hover */
        }

        /* Responsive Adjustments for Portfolio Slider */

        @media (max-width: 1000px) {
            .portfolio-section {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding-top: 40px;
                padding-bottom: 65px;
            }

            .portfolio-content {
                padding: 20px;
                text-align: center;
                width: 100%;
            }

            .portfolio-content h1 {
                font-size: 36px;
            }

            .portfolio-content h2 {
                font-size: 24px;
            }

            .portfolio-content p {
                font-size: 18px;
            }

            .explore-btn {
                margin: 0 auto;
            }

            .portfolio-slider {
                height: auto;
                min-height: 500px;
            }

            .slider-container {
                display: flex;
                width: 100%;
            }

            .slider-item {
                flex: 0 0 calc(50% - 20px);
                margin: 10px;
                height: 350px;
                overflow: hidden;
            }

            .slider-item img {
                width: 100%;
                height: 350px;
                object-fit: cover;
            }

            .slider-item::before {
                background: rgba(0, 0, 0, 0.3);
            }

            .slider-item-content {
                position: absolute;
                top: 10px;
                left: 10px;
                padding: 10px;
                color: white;
                background: transparent;
                text-align: left;
            }

            .slider-item-content h3 {
                font-size: 24px;
                color: white;
            }

            .slider-item-content p {
                font-size: 16px;
                color: white;
            }

            .slider-item-content .view-btn {
                font-size: 16px;
                padding: 6px 16px;
                border-radius: 20px;
            }

            .arrow {
                top: 35%;
                /* Adjusted for smaller screens */
                font-size: 2rem;
                padding: 8px;
            }

            .arrow.left {
                left: 0%;
                /* Adjusted for visibility */
            }

            .arrow.right {
                right: 0%;
                /* Adjusted for visibility */
            }

            .progress-bar {
                bottom: -5px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-slider {
                height: auto;
                min-height: 300px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                display: flex;
                -webkit-overflow-scrolling: touch;
                /* Smooth scrolling on touch devices */
                scrollbar-width: none;
                /* Hide scrollbar for Firefox */
                -ms-overflow-style: none;
                /* Hide scrollbar for IE/Edge */
            }

            .slider-container {
                display: flex;
                flex-direction: row;
                width: auto;
            }

            .slider-item {
                flex: 0 0 calc(50% - 15px);
                margin-right: 15px;
                height: 300px;
                scroll-snap-align: start;
            }

            .slider-item img {
                height: 300px;
                object-fit: cover;
            }

            .slider-item-content h3 {
                font-size: 18px;
            }

            .slider-item-content p {
                font-size: 14px;
            }

            .slider-item-content .view-btn {
                font-size: 14px;
                padding: 5px 14px;
                border-radius: 18px;
            }

            .arrow {
                top: 45%;
                font-size: 1.7rem;
                height: 40px;
            }

            .arrow.left {
                left: 0%;
            }

            .arrow.right {
                right: 0%;
            }
        }

        @media (max-width: 576px) {
            .portfolio-slider {
                min-height: 350px;
            }

            .slider-item {
                flex: 0 0 calc(50% - 10px);
                margin: 5px;
                height: 280px;
            }

            .slider-item img {
                height: 280px;
                object-fit: cover;
            }

            .slider-item-content h3 {
                font-size: 16px;
            }

            .slider-item-content p {
                font-size: 12px;
            }

            .slider-item-content .view-btn {
                font-size: 12px;
                padding: 4px 12px;
                border-radius: 16px;
            }

            .arrow {
                bottom: 45px;
                font-size: 1.7rem;
                height: 40px;
            }

            .arrow.left {
                left: 0%;
            }

            .arrow.right {
                right: 0%;
            }
        }

        @media (max-width: 480px) {
            .slider-item {
                flex: 0 0 calc(50% - 10px);
                margin: 5px;
                height: 260px;
                min-height: 240px;
            }

            .slider-item img {
                height: 260px;
                object-fit: cover;
            }

            .slider-item-content h3 {
                font-size: 14px;
            }

            .slider-item-content p {
                font-size: 12px;
            }

            .slider-item-content .view-btn {
                font-size: 12px;
                padding: 4px 12px;
                border-radius: 16px;
            }

            .arrow {
                bottom: 45px;
                font-size: 1.7rem;
                height: 40px;
            }

            .arrow.left {
                left: 0%;
            }

            .arrow.right {
                right: 0%;
            }
        }

        @media (max-width: 360px) {
            .portfolio-slider {
                min-height: 350px;
            }

            .slider-container {
                width: 100%;
            }

            .slider-item {
                flex: 0 0 calc(100% - 10px);
                /* One card per frame */
                margin: 5px;
                height: 260px;
                min-height: 240px;
            }

            .slider-item img {
                width: 100%;
                height: 260px;
                object-fit: cover;
                object-position: center;
            }

            .slider-item-content h3 {
                font-size: 14px;
            }

            .slider-item-content p {
                font-size: 12px;
            }

            .slider-item-content .view-btn {
                font-size: 12px;
                padding: 4px 12px;
                border-radius: 16px;
            }

            .arrow {
                bottom: 50px;
                font-size: 1.7rem;
                height: 40px;
            }

            .arrow.left {
                left: 0%;
            }

            .arrow.right {
                right: 0%;
            }
        }

        /* Blog Section Styles */
        /* Blog Section Styles */

        .blog-section-custom {
            margin-top: 1%;
            width: 95%;
            padding: 30px 40px;
            color: #333;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* align-items: center; */
            contain: layout;
            opacity: 1;
            background: #f9f9f9;
            will-change: opacity, transform;
            margin-bottom: 50px;
        }

        .blog-title-custom {
            font-size: 2rem;
            font-weight: 700;
            color: #000000;
            text-align: start;
            width: 80%;
            padding: 20px 0px 0px 40px;
            margin-top: 60px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .blog-container-custom {
            display: flex;
            gap: 30px;
            width: 100%;
            max-width: 1439px;
            /* Matches original widths (800px + 639px) */
            justify-content: center;
        }

        .blog-main-custom {
            width: 800px;
            height: 550px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .blog-image-custom {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 5px;
        }

        .blog-info-custom h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #353535;
        }

        .blog-info-custom p {
            font-size: 1.1rem;
            line-height: 1.5;
            color: #666;
            margin-bottom: 30px;
        }

        .read-more-btn-custom {
            background-color: #ffffff;
            color: #025b8f;
            padding: 10px 20px;
            border: 2px solid #0873b1;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            touch-action: manipulation;
            /* Improve touch responsiveness */
        }

        .read-more-btn-custom:hover {
            background-color: #0873b1;
            color: white;
        }

        .blog-list-custom {
            width: 639px;
            height: 550px;
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-right: 15px;
            opacity: 1 !important;
            will-change: opacity, transform;
        }

        .blog-list-custom::-webkit-scrollbar {
            width: 8px;
        }

        .blog-list-custom::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-right: 10px;
        }

        .blog-list-custom::-webkit-scrollbar-thumb {
            background: #007BFF;
            border-radius: 5px;
        }

        .blog-list-custom::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }

        .blog-item-custom {
            display: flex;
            align-items: center;
            gap: 30px;
            cursor: pointer;
            transition: transform 0.2s ease;
            padding: 15px;
            background-color: white;
            border: 1px solid #ddd;
            height: 120px;
            opacity: 1;
            will-change: opacity, transform;
        }

        .blog-item-custom:hover {
            background-color: #f1f1f1;
            transform: scale(1.05);
        }

        .blog-item-custom img {
            width: 100px;
            height: 95px;
            object-fit: cover;
            border-radius: 5px;
            flex-shrink: 0;
        }

        .blog-text-head {
            font-size: 1.2rem;
            font-weight: 700;
            color: #4d4d4d;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: wrap;
            /* Prevent text wrapping */
        }

        /* Responsive Adjustments */

        @media (max-width: 1400px) {
            .blog-container-custom {
                max-width: 1000px;
                gap: 20px;
            }

            .blog-main-custom {
                width: 55%;
                /* Relative width */
                height: auto;
                min-height: 500px;
            }

            .blog-list-custom {
                width: 45%;
                height: auto;
                min-height: 500px;
            }

            .blog-image-custom {
                height: 250px;
            }

            .blog-title-custom {
                font-size: 2.5rem;
                padding: 0 30px;
            }
        }

        @media (max-width: 992px) {
            .blog-title-custom {
                font-size: 2.2rem;
                padding: 0 20px;
                margin-top: 40px;
            }

            .blog-main-custom {
                width: 50%;
                min-height: 450px;
            }

            .blog-list-custom {
                width: 50%;
                min-height: 450px;
            }

            .blog-image-custom {
                height: 220px;
            }

            .blog-info-custom h3 {
                font-size: 1.8rem;
            }

            .blog-info-custom p {
                font-size: 1.2rem;
            }

            .read-more-btn-custom {
                font-size: 0.9rem;
                padding: 8px 16px;
            }

            .blog-item-custom img {
                width: 110px;
                height: 110px;
            }

            .blog-text-head {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .blog-section-custom {
                padding: 15px 20px;
                margin-bottom: 30px;
            }

            .blog-title-custom {
                font-size: 2rem;
                text-align: center;
                /* Center for mobile */
                width: 100%;
                padding: 0 10px;
            }

            .blog-container-custom {
                flex-direction: column;
                gap: 15px;
            }

            .blog-main-custom {
                width: 100%;
                height: auto;
                min-height: auto;
            }

            .blog-list-custom {
                width: 100%;
                height: auto;
                overflow-y: visible;
                /* Natural scrolling */
                padding-right: 0;
            }

            .blog-image-custom {
                height: 200px;
            }

            .blog-info-custom h3 {
                font-size: 1.6rem;
            }

            .blog-info-custom p {
                font-size: 1.1rem;
            }

            .read-more-btn-custom {
                font-size: 0.85rem;
                padding: 7px 14px;
            }

            .blog-item-custom {
                height: 120px;
            }

            .blog-item-custom img {
                width: 100px;
                height: 100px;
            }

            .blog-text-head {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .blog-section-custom {
                padding: 10px 15px;
            }

            .blog-title-custom {
                font-size: 1.8rem;
                margin-top: 30px;
            }

            .blog-image-custom {
                height: 180px;
            }

            .blog-info-custom h3 {
                font-size: 1.5rem;
            }

            .blog-info-custom p {
                font-size: 1rem;
            }

            .read-more-btn-custom {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .blog-item-custom {
                height: 100px;
            }

            .blog-item-custom img {
                width: 80px;
                height: 80px;
            }

            .blog-text-head {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .blog-section-custom {
                padding: 8px 10px;
            }

            .blog-title-custom {
                font-size: 1.6rem;
                margin-top: 20px;
            }

            .blog-image-custom {
                height: 160px;
            }

            .blog-info-custom h3 {
                font-size: 1.4rem;
            }

            .blog-info-custom p {
                font-size: 0.9rem;
            }

            .read-more-btn-custom {
                font-size: 0.75rem;
                padding: 5px 10px;
            }

            .blog-item-custom {
                height: 90px;
            }

            .blog-item-custom img {
                width: 70px;
                height: 70px;
            }

            .blog-text-head {
                font-size: 0.85rem;
            }
        }

        .footer .footer-brand {
            text-align: left !important;
            margin-left: 00px;
        }

        @media (max-width: 640px) {
            .footer-description {
                color: #a0a0a0 !important;
                max-width: 18rem !important;
                margin: 0px 0px 1.5rem !important;
                line-height: 1.5 !important;
                font-size: 0.875rem !important;
                text-align: justify !important;
            }

            .footer .social-links {
                display: flex !important;
                gap: 1rem !important;
                list-style: none !important;
                align-items: center !important;
                margin-left: -30px !important;
                justify-content: flex-start !important;
            }
        }

        /* Import Google Font for a futuristic look */
        /* Import Montserrat Font for a professional look */
        /* Import Montserrat Font for a professional look */
        /* Job Application Overlay Styles */

        .job-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .job-overlay.active {
            display: flex;
            opacity: 1;
        }

        .job-form-container {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            max-width: 550px;
            width: 90%;
            position: relative;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(30px);
            transition: transform 0.4s ease, opacity 0.4s ease;
            font-family: 'Montserrat', sans-serif;
            border: 1px solid #e0e0e0;
        }

        .job-overlay.active .job-form-container {
            transform: translateY(0);
            opacity: 1;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .close-btn:hover {
            color: #ff4d4d;
            transform: scale(1.2);
        }

        .job-form-container h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        #job-application-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
        }

        .form-group label span {
            color: #ff4d4d;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: #333;
            background: #f9f9f9;
            border: 1px solid #d0d0d0;
            border-radius: 6px;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #2195d7;
            box-shadow: 0 0 8px rgba(33, 149, 215, 0.3);
        }

        .form-group input[type="file"] {
            padding: 8px;
            background: none;
            color: #333;
            border: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(90deg, #2195d7 0%, #1a7bb8 100%);
            color: #ffffff;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: linear-gradient(90deg, #1a7bb8 0%, #15649b 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(33, 149, 215, 0.4);
        }

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

        .submit-btn:hover::after {
            left: 100%;
        }

        .form-message {
            margin-top: 15px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            text-align: center;
            color: #333;
        }

        .form-message.success {
            color: #28a745;
        }

        .form-message.error {
            color: #ff4d4d;
        }

        /* Responsive Adjustments */

        @media (max-width: 480px) {
            .job-form-container {
                padding: 30px;
                width: 95%;
            }

            .job-form-container h2 {
                font-size: 1.8rem;
            }

            .form-group label {
                font-size: 0.95rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.9rem;
                padding: 10px;
            }

            .submit-btn {
                font-size: 0.95rem;
                padding: 12px;
            }
        }

        @media (max-width: 360px) {
            .job-form-container {
                padding: 20px;
            }

            .job-form-container h2 {
                font-size: 1.6rem;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.85rem;
                padding: 8px;
            }

            .submit-btn {
                font-size: 0.9rem;
                padding: 10px;
            }
        }
