* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

.html {
    scroll-behavior:smooth;
}
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff; /* prevents transparency glitch */
}

/* Top Bar */
.top-bar {
    position: relative;
    z-index: 40;
    background: #e5e5e5;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
       
}

.top-bar .icon{
    display:none;
}

.top-bar a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: #4e4949;
    margin-left: 20px;
    font-weight: bold;
    
}


.top-bar a::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.4s ease;
}


.top-bar a:hover::after {
    width: 100%;
}

/* Header */
.header {
    position: relative;
    z-index: 30;
    height: 80px;                 /* adjust as needed */
    background: linear-gradient(to right, #081669,hsl(226, 52%, 18%));
    display: flex;
    justify-content: space-between;       /* centers logo horizontally */
    align-items: center;           /* centers everything vertically */
    padding: 0 40px;             /* horizontal padding */
}

.seo-title{
    position:absolute;
    left:-9999px;
}

/* Home button container */
.home-btn-container {
    display: flex;
    align-items: center;

}

/* Optional sizing */
.home-btn {
    height: 30px;
    cursor: pointer;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.home-btn-container:hover .home-btn {
    transform: scale(1.08);
}
 
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);   
}

.logo img {
    height: 75px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

/* ================= NAVIGATION ================= */

.nav {
    display: flex;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 5px 30px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: visible;
}

/* ===== LEFT SCROLLING CONTENT ===== */

.nav-scroll {
    width: 65%;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    padding-left: 100%;
    animation: navScroll 20s linear infinite;
    font-size: 13px;
    font-weight: bold;
    color: #081669;
}

@keyframes navScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-70%);
    }
}

/* ===== RIGHT NAV MENU ===== */

.nav-menu {
    display: flex;
    position: absolute;
    padding: 850px;
    gap: 25px;

}

.menu-toggle{
    display: none;
}


/* Nav Links */
.nav-menu a {
    position: relative;
    color: #081669;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Gold Underline Animation */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: #081669;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Active Page Highlight */
.nav-menu a.active {
    color: #d4af37;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Button */
.btn {
    position: relative;
    z-index: 1;
    margin-left: auto;
    font-size: 11px;
    background: gold;
    border: 1px #081669 solid;
    padding: 2px 12px;
    border-radius: 15px;
    font-weight: bold;
    width: 120px;
    cursor: pointer;
    height: 20px;
    transition: all 0.3s ease;
}

.btn-icon{
    display: none;
}

.btn:hover {
    background: #ffdf00;
    transform: scale(1.06);
}



/* ===== FIXED SERVICES DROPDOWN ===== */

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Dropdown box */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #e5e5e5;
    width: 200px;   /* Increased width for long titles */
    max-height: 320px;  /* Controls dropdown height */
    overflow-y: auto;   /* Enables vertical scroll */
    overflow-x: hidden;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

/* Links */
.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    color: #4e4949;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #081669;
}

/* IMPORTANT: Keep open while hovering dropdown */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    display: block;
}


/* ===============================
   CONSULTATION MODAL
================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    padding:30px 15px;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 550px;
    margin: 6% auto;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    animation: fadeIn 0.4s ease;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #081669;
}

.modal-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* Form Inputs */
.modal-content input,
.modal-content textarea,
.modal-content select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #081669;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #d4af37;
    color: black;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-buttons {
    display: flex;
    gap: 15px;
}

.clear-btn {
    width: 50%;
    padding: 12px;
    background: #ccc;
    color: #333;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.clear-btn:hover {
    background: #999;
    color: white;
}

.submit-btn {
    width: 50%;
}

/* ===== Luxury Slider ===== */

/* ===============================
   ABOUT SECTION (LEFT RIGHT SPLIT)
================================ */

.about-section {
    padding: 65px 8%;
    background: #ffffff;
}

/* Row Layout */
.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}

/* Reverse for second row */
.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #081669;
}

.about-text h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #d4af37;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Image side */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ===============================
   WHY SECTION SPLIT (IMAGE LEFT)
================================ */

.why-section {
    padding: 60px 6%;   /* reduced from 100px */
    background: linear-gradient(to right, #f8f9fc, #ffffff);
    margin-bottom: 40px;   /* reduce gap below */
}


/* Container */
.why-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* LEFT IMAGE */
.why-image {
    flex: 1;
    margin-left: -100px;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* RIGHT CONTENT */
.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #081669;
}

/* Grid inside right column */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px; 
    margin-bottom: 50px;
}

.why-item {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-icon {
    font-size: 20px;
    color: #d4af37;
    min-width: 25px;
}

.why-item:hover .why-icon {
    transform: scale(1.2);
    transition: 0.3s ease;
}


.why-tagline {
    padding: 20px 25px;
    font-size: 17px;
    font-style: italic;
    color: #555;
}



/* =========================
   HERO SECTION WITH VIDEO
========================= */

.lux-slider {
    position: relative;
    height: 90vh;              /* Hero height */
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
    overflow: hidden;
}

/* ===== Background Video ===== */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ===== Dark Overlay for Readability ===== */

/* =========================
   HERO SECTION WITH VIDEO
========================= */

.lux-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
}

/* ===== Background Video ===== */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ===== Overlay ===== */

.lux-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #08166999; /* semi-transparent dark blue */
    z-index: 1;
}

/* =========================
   SLIDES CONTAINER
========================= */

.slides {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
}

/* Each Slide */

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* =========================
   TYPOGRAPHY
========================= */

.slide h4 {
    letter-spacing: 5px;
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 20px;
}

.slide h1 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
}

.slide p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 40px;
}

/* =========================
   BUTTON
========================= */

.lux-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    color: #d4af37;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lux-btn:hover {
    background: #d4af37;
    color: #000;
}

/* =========================
   DOTS
========================= */

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 8%;
    z-index: 2;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #d4af37;
}



/* ===== Controlled Video Banner Section ===== */

.video-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
}

/* Video fills only this section */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #08166999; /* semi-transparent dark blue */
    z-index: 2;
}

/* Text content */
.video-content {
    position: relative;
    z-index: 3;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
    padding: 0 20px;
}

.video-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.video-content p {
    max-width: 700px;
    font-size: 18px;
    margin-bottom: 30px;
}

.video-btn {
    padding: 12px 30px;
    background: gold;
    color: #081669;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s ease;
}

.video-btn:hover {
    background: white;
    transform: translateY(-3px);
}



.blog-section {
    padding: 40px 300px;
    background: #e5e5e5;
    text-align: center; /* centers title + button */
    text-wrap: inherit;
}

/* BLOG Title */
.blog-section h2 {
    font-size: 15px;
    background-color: #ffffffad;
    border-radius: 7px;
    padding: 5px 15px;
    color: #333;
    display: inline-block;
    margin-bottom: 25px;
    
}

/* Paragraph */
.blog-section p {
    text-align: center;            /* LEFT ALIGN TEXT */
    font-size: 18px;
    color: #555;
    width: 100%;                  /* centered content block */
    margin: 0 auto 30px auto;    /* centers paragraph container */
    line-height: 1.6;
    border: 2px solid #0000001a;
    padding: 10px;
}

/* Read More Button */
.read-more-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #081669;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    background-color: white;
    color: #081669;
    transform: translateY(-2px);
}



.strategy-cta {
    padding: 100px 8%;
    background: linear-gradient(to right, #081669, hsl(226, 52%, 18%));
    text-align: center;
    color: white;
   
}

.strategy-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.just {
    font-size: 24px;
    color:goldenrod;
    margin-top: 10px;
}
.strategy-cta p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}


.strategy-btn {
    padding: 14px 35px;
    background: gold;
    color: #081669;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s ease;
}

.strategy-btn:hover {
    background: white;
}

/* ===============================
   FOOTER SECTION
================================ */

footer {
    background: linear-gradient(to right, #081669, hsl(226, 52%, 18%));
    color: #ffffff;
    padding: 60px 8% 30px;
    font-size: 14px;
}

/* Footer Container */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Each Column */
.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Section Titles */
.footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

/* About Text */
.footer-section p {
    line-height: 1.7;
    color: #dddddd;
}

/* Quick Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #dddddd;
    transition: 0.3s ease;
}

/* Hover Effect */
.footer-section ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Contact Info */
.footer-section.contact p {
    margin-bottom: 10px;
}

/* Bottom Copyright Bar */
footer::after {
    content: "© 2026 Rayinx Research and Advisory. All Rights Reserved.";
    display: block;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: #cccccc;
}



/* ================= INNOVATION ABOUT SECTION UPDATE ================= */

/* Full width introduction */
.about-section .about-row:first-child .about-text {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

/* Alternating layout spacing */
.about-section .about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 60px 0;
}

/* Text area */
.about-section .about-text {
    flex: 1;
}

.about-section .about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-section .about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Image area */
.about-section .about-image {
    flex: 1;
    text-align: center;
}

.about-section .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Subtle hover effect */
.about-section .about-image img:hover {
    transform: scale(1.01);
}

/* Structured approach list spacing */
.about-section .about-text strong {
    color:  hsl(226, 52%, 18%);
}


/* ================= BUSINESS DROPDOWN FIX ================= */

body.business-page .business-dropdown {
    position: relative;
    ;
}

body.business-page .business-dropdown .dropdown-content {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 300px !important;
    background: #f2f2f2 !important;
    display: none !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    overflow: visible !important;
    z-index: 99999 !important;
}

body.business-page .business-dropdown:hover .dropdown-content {
    display: block !important;
}

body.business-page .dropdown-submenu {
    position: relative !important;
}

body.business-page .dropdown-submenu .submenu {
    position: absolute !important;
    top: 0 !important;
    right: 300px !important;   /* move to left side */
    width: 280px !important;
    background: #ffffff !important;
    display: none !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

body.business-page .dropdown-submenu:hover .submenu {
    display: block !important;
    background-color: #ccc !important;
}

body.business-page .dropdown-content a {
    display: block !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    color: #222 !important;
    font-size: 14px !important;
}

body.business-page .submenu a {
    font-size: 13px !important;
    color: #444 !important;
}


/* Top Bar */
body.exim-page .top-bar {
    background: #081669;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-size: 12px;
   
}

body.exim-page .top-bar a {
    position: relative;
    color: #e5e5e5;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.7s ease;
}

/* Gold underline */
body.exim-page .top-bar a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transform: translateX(-50%);
    transition: width 0.7s ease;
}

body.exim-page .top-bar a:hover::after {
    width: 100%;
}

/* Header */
body.exim-page .header {
    position: relative;
    height: 80px;                 /* adjust as needed */
    background: linear-gradient(to right, #f5f5f5,hsl(220, 88%, 90%));
    display: flex;
    justify-content: space-between;       /* centers logo horizontally */
    align-items: center;           /* centers everything vertically */
                 /* horizontal padding */
}

/* Home button container */
body.exim-page .home-btn-container {
    display: flex;
    align-items: center;

}

/* Optional sizing */
body.exim-page .home-btn {
    height: 30px;
    left: 10%;
    cursor: pointer;
    filter: brightness(0);
    transition: transform 0.3s ease;
}

body.exim-page .home-btn-container:hover .home-btn {
    transform: scale(1.08);
}

body.exim-page .header a {
    color: #081669;
    padding-right: 150px;
    font-weight:bolder;
    text-decoration: none;
    font-size: 25px;
    letter-spacing: 2px;
    
}

body.exim-page .header .h4 {
    color: #434968;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    right: 14.5%;
    margin-top: 5px;
    position: absolute;
}

body.exim-page .logo {
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);   
}

body.exim-page .logo img {
    height: 75px;
    transition: transform 0.5s ease, filter 0.5s ease;
}


body.exim-page .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}


/* ================= BUSINESS DROPDOWN FIX ================= */

body.exim-page .business-dropdown {
    position: relative;
    ;
}

body.exim-page .business-dropdown .dropdown-content {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 300px !important;
    background: #f2f2f2 !important;
    display: none !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    overflow: visible !important;
    z-index: 99999 !important;
}

body.exim-page .business-dropdown:hover .dropdown-content {
    display: block !important;
}

body.exim-page .dropdown-submenu {
    position: relative !important;
}

body.exim-page .dropdown-submenu .submenu {
    position: absolute !important;
    top: 0 !important;
    right: 300px !important;   /* move to left side */
    width: 280px !important;
    background: #ffffff !important;
    display: none !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

body.exim-page .dropdown-submenu:hover .submenu {
    display: block !important;
    background-color: #ccc !important;
}

body.exim-page .dropdown-content a {
    display: block !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    color: #222 !important;
    font-size: 14px !important;
}

body.exim-page .submenu a {
    font-size: 13px !important;
    color: #444 !important;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

:root {
    --navy: #0B3D91;
    --navy-dark: #072a63;
}

#top-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f4f6f9;
    padding: 5px 0;
}

#top-bar .text {
    display: none;
}

#top-bar .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: var(--navy);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#top-bar a:hover .icon {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(11,61,145,0.25);
}

}

/* ================= MOBILE NAV ================= */

@media (max-width: 992px) {

.nav {
    position: relative;
}

.nav-menu {
    position: absolute;
    top: 65px;
    left: 15px;
    width: 100px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li{
    position: relative;
}

.nav-menu a {
    font-weight: 600;
    color: #0b1f4d;
    padding: 8px 0;
    display: block;
}

.menu-toggle{
    display: block;
}

.nav-scroll {
    width:70%;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    padding-left: 90%;
    animation: navScroll 20s linear infinite;
    font-size: 13px;
    font-weight: bold;
    color: #081669;
}


/* ===== SERVICES DROPDOWN (OUTSIDE) ===== */

.dropdown-content {
    display: none;
    position: absolute;
    left: 150px;
    top: 0;
    width: 180px;
    background: #f4f6fa;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: #333;
}


/* ===== CONSULT BUTTON FIX ===== */

.consult-btn {
    width: 10%;
    margin-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50px;
}

.btn-text {
    display: none;
}

.btn-icon {
    display: inline-block;
    font-size: 16px;
    padding: 5px;
}

.blog-section{
padding: 15px 12px;
}

.blog-section h2{
font-size: 14px;
margin-bottom: 15px;
}

.blog-section p{
font-size: 15px;
line-height: 1.5;
padding: 8px;
margin-bottom: 20px;
}

.read-more-link{
padding: 7px 16px;
font-size: 14px;
}

}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

:root {
    --navy: #0B3D91;
    --navy-dark: #072a63;
}

#top-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f4f6f9;
    padding: 5px 0;
}

#top-bar .text {
    display: none;
}

#top-bar .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: var(--navy);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#top-bar a:hover .icon {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(11,61,145,0.25);
}

}

/* =================BUSINESS MOBILE NAV ================= */

/* ===============================
   BUSINESS PAGE MOBILE STYLES
================================ */

@media (max-width: 992px) {

.business-page .nav {
    position: relative;
}

.business-page .nav-menu {
    position: absolute;
    top: 65px;
    left: 15px;
    width: 100px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.business-page .nav-menu.active {
    display: flex;
}

.business-page .nav-menu li{
    position: relative;
}

.business-page .nav-menu a {
    font-weight: 600;
    color: #0b1f4d;
    padding: 8px 0;
    display: block;
}

.business-page .menu-toggle{
    display: block;
}

.business-page .nav-scroll {
    width:70%;
    overflow: hidden;
    white-space: nowrap;
}

.business-page .scroll-content {
    display: inline-block;
    padding-left: 90%;
    animation: navScroll 20s linear infinite;
    font-size: 13px;
    font-weight: bold;
    color: #081669;
}
}
