﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h3
{
    margin-top: 20px;
}
p
{
    line-height:1.3;
    text-align:justify;
}
li{
    margin-left:30px;
    line-height:1.3;
    text-align:justify;
}

.header {
    background: white;
    padding: 0px 0px 0px 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003B73;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003B73;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.top-banner {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-logo {
    height: 60px;
    width: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: gridMove 25s linear infinite;
    }

@keyframes gridMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(40px, 40px) rotate(0deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 40px rgba(255,255,255,0.3);
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.4;
}

.description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0057A8;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.key-benefits {
    background: white;
    padding: 40px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    padding: 35px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
}

    .benefit-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(30, 60, 114, 0.15);
        border-color: #7e22ce;
    }

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-flex;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3c72;
}

.benefit-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.modules-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .modules-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(126, 34, 206, 0.3), transparent);
        pointer-events: none;
    }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.module-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .module-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.module-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    display: inline-flex;
    gap : 10px;
}

.module-features {
    list-style: none;
    padding: 0;
}

    .module-features li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        line-height: 1.6;
        font-size: 1.05rem;
    }

        .module-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            /*color: #a5f3fc;*/
            color: #00A859;
            font-weight: bold;
            font-size: 1.3rem;
        }

.data-repository {
    background: #f8fafc;
    padding: 40px 20px;
}

.repository-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.repo-item {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .repo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(30, 60, 114, 0.15);
        border-color: #7e22ce;
    }

.repo-icon {
    font-size: 2.5rem;
    /*margin-bottom: 12px;*/
}

.repo-label {
    font-weight: 600;
    color: #1e3c72;
    font-size: 1.05rem;
}

.cta-section {
    /*background: linear-gradient(135deg, #7e22ce 0%, #a855f7 100%);*/
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

    .cta-section h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .cta-section p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.95;
    }

.footer {
    background: #0f172a;
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-developed {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-developed-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
    .footer-developed-text a {
        text-decoration: none;
        color: rgba(255,255,255,0.7);
        font-size: 0.95rem;
    }

.footer-avant-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .footer-avant-logo:hover {
        opacity: 1;
    }

.footer p {
    opacity: 0.8;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

.main-section {
    background: #003B73;
    padding: 80px 20px;
    color: white;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /*align-items: center;*/
}

.main-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.main-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

    .contact-form h3 {
        font-size: 2rem;
        margin-bottom: 25px;
        color: #003B73;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        /*padding: 15px;*/
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0057A8;
        }

    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #0057A8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        background: #003B73;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,87,168,0.3);
    }



.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    align-items: center ;
    display: flex;
}

label.required::after {
    content: " *";
    color: red;
}




@media (max-width: 768px) {


    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-text h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}


/* ==== Learn More Section ==== */
.learnmore-section {
    background: #f4f8fc;
    padding: 80px 20px;
    color: #333;
    font-family: "Poppins", sans-serif;
}

.learnmore-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #003B73;
    margin-bottom: 15px;
}

.learnmore-section .section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
    color: #555;
    line-height: 1.8;
}
.learnmore-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.learn-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .learn-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 59, 115, 0.15);
    }

.learn-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0057A8;
    margin-bottom: 15px;
}

.learn-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .learn-list li {
        padding: 8px 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        border-bottom: 1px solid #eee;
    }

        .learn-list li::before {
            content: "✔";
            color: #00A859;
            font-weight: 600;
            /*color: #a5f3fc;*/
            font-size: 1.3rem;
        }

/* Hover animation for each box */
.learn-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

    .learn-box:nth-child(2) {
        animation-delay: 0.2s;
    }

    .learn-box:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .learnmore-section .section-title {
        font-size: 2rem;
    }

    .learn-box {
        padding: 35px 20px;
    }
}
/*Learn more end*/

/* Error Page css start*/
/* ==== 404 Error Page ==== */


.error-page {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #003B73, #0057A8);
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-shadow: 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.error-title {
    font-size: 2.2rem;
    margin: 15px 0;
    font-weight: 600;
    color: #e6e6e6;
}

.error-text {
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cfd8dc;
}

.error-page .back-home-btn {
    display: inline-block;
    background: #fff;
    color: #003B73;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .error-page .back-home-btn:hover {
        background: #0057A8;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

/* Responsive */
@media (max-width: 600px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.6rem;
    }
}
/* Error Page css end*/

/* ================================
   Bootstrap-like Grid System Only
   ================================ */

/* Container
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
} */

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Column Padding */
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    min-height: 1px;
    box-sizing: border-box;
}

/* Default columns (12-grid system) */
.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Medium breakpoint (≥768px) */
@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Large breakpoint (≥992px) */
@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Alignment helpers */
.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

/* Gutterless rows (optional) */
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .text-white{
        color:white;
    }
    .mb-3{
        margin-bottom : 10px;
    }

    a{
        text-decoration : none;
    }

.top-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 6px 15px;
    color: white;
}

/* parent container */
.contact-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

/* icon + text alignment */
.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .contact-item a {
        color: white;
        text-decoration: none;
        font-size: 14px;
    }

.divider {
    color: white;
    font-size: 14px;
}

@media(max-width:425px)
{
    .cta-button {
        padding: 6px 20px;
        font-weight: 400;
    }
}

/* NAVBAR */
.navbar {
    width: 100%;
    background: #ffffff;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-container img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        font-size: 18px;
        color: #333;
        transition: 0.3s;
        padding: 10px 8px 10px 8px;
        /*font-weight:bold;*/
    }

        .nav-links a:hover {
            color: #007bff;
        }


/* MOBILE MENU */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -250px;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        align-items: start;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease-in-out;
    }

        .nav-links.active {
            left: 0;
        }
        .nav-links a {
            padding: 0px 0px 0px 0px;
        }
}



@media (min-width: 769px) {
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
    }

    .hamburger {
        display: none;
    }


    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }



    .nav-links.active {
        display: flex;
    }
}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 768px) {
    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .d-lg-block {
        display: block !important;
    }
}

@media (min-width: 425px) {
    .hide-request-demo {
        display: block !important;
    }
}

.banner-slider .item {
    position: relative;
}

.banner-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    filter: brightness(0.5);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 80%;
    text-align: center;
    display: block;
}

    /* Desktop */
    .banner-content h1 {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

/* --------------------------- */
/* RESPONSIVE FIX FOR MOBILE   */
/* --------------------------- */

@media (max-width: 992px) {
    .banner-content {
        width: 90%;
    }

        .banner-content h1 {
            font-size: 2.2rem;
        }

        .banner-content h2 {
            font-size: 1.5rem;
        }

        .banner-content p {
            font-size: 1rem;
        }
}

@media (max-width: 768px) {
    .banner-img {
        height: 65vh;
    }

    .banner-content {
        width: 92%;
    }

        .banner-content h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .banner-content h2 {
            font-size: 1.3rem;
            margin-bottom: 6px;
        }

        .banner-content p {
            font-size: 0.95rem;
            margin-bottom: 6px;
        }

    .btn-slide {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    

    .banner-content h1 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .banner-content h2 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .banner-content p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .btn-slide {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}


.btn-slide {
    background: #1e73be;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

/* FIX: Owl Navigation Arrows Visible */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        pointer-events: auto;
        background: rgba(255,255,255,0.4) !important;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 30px !important;
        color: #000 !important;
        line-height: 45px !important;
        text-align: center;
    }

    /* Hide disabled class (loop always true, so not used) */
    .owl-nav button.disabled {
        opacity: 0.5;
    }

    .mt-3{
        margin-top : 10px;
    }

.owl-dots {
    position: absolute !important;
    bottom: 20px; /* distance from bottom inside the banner */
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

@media (max-width: 425px) {
    .owl-dots {
        bottom: 10px;
    }
}
.owl-dot {
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5) !important; /* light dots inside banner */
    border: none;
}

   
    .owl-dot span {
        display: none; /* hides the inner span if empty */
    }

    .owl-dot.active {
        background: #007bff !important; /* Active dot color */
    }

@media(max-width:768px)
{
    .module-features li {
        padding: 8px 0;
        padding-left: 30px;
    }
}
@media(max-width:400px)
{
    .contact-item {
        gap : 0px;
    }
        .contact-item a{
            font-size : 11px;
        }
}

.text-black{
    color:black;
}