@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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;
}
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 70px;
    perspective: 1000px;
    z-index: 2;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/egov-page-bg.jpg) no-repeat center center/cover;
    z-index: -1;
    transform: scale(1.1);
}

.orange-container {
    background: rgba(201, 78, 2, 0.4);
    padding: 0px 40px;
    transform: translateY(-50px) rotateX(-30deg);
    align-items: last baseline;
    margin: 0 auto;
    gap: 100px;
    margin-bottom: 40px;
    height: 160px;
    margin-top: 50px;
    box-sizing: border-box;
}

.orange-container .heading {
    align-items: last baseline;
}

.orange-container .heading .big-e {
    bottom: -15px;
}

.orange-container:hover .big-e {
    transform: translateZ(60px) rotateY(15deg);
}

.orange-container .heading span {
    font-size: 90px;
    color: white;
    line-height: 1;
    text-transform: uppercase;
}

.orange-container .description {
    font-size: 20px;
    padding-left: 30px;
}

.content-container {}

.tabs {}

.tab {}

.tab:hover {}

.tab.active {}

.stats-container {
    grid-template-columns: repeat(4, 150px);
    gap: 20px;
}

.stat-box {
    padding: 5px;
    border-radius: 8px;
    max-width: 180px;
    flex-direction: column;
    background: rgba(29, 29, 29, 0.336);
}

.stat-box i {
    width: 18px;
    height: 18px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.stat-name {
    margin-top: 5px;
}

.content-description {
    font-size: 1rem;
}


/* Carousel Section (Second Section) */

.carousel-section {
    position: sticky;
    top: 0;
    min-height: 80vh;
    width: 100%;
    background: transparent;
    perspective: 1000px;
    margin-top: 30px;
    transform-style: preserve-3d;
    z-index: 1;
    opacity: 0;
}

.custom-container {
    max-width: 1600px;
    padding: 20px 5px 40px 5px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
}

.carousel-heading {
    text-align: center;
    margin-bottom: 1.3rem;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
    padding: 0 10px;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    transition: opacity 0.3s ease;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 20px 20px 10px 10px;
    padding: 20px;
    flex: 1 1 30%;
    max-width: 30%;
    background: #fff;
    opacity: 1;
    transform: none;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg) translateZ(30px) scale(1);
    box-shadow: 4px 10px 10px rgba(0, 0, 0, 0.295);
}

.card img {
    max-width: 100%;
    max-height: 210px;
    border-radius: 10px;
    object-fit: cover;
}

.card-body {
    text-align: center;
    padding-top: 15px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.carousel-inner {
    padding: 1em  1em 2em 1em;
    transition: opacity 0.3s ease;
    opacity: 1;
    /* Ensure it stays visible by default */
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.7);
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.carousel-control-prev {
    transform: translateX(70%);
}

.carousel-control-next {
    transform: translateX(-70%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 1);
}

.btn-learn-more {
    border: 2px solid #333;
    color: #333;
    background-color: transparent;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-learn-more:hover {
    background-color: #333;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
    display: none;
}


/* Third Section (Full Height and More) */

.third-section {
    position: relative;
    background: #f5f7fa;
    min-height: 100vh;
    color: #2d3748;
    width: 100%;
    line-height: 1.6;
    z-index: 2;
    opacity: 0;
    padding: 1px 0px;
    transform: translateY(100px);
    perspective: 1000px;
    transform-style: preserve-3d;
}


/* Responsive Design */

@media(max-width:1300px) {
    .hero-section {
        height: 112vh;
    }
    .orange-container .description {
        font-size: 18px;
        color: white;
    }
    .orange-container .heading .big-e {
        position: relative;
        bottom: -15px;
        left: 20px;
        font-size: 180px;
    }
    .orange-container {
        padding: 0px 20px 0px 20px;
        text-align: center;
        opacity: 0;
        transform: translateY(-50px) rotateX(-30deg);
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 0 auto;
        gap: 100px;
        margin-bottom: 40px;
        height: 200px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform-style: preserve-3d;
        margin-top: 90px;
        box-sizing: border-box;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        height: 100vh;
        padding-top: 30px;
    }
    .orange-container {
        gap: 30px;
        height: 160px;
        padding: 0px 5px 0px 0px;
    }
    .orange-container .heading .big-e {
        font-size: 180px;
    }
    .orange-container .heading span {
        font-size: 60px;
    }
    .orange-container .description {
        font-size: 18px;
        max-width: 500px;
        padding-left: 10px;
    }
    .content-container {
        width: 90%;
        padding: 15px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .stat-name {
        font-size: 0.85rem;
    }
    .custom-container {
        max-width: 1000px;
        padding: 30px 10px;
    }
    .cards-wrapper {
        gap: 8px;
    }
    .card {
        flex: 1 1 45%;
        max-width: 48%;
        padding: 4px;
        min-height: 420px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .card-text {
        font-size: 0.8rem;
    }
    .btn-learn-more {
        padding: 6px 16px;
    }
}

@media(max-width:1000px) {
    .orange-container .description {
        font-size: 14px;
        max-width: 500px;
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        padding-top: 0px;
    }
    .orange-container {
        flex-direction: column;
        gap: 10px;
        height: auto;
        min-height: 200px;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }
    .orange-container .heading {
        flex-direction: row;
        align-items: flex-end;
    }
    .orange-container .heading .big-e {
        font-size: 120px;
    }
    .orange-container .heading span {
        font-size: 40px;
    }
    .orange-container .description {
        font-size: 16px;
        border-left: none;
        border-top: 4px solid white;
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
        max-width: 100%;
    }
    .content-container {
        width: 95%;
        padding: 10px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-name {
        font-size: 0.8rem;
    }
    .tab {
        padding: 6px 15px;
    }
    .custom-container {
        max-width: 500px;
        padding: 20px 5px;
    }
    .cards-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    .card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 10px;
        min-height: 360px;
    }
    .carousel-heading {
        font-size: 2rem;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-text {
        font-size: 0.85rem;
    }
    .btn-learn-more {
        padding: 5px 14px;
    }
    .content-description {
        font-size: 0.9rem;
        color: white;
        margin-top: 0px;
        opacity: 0;
        transform: translateY(20px) translateZ(10px);
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cards-wrapper {
        justify-content: center;
        flex-wrap: nowrap;
    }
    .card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 10px;
        min-height: 380px;
    }
    .carousel-indicators button {
        display: inline-block !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 110vh;
        padding-top: 20px;
    }
    .orange-container {
        gap: 5px;
        min-height: 200px;
        padding: 15px;
        margin-top: 35px;
    }
    .orange-container .heading {
        flex-direction: column;
        align-items: center;
    }
    .orange-container .heading .big-e {
        font-size: 90px;
        left: 0;
        bottom: 0;
        margin-right: 0;
    }
    .orange-container .heading span {
        font-size: 32px;
    }
    .orange-container .description {
        font-size: 14px;
        padding-top: 8px;
    }
    .content-container {
        width: 98%;
        padding: 8px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-name {
        font-size: 0.75rem;
    }
    .tab {
        padding: 5px 12px;
    }
    .content-description {
        font-size: 0.8rem;
    }
    .carousel-heading {
        font-size: 2rem;
    }
    .custom-container {
        max-width: 100%;
        padding: 15px 5px;
    }
    .card {
        padding: 8px;
        min-height: 350px;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .card-text {
        font-size: 0.8rem;
    }
    .btn-learn-more {
        padding: 4px 12px;
    }
    .carousel-indicators {
        bottom: -40px;
    }
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
}

@media(max-width:400px) {
    .hero-section {
        height: 130vh;
        padding-top: 20px;
    }
}
@media(max-width:340px) {
    .hero-section {
        height: 100vh;
        padding-top: 10px;
    }
     .orange-container {
        gap: 5px;
        min-height: 200px;
        padding: 15px;
        margin-top: 20px;
    }
}
@media(max-width:310px) {
    .hero-section {
        height: 80vh;
        padding-top: 10px;
    }
     .orange-container {
        gap: 5px;
        min-height: 200px;
        padding: 15px;
        margin-top: 15px;
    }
}
.third-section .first-container {
    max-width: 1300px;
    margin: 70px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.third-section .title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
}

.third-section .offerings {
    display: grid;
    grid-template-columns: repeat(4, 0.8fr);
    gap: 25px;
}

.third-section .offering {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.5s ease;
    transform: translateY(50px);
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.third-section .offering img {
    width: 70%;
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.third-section .offering h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.third-section .offering p {
    font-size: 1rem;
    color: #68707e;
    line-height: 1.3rem;
}

.third-section .show {
    opacity: 1;
    transform: translateY(0);
}

.third-section .offering:nth-child(1) {
    transition-delay: 0.1s;
}

.third-section .offering:nth-child(2) {
    transition-delay: 0.2s;
}

.third-section .offering:nth-child(3) {
    transition-delay: 0.3s;
}

.third-section .offering:nth-child(4) {
    transition-delay: 0.4s;
}

.third-section .offering:nth-child(5) {
    transition-delay: 0.5s;
}

.third-section .offering:nth-child(6) {
    transition-delay: 0.6s;
}

.third-section .offering:nth-child(7) {
    transition-delay: 0.7s;
}

.third-section .offering:nth-child(8) {
    transition-delay: 0.8s;
}

.third-section .offering:nth-child(9) {
    transition-delay: 0.9s;
}

.third-section .offering:nth-child(10) {
    transition-delay: 1.0s;
}

.third-section .offering:nth-child(11) {
    transition-delay: 1.1s;
}

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

.third-section .offering:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .third-section .container {
        padding: 30px;
    }
    .third-section .title {
        font-size: 2rem;
    }
    .third-section .offerings {
        gap: 20px;
    }
    .third-section .offering h3 {
        font-size: 1.4rem;
    }
    .third-section .offering img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .third-section .container {
        margin: 40px auto;
        padding: 20px;
    }
    .third-section .title {
        font-size: 1.8rem;
    }
    .third-section .offerings {
        grid-template-columns: repeat(2, 1fr);
    }
    .third-section .offering img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .third-section .container {
        margin: 20px auto;
        padding: 15px;
    }
    .third-section .title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .third-section .offerings {
        grid-template-columns: 1fr;
    }
    .third-section .offering img {
        max-width: 160px;
    }
}
.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;
    }
}

