:root {
    --primary-blue: #004e92;   
    --accent-cyan: #00a8e8;     
    --text-dark: #2c3e50;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

* { 
    box-sizing: border-box;
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', 'Segoe UI', sans-serif; 
}


html, body {
    width: 100%;
    height: 100%;
    /* background-color: var(--bg-light); */
    scroll-behavior: smooth;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: 
            radial-gradient(at 0% 0%, rgba(0, 78, 146, 0.12) 0%, transparent 70%),
            radial-gradient(at 100% 0%, rgba(0, 168, 232, 0.1) 0%, transparent 70%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 78, 146, 0.03) 100%);
}
@media (max-width: 768px) {
   html {
        height: auto; 

    }
    body {
        position: relative;
        width: 100%;
        min-height: 100vh; 

    }
}


/*----------------------HEADER-----------------------*/

.main-header.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: white;
}

.main-header .navbar {
    padding: 5px 0 !important; 
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.header-logo {
    height: 55px; 
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast; 
    display: block;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue, #004e92) !important;
}

.btn-get-started {
    background: linear-gradient(135deg, #004e92, #00c6ff);
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 20px !important; 
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.15);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 78, 146, 0.25);
}


@media (max-width: 991px) {
    .offcanvas {
        width: 300px !important;
        border-radius: 20px 0 0 20px; 
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .offcanvas-header {
        padding: 25px 20px;
        background: linear-gradient(to right, #ffffff, #f8fafc);
        border-bottom: 1px solid #f1f5f9;
    }

    .offcanvas-body {
        padding: 20px;
        background-color: #ffffff;
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-item {
        width: 100%;
        margin-bottom: 8px;
    }

    .nav-link {
        display: flex !important;
        align-items: center;
        padding: 10px 15px !important;
        background-color: #f8fafc; 
        border-radius: 5px;
        color: #475569 !important;
        font-weight: 500 !important;
        font-size: 0.95rem;
        border: none !important;
        transition: all 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
        /* background-color: #e2e8f0; */
        background: 
            radial-gradient(at 0% 0%, rgba(0, 78, 146, 0.12) 0%, transparent 70%),
            radial-gradient(at 100% 0%, rgba(0, 168, 232, 0.1) 0%, transparent 70%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 78, 146, 0.03) 100%);
        color: #004e92 !important;
        transform: translateX(5px); 
    }

    .navv_linkk::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: #cbd5e1;
        border-radius: 50%;
        margin-right: 12px;
        transition: all 0.3s ease;
    }

    .navv_linkk.active::before {
        background-color: #004e92;
        width: 8px;
        height: 8px;
    }

    .offcanvas-body .btn-get-started {
        margin-top: 25px;
        /* width: 100%; */
        padding: 10px !important;
        border-radius: 12px;
        font-size: 1rem;
        justify-content: center;
        display: flex;
        align-items: center;
        letter-spacing: 0.5px;
    }
    .navbar-toggler, 
    .navbar-toggler:focus, 
    .navbar-toggler:active, 
    .navbar-toggler-icon:focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }
}

@media (min-width: 992px) {
    .offcanvas {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto !important;
        visibility: visible !important;
        background: none !important;
        border: none !important;
        transform: none !important;
    }
    .offcanvas-header { display: none; }
    .offcanvas-body { padding: 0; display: flex; }
}

/*------------HERO SECTION--------*/

.hero-section {
    padding: 40px 0; 
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px); 
    background: 
        radial-gradient(at 0% 0%, rgba(0, 78, 146, 0.12) 0%, transparent 70%),
        radial-gradient(at 100% 0%, rgba(0, 168, 232, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 78, 146, 0.03) 100%);
}

.hero-content {
    padding-right: 40px; 
}

.hero-title {
    font-size: 3rem; 
    font-weight: 750;
    letter-spacing: -1.5px;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 520px; 
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-hero-main {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white !important;
    padding: 14px 28px !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.2);
}

.btn-hero-video {
    padding: 14px 28px !important;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #475569 !important;
    display: flex;
    align-items: center;
}
.hero-image-wrapper {
    position: relative; 
    display: inline-block;
}

.floating-popup-card {
    position: absolute;
    top: -3%;
    right: -50px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 5;
    animation: sideFloat 3s ease-in-out infinite;
}

.floating-popup-card .icon-box {
    width: 45px;
    height: 45px;
    background: #25d366; 
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-popup-card .card-info h5 {
    color: #1e293b;
    font-size: 1.1rem;
}
@keyframes sideFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); } 
}
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Fixes */
@media (max-width: 991px) {

    .hero-section {
        padding: 40px 0;
        text-align: center;
        min-height: auto; 
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px; 
    }
    .hero-title {
        font-size: 2.2rem; 
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
   .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-dashboard-img {
        height: auto !important; 
        width: 100% !important;
        max-width: 100%;
        border-radius: 12px;
    }

    .floating-popup-card {
        right: 10px !important; 
        left: auto !important;
        top: 5% !important;
        padding: 8px 12px;
        transform: scale(0.85);
    }

    .floating-popup-card .icon-box {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-trust .ms-3 {
        margin-left: 0 !important;
    }
}

.wow {
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes customFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0); 
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes customFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0); 
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInLeft {
    animation-name: customFadeInLeft !important;
}

.animate__fadeInRight {
    animation-name: customFadeInRight !important;
}

.wow {
    animation-duration: 1.2s !important;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1) !important; 
}

/*---------------WHYCHOOSE SECTION -------------------*/

.why-choose-section {
    padding: 60px 0; 
    background-color: #ffffff;
}

.section-desc {
    font-size: 1rem;
    color: #64748b;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1px; 
    background-color: #f1f5f9; 
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 40px;
}

.feature-box {
    background: #ffffff;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #f8fafc;
}

.feature-icon-wrap {
    width: 40px; 
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Glow Effects (Flat Style) */
.green-glow { background: #f0fdf4; color: #16a34a; }
.blue-glow { background: #eff6ff; color: #2563eb; }
.cyan-glow { background: #ecfeff; color: #0891b2; }
.purple-glow { background: #f5f3ff; color: #7c3aed; }

.feature-box h3 {
    font-size: 1.15rem; 
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-box p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 1199px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-section .row.mb-5 {
        text-align: center; 
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .section-desc {
        border-left: none; 
        border-top: 1px solid var(--accent-cyan); 
        padding-left: 0;
        padding-top: 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    .features-grid {
        margin-top: 30px;
        border-radius: 12px;
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr; 
        gap: 1px; 
    }

    .feature-box {
        padding: 25px 20px;
        text-align: center;
    }

    .feature-icon-wrap {
        margin: 0 auto 15px auto; 
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }
}

/*--------------- DEMO SECTION ---------------*/

.demo-badge-wrap {
    display: inline-block;
}

.badge-tour {
    background: rgba(0, 78, 146, 0.08);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 78, 146, 0.1);
}

.main-demo-title {
    font-size: 2.7rem; 
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.demo-subtitle-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 650px; 
}

.video-frame {
    border-radius: 30px; 
    border: 10px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .main-demo-title { font-size: 2.2rem; }
    .demo-subtitle-text { font-size: 1rem; }
}


/*-------------------- TRUST SECTION ---------------------*/

.trust-slider-section {
    overflow: hidden; 
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 5px;
}

.trust_subtitle {
    font-size: 1.2rem;
}
.logos-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px; 
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logos-marquee-wrapper::before { 
    left: 0; 
    background: linear-gradient(to right, #e3f4fd 0%, transparent 100%);
    
}
.logos-marquee-wrapper::after { 
    right: 0; 
    background: linear-gradient(to left, #e3f4fd 0%, transparent 100%); 
}

.logos-marquee-track {
    display: flex;
    /* width: calc(180px * 12);  */
    width: max-content;
    animation: scroll-marquee 20s linear infinite; 
}

.marquee-item {
    width: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 15px; 
}

.marquee-item img {
    max-width: 130px; 
    height: auto;
    transition: all 0.3s ease;
}


@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@media (max-width: 768px) {
    .trust_subtitle {
        font-size: 0.9rem; 
        padding: 0 15px;
    }
    
    .marquee-item {
        width: 120px; 
        padding: 0 10px;
    }
    
    .marquee-item img {
        max-width: 90px;
    }
}

/*-------------------FEATURE SECTION-------------------*/

.feature-image-display {
    position: relative;
    padding: 30px;
    z-index: 1;
}

.sync-mockup {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 78, 146, 0.15);
    transition: all 0.5s ease;
}

.sync-shape {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--primary-blue);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.feature-nav-wrapper .nav-pills .nav-link {
    background: transparent;
    border: none;
    text-align: left;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-nav-wrapper .nav-pills .nav-link.active {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-blue);
    transform: translateX(10px);
}

.feat-count {
    font-size: 1.1rem;
    font-weight: 800;
    color: #64748b;
    margin-right: 20px;
    opacity: 0.5;
}

.nav-link.active .feat-count {
    color: var(--primary-blue);
    opacity: 1;
}

.feat-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feat-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .sync-feature-section {
        padding: 60px 0 !important;
    }

    .sync-feature-section .row.align-items-center {
        flex-direction: column-reverse; 
    }

    .feature-image-display {
        padding: 10px;
        margin-bottom: 30px;
    }

    .sync-mockup {
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 78, 146, 0.1);
    }

    .feature-nav-wrapper .nav-pills .nav-link {
        padding: 15px;
        margin-bottom: 10px;
    }
    .feature-nav-wrapper .nav-pills .nav-link.active { 
        transform: none !important; 
        background: #ffffff !important; 
        border-left: 4px solid var(--primary-blue) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    }

    .feat-info h5 {
        font-size: 1.1rem;
    }

    .feat-info p {
        font-size: 0.85rem;
    }

    .feat-count {
        margin-right: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    
    .section-title.main-demo-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .feature-nav-wrapper {
        margin-top: 20px;
    }

    .feature-nav-wrapper .nav-pills .nav-link {
        padding: 18px 15px; 
        border-radius: 12px;
        border-left: 4px solid transparent; 
        margin-bottom: 12px;
    }

    .feature-nav-wrapper .nav-pills .nav-link.active {
        border-left: 4px solid var(--primary-blue) !important;
        background: #ffffff !important;
    }
}

/*------------- Customer Feedback Styling ---------------*/

.testimonial-section {
    position: relative;
}

.feedback-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 78, 146, 0.08);
    border-color: rgba(0, 78, 146, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.15;
    margin-bottom: 20px;
}

.feedback-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.feedback-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.user-info span {
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .testimonial-section {
        padding: 30px 0 !important;
    }
    
    .feedback-card {
        padding: 30px 20px; 
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .main-demo-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .feedback-text {
        font-size: 0.95rem; 
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .user-img {
        width: 45px; 
        height: 45px;
        margin-right: 12px;
    }

    .user-info h5 {
        font-size: 1rem;
    }

    .user-info span {
        font-size: 0.75rem;
    }

}

@media (hover: none) {
    .feedback-card:hover {
        transform: none;
    }
}

/*-------------------- FAQ SECTION ----------------*/

.custom-modern-faq {
    background: transparent;
}

.custom-modern-faq .collapsing {
    transition: height 0.25s ease-in-out !important; 
}

.custom-modern-faq .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.custom-modern-faq .accordion-button {
    transition: all 0.2s ease-in-out; 
}

.custom-modern-faq .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.custom-modern-faq .accordion-button {
    background: #ffffff;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 25px 30px;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 78, 146, 0.05);
}

.custom-modern-faq .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 78, 146, 0.1);
    transform: translateY(-5px); 
}

.custom-modern-faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.q-number {
    color: var(--primary-blue);
    margin-right: 15px;
    font-weight: 800;
    opacity: 0.6;
}

.custom-modern-faq .accordion-body {
    background: transparent;
    padding: 20px 30px 10px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}
.custom-modern-faq .accordion-button::after {
    display: none; 
}

.custom-modern-faq .accordion-button::before {
    content: "\f067"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    order: 2;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.custom-modern-faq .accordion-button:not(.collapsed)::before {
    content: "\f068"; 
    color: var(--primary-blue);
    transform: rotate(180deg);
}


/*--------------------FOOTER--------------------*/

.footer-section {
    /* background: #ffffff; */
     background: 
            radial-gradient(at 0% 0%, rgba(0, 78, 146, 0.12) 0%, transparent 70%),
            radial-gradient(at 100% 0%, rgba(0, 168, 232, 0.1) 0%, transparent 70%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 78, 146, 0.03) 100%);
    padding: 80px 0 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-blue);
    letter-spacing: -1px;
}

.text-primary-blue { color: var(--primary-blue); }

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-blue);
    font-size: 1.1rem;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--primary-blue);
}

/* Social Icons */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter Input */
.newsletter-box {
    display: flex;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.newsletter-box input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-box button {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: var(--dark-blue);
}

/* Divider & Bottom */
.footer-divider {
    margin: 30px 0 30px;
    border-color: rgba(0,0,0,0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .footer-bottom-links {
        margin-top: 15px;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/*----------------CONTACT SECTION----------------*/

.contact-section {
    background-color: #ffffff;
    position: relative;
}

.contact-info-card {
    padding-right: 30px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(0, 78, 146, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    /* background: #ffffff; */
    background: 
            radial-gradient(at 0% 0%, rgba(0, 78, 146, 0.12) 0%, transparent 70%),
            radial-gradient(at 100% 0%, rgba(0, 168, 232, 0.1) 0%, transparent 70%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 78, 146, 0.03) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.custom-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-info-card {
        padding-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }

    .info-list {
        display: inline-block; 
        text-align: left; 
    }

    .info-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important; 
        width: 100%;
        max-width: 280px;
    }

    .info-item .icon-circle {
        flex-shrink: 0; 
        margin-right: 15px !important;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 25px 20px !important;
    }
    
    .main-demo-title {
        font-size: 1.6rem;
    }
}
/* Modal Custom Styling */
#bookDemoModal .custom-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#bookDemoModal .custom-input:focus {
    background: #fff;
    border-color: #004e92;
    box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
    outline: none;
}

#bookDemoModal .modal-content {
    animation: modalFadeUp 0.4s ease-out;
}

@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}