:root{
  --navy: #020b18;
  --gold: #dfb15b;
  --white: #ffffff;
  --transition: all 0.3s ease;
}
/* --- Global Style Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #010610;
    overflow-x: hidden;
}


.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 560px;
   
    padding-bottom: 60px; 
}


.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: right corner;
    z-index: 1;
}



.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #010610 38%, rgba(1, 6, 16, 0.75) 55%, rgba(1, 6, 16, 0.1) 100%);
    z-index: 2;
}


.navbar {
    position: fixed;
    /* z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 5%;
    background: rgba(1, 6, 16, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(243, 186, 51, 0.2);
}


@media (max-width: 768px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(1, 6, 16, 0.97) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(243, 186, 51, 0.2) !important;
        padding: 14px 5% !important;
        z-index: 100 !important;
    }

    .mobile-nav-dropdown {
        position: fixed !important;
        top: 60px !important;
        z-index: 99 !important;
    }

    .hero-wrapper {
        padding-top: 60px !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: .05em;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.brand-name {
    display: block;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    color: #dfb15b;
}

.brand-sub {
   display: block;
    font-size: 11px;
    /* color: #dfb15b; */
    /* letter-spacing: 3px; */
    margin-top: 9px;
    color: white;
}
.logo-icon  { flex-shrink: 0; }
.brand-logo-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: #fff;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #bcc1ca;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

.nav-links a.active {
    border-bottom: 2px solid #f3ba33;
    padding-bottom: 4px;
}

.arrow-down {
    font-size: 11px;
    vertical-align: middle;
}

.btn-consultation {
    background-color: #f3ba33;
    color: #010610;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-consultation:hover {
    background-color: #d6a125;
}

/* ============================================
   HAMBURGER BUTTON STYLES
   ============================================ */
.hamburger-btn {
    display: none; /* Desktop la hide */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    transition: background 0.2s;
    z-index: 20;
}

.hamburger-btn:hover {
    background: rgba(243, 186, 51, 0.1);
}

.hbar {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #f3ba33;
    border-radius: 4px;
    transition: transform 0.35s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* X animation when open */
.hamburger-btn.open .hbar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger-btn.open .hbar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.open .hbar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   MOBILE DROPDOWN MENU STYLES
   ============================================ */
.mobile-nav-dropdown {
    display: none; /* Desktop la hide */
    position: absolute;
    top: 72px; /* navbar height ku keezhae */
    left: 0;
    right: 0;
    background: rgba(1, 6, 16, 0.97);
    border-top: 1px solid rgba(243, 186, 51, 0.2);
    border-bottom: 1px solid rgba(243, 186, 51, 0.1);
    z-index: 15;
    /* Smooth slide down animation */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-nav-dropdown.open {
    max-height: 500px;
    opacity: 1;
}

.mob-link {
    display: block;
    padding: 14px 24px;
    color: #bcc1ca;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.mob-link:hover
 {
    color: #f3ba33;
    background: rgba(243, 186, 51, 0.06);
    border-left-color: #f3ba33;
}

.mob-cta-wrap {
    padding: 16px 24px 20px 24px;
}

.mob-cta-wrap .btn-consultation {
    width: 100%;
    padding: 14px;
    font-size: 14px;
}

/* ============================================
   HERO CONTENT
   ============================================ */

.hero-content-area {
    position: relative;
    z-index: 3;
    padding: 40px 5% 70px 5%;
    max-width: 55%;
      margin-top: 100px;
      padding-left: 80px;
 
}

.breadcrumb {
    font-size: 12px;
    color: #8fa0bc;
    margin-bottom: 25px;
    word-spacing: 2px;
}

.hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
  
}

.hero-description {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-yellow-cta {
    background-color: #f3ba33;
    color: #010610;
    border: none;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.btn-yellow-cta:hover {
    background-color: #d6a125;
}

.btn-outline-cta {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-outline-cta:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}


.floating-stats-bar {
    position: absolute;
    bottom: -35px; 
    left: 5%;
    width: 90%;
    background-color: #ffffff;
    border-radius: 100px;
    padding: 20px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ic-pink { background-color: #fdf2f8; color: #db2777; }
.ic-blue { background-color: #eff6ff; color: #2563eb; }
.ic-red { background-color: #fef2f2; color: #dc2626; }
.ic-orange { background-color: #fff7ed; color: #ea580c; }
.ic-purple { background-color: #faf5ff; color: #7c3aed; }
.ic-gold { background-color: #fef3c7; color: #d97706; }

.stat-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.stat-info p {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 500;
}


@media (max-width: 1150px) {
    .hero-content-area {
        max-width: 80%;
    }
    .floating-stats-bar {
        border-radius: 20px;
        bottom: -80px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 25px;
    }
    .hero-wrapper {
        padding-bottom: 110px;
    }
}
.dropdown-menu a {
    display: block;
    padding: 14px 30px;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 16px;
}

.dropdown-menu a:hover {
    color: #f4c542;
    background-color: rgba(255,255,255,0.05);
}
.dropdown-menu a:active {
    background: rgba(255,255,255,0.1);
    color: #f4c542;
}

/* ============================================
   MOBILE RESPONSIVE - HAMBURGER SHOW/HIDE
   ============================================ */
@media (max-width: 768px) {

    /* Desktop navbar links & consultation button hide */
    .nav-links {
        display: none !important;
      
    }
    .desktop-only {
        display: none !important;
    }

    /* Hamburger button show */
    .hamburger-btn {
        display: flex !important;
    }

    /* Mobile dropdown show (controlled by JS open class) */
    .mobile-nav-dropdown {
        display: block !important;
           position: fixed;
    top: 80px; /* navbar height-ku match pannu */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);

    overflow-y: auto;      /* IMPORTANT */
    -webkit-overflow-scrolling: touch;

    z-index: 9999;
    }

    /* Navbar layout */
    .navbar {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 16px 5% !important;
        
       
    }

    .hero-content-area {
        max-width: 100%;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .floating-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .floating-stats-bar {
        grid-template-columns: 1fr;
    }
}

/* 2nd section scanner */
.research-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.research-container {
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    gap: 30px;
}

.research-image-box {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.research-image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.research-text-content {
    flex: 1.5;
    min-width: 280px;
}

.research-text-content .sub-title {
    font-size: 13px;
    font-weight: 700;
    color: #0046c7;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.research-text-content .main-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 15px 0;
}

.research-text-content .title-line {
    width: 45px;
    height: 3px;
    background-color: #0046c7;
    margin-bottom: 20px;
}

.research-text-content .description {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.research-cards-grid {
    flex: 3.5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.research-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.research-card h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

.card-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green { color: #10b981; }
.icon-crimson { color: #dc2626; }
.icon-orange { color: #f97316; }
.icon-purple { color: #8b5cf6; }
.icon-blue { color: #2563eb; }
.icon-red { color: #b91c1c; }
.icon-navy { color: #1d4ed8; }
.icon-darkgreen { color: #15803d; }

@media (max-width: 1024px) {
    .research-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .research-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .research-image-box {
        max-width: 100%;
    }
}

/* Section 3 */
.research-process-dark-section {
    background: linear-gradient(135deg, #020818 0%, #03112b 100%);
    padding: 60px 4% 60px 5%;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
}

.process-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.process-section-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.process-section-title::before,
.process-section-title::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
}

.process-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.timeline-steps-container {
    flex: 2.3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 95px;
}

.glow-circle-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(2, 8, 24, 0.6);
    border: 2.5px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    position: relative;
}

.circle-blue { border-color: #0072ff; color: #00c6ff; box-shadow: 0 0 15px rgba(0, 114, 255, 0.4), inset 0 0 10px rgba(0, 114, 255, 0.2); }
.circle-green { border-color: #00b0ff; color: #00e5ff; box-shadow: 0 0 15px rgba(0, 176, 255, 0.4), inset 0 0 10px rgba(0, 176, 255, 0.2); }
.circle-orange { border-color: #ff7600; color: #ff9d00; box-shadow: 0 0 15px rgba(255, 118, 0, 0.4), inset 0 0 10px rgba(255, 118, 0, 0.2); }
.circle-purple { border-color: #bd00ff; color: #d946ef; box-shadow: 0 0 15px rgba(189, 0, 255, 0.4), inset 0 0 10px rgba(189, 0, 255, 0.2); }
.circle-pink { border-color: #e10050; color: #ff4081; box-shadow: 0 0 15px rgba(225, 0, 80, 0.4), inset 0 0 10px rgba(225, 0, 80, 0.2); }
.circle-cyan { border-color: #00e5ff; color: #26c6da; box-shadow: 0 0 15px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.2); }

.process-step-node h4 {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}

.timeline-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    margin-bottom: 34px;
}

@media (max-width: 1100px) {
    .process-content-flex { flex-direction: column; gap: 40px; }
    .timeline-steps-container { width: 100%; }
}

@media (max-width: 768px) {
    .timeline-steps-container { flex-direction: column; gap: 25px; }
    .timeline-arrow { transform: rotate(90deg); margin-bottom: 0; }
}

/* Section 4 */
.research-solutions-section {
    background-color: #ffffff;
    padding: 60px 4%;
    width: 100%;
}

.solutions-title-container {
    text-align: center;
    margin-bottom: 40px;
}

.solutions-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #031433;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -0.2px;
}

.solutions-main-title::before,
.solutions-main-title::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 3px;
    background: linear-gradient(to right, #2563eb, #00c6ff);
    border-radius: 2px;
}

.solutions-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(3, 20, 51, 0.08);
}

.card-image-box {
    width: 100%;
    height: 165px;
    background-color: #f8fafc;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-text-content {
    padding: 20px 16px 25px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-text-content h3 {
    color: #031433;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.1px;
}

.card-text-content p {
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1250px) {
    .solutions-cards-wrapper { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .solutions-cards-wrapper { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .solutions-main-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .solutions-cards-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .card-image-box { height: 180px; }
}

/* Section 5 */
.results-banner-dark-section {
    background: linear-gradient(95deg, #020b22 0%, #03163b 60%, #052154 100%);
    padding: 40px 30px;
    border-radius: 24px;
    margin: 40px 5%;
    width: 90%;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(2, 11, 34, 0.25);
}

.banner-inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.banner-left-content {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.banner-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.banner-stats-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.metric-outline-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 145px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.metric-outline-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.met-gold { color: #f3ba33; }
.met-green { color: #22c55e; }
.met-blue { color: #3b82f6; }
.met-purple { color: #a855f7; }
.met-cyan { color: #06b6d4; }

.metric-info h3 {
    color: #f3ba33;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3px;
}

.metric-info p {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.banner-right-media {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    min-width: 280px;
}

.media-preview-wrapper {
    width: 100%;
    height: 100%;
    min-height: 130px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.media-preview-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .banner-inner-container { flex-direction: column; align-items: flex-start; }
    .banner-right-media { width: 100%; height: 200px; }
}

@media (max-width: 650px) {
    .results-banner-dark-section { padding: 30px 20px; margin: 25px 4%; width: 92%; }
    .banner-stats-row { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .banner-stats-row { grid-template-columns: 1fr; }
}

/* Section 6 */
.outcomes-split-section {
    background-color: #ffffff;
    padding: 50px 5%;
    width: 100%;
}

.split-layout-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.split-info-card {
    border-radius: 24px;
    padding: 45px 40px;
    flex: 1;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.01);
}

.card-light-blue {
    background: linear-gradient(180deg, #f0f5fa 0%, #edf3f9 100%);
    border: 1px solid #e1eaf3;
}

.card-gradient-soft {
    background: linear-gradient(135deg, #f5f9fc 0%, #f0f4f9 100%);
    border: 1px solid #e2eaf2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.split-card-title {
    color: #0c1e43;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.2px;
}

.features-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.check-icon-wrapper {
    color: #22c55e;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-text {
    color: #1e293b;
    font-size: 15px;
    font-weight: 500;
}

.outcomes-text-side {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.outcomes-badge-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.outcomes-badge-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.outcome-badge-icon {
    width: 34px;
    height: 34px;
    background-color: #ea580c;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0px 3px 8px rgba(234, 88, 12, 0.25);
}

.outcome-bold-text {
    color: #0c1e43;
    font-size: 15.5px;
    font-weight: 700;
}

.outcomes-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-end;
    min-width: 200px;
}

.outcomes-image-side img {
    max-width: 115%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

@media (max-width: 1100px) {
    .split-layout-container { flex-direction: column; }
    .split-info-card { width: 100%; }
}

@media (max-width: 600px) {
    .card-gradient-soft { flex-direction: column; align-items: flex-start; gap: 30px; padding-bottom: 0; }
    .outcomes-image-side { width: 100%; justify-content: center; }
    .outcomes-image-side img { max-width: 80%; }
    .split-info-card { padding: 35px 25px; }
}

/* Last Section */
.bottom-cta-premium-banner {
    background: linear-gradient(95deg, #010c27 0%, #031c52 50%, #02123a 100%);
    padding: 40px 45px;
    border-radius: 16px;
    margin: 40px 5%;
    width: 90%;
    box-shadow: 0px 10px 30px rgba(1, 12, 39, 0.2);
    overflow: hidden;
}

.cta-inner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    width: 100%;
}

.cta-left-text-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-heading {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.cta-subtext {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 320px;
}

.cta-center-trust-pillars {
    flex: 1.8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.trust-pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    min-width: 90px;
}

.pillar-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bg-blue-trans { background-color: rgba(37, 99, 235, 0.2); color: #60a5fa; }
.bg-green-trans { background-color: rgba(22, 163, 74, 0.2); color: #4ade80; }
.bg-navy-trans { background-color: rgba(30, 58, 138, 0.4); color: #93c5fd; }
.bg-lightblue-trans { background-color: rgba(14, 165, 233, 0.2); color: #38bdf8; }

.trust-pillar-item p {
    color: #e2e8f0;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.3;
}

.pillar-vertical-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-right-action-block {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 250px;
}

.cta-yellow-schedule-btn {
    background: linear-gradient(180deg, #ffd466 0%, #f3ba33 100%);
    color: #010c27;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0px 4px 15px rgba(243, 186, 51, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-yellow-schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(243, 186, 51, 0.3);
}

.cta-yellow-schedule-btn i { font-size: 15px; }

.cta-phone-call-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13.5px;
    font-weight: 500;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease;
}

.phone-link:hover { color: #ffd466; }

@media (max-width: 1200px) {
    .cta-inner-flex { flex-direction: column; align-items: center; text-align: center; gap: 35px; }
    .cta-left-text-block { align-items: center; }
    .cta-subtext { max-width: 100%; }
    .cta-center-trust-pillars { width: 100%; max-width: 600px; }
}

@media (max-width: 650px) {
    .bottom-cta-premium-banner { padding: 35px 20px; margin: 30px 4%; width: 92%; }
    .cta-center-trust-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px 10px; }
    .pillar-vertical-line { display: none; }
    .cta-heading { font-size: 21px; }
}

/* ============================================
   GLOBAL RESPONSIVE OVERRIDES
   ============================================ */
@media screen and (max-width: 768px) {

    .research-container,
    .process-content-flex,
    .split-layout-container,
    .banner-inner-container,
    .cta-inner-flex {
        flex-direction: column !important;
    }

    .timeline-steps-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
    }

    .timeline-arrow {
        transform: rotate(90deg) !important;
        margin: 0 !important;
    }

    .process-step-node {
        width: 100% !important;
        max-width: 280px !important;
    }

       .hero-wrapper{
        min-height:auto !important;
    }

    .hero-bg-img{
        position:absolute !important;
        width:100% !important;
        height:100% !important;
        object-fit:cover !important;
        opacity:0.5;
        display:block !important;
    }

    .hero-gradient-overlay{
        display:block !important;
        background:rgba(1,6,16,0.75);
    }

    .hero-content-area{
        position:relative;
        z-index:10;
        max-width:100%;
        text-align:center;
    }
  

    .hero-title {
        font-size: 34px !important;
        line-height: 1.3 !important;
    }

    .research-cards-grid,
    .solutions-cards-wrapper {
        grid-template-columns: 1fr !important;
    }

    .floating-stats-bar {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        border-radius: 20px !important;
        margin-top: 20px !important;
    }
}
@media screen and (max-width: 768px) {
    .research-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .research-image-box {
        width: 100%;
        height: auto; /* Fixed height-ah remove pannitu auto aakidunga */
        max-width: 400px; /* Mobile-la image romba perusa theriyaama iruka oru limit */
        margin: 0 auto; /* Image-ah horizontal-ah center panna */
    }

    .research-image-box img {
        width: 100%;
        height: 350px; /* Aspect ratio maaraama full image-um theriyum */
        object-fit: cover;
        border-radius: 12px; 
        object-position: center 60%;
    }

    .research-text-content {
        text-align: center;
    }

    .research-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .floating-stats-bar {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        width: calc(100% - 30px) !important;
        margin: 20px auto !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        border-radius: 20px !important;
        gap: 20px !important;
    }

    .stat-item {
        width: 100% !important;
    }

    .hero-wrapper {
        padding-bottom: 30px !important;
    }
}



/* --- Common Dropdown Styles --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
}

.dropdown-toggle .arrow-down {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: 4px;
}

.dropdown.active .arrow-down {
    transform: rotate(180deg); /* Click panna arrow mela thிரும்பும் */
}

.dropdown-menu {
    display: none; /* Default-ah hide aagi irukum */
    z-index: 2000;
}

.dropdown-menu.show {
    display: block; /* JS moolama open aagum pothu */
}

/* --- Desktop Specific Design --- */
@media screen and (min-width: 769px) {
    /* .desktop-dropdown .dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        background-color: #ffffff; 
        min-width: 280px;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
        border-radius: 6px;
        padding: 10px 0;
        margin-top: 15px;
    } */
.desktop-dropdown .dropdown-menu {
        display: none; /* Clear-ah hide panni veikurom */
        position: absolute;
        left: 0;
        top: 100%; /* Services ku keela thaan open aagum */
        background-color: #0d1117; /* Unga website template-ku yetha dark background color */
        border: 1px solid #21262d; /* Chinna border lines brightness kaaga */
        min-width: 280px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5); /* Shadow proper shadow-ah thara */
        border-radius: 6px;
        padding: 10px 0;
        margin-top: 12px;
        text-align: left;
    }
    .desktop-dropdown .dropdown-menu.show {
        display: block !important;
    }
    /* .desktop-dropdown .dropdown-menu a {
        color: #333333 !important; 
        padding: 12px 20px;
        text-decoration: none;
        display: block;
        font-size: 14px;
        text-align: left;
        transition: background 0.2s ease, color 0.2s ease;
    } */
     .desktop-dropdown .dropdown-menu a {
        color: #ffffff !important;
        padding: 12px 20px;
        text-decoration: none;
        display: block !important; /* Pakkathu pakkathu la varama line by line varum */
        font-size: 14px;
        white-space: nowrap; /* Single line text collapse aagama eruka */
        transition: background 0.2s ease, color 0.2s ease;
    }

    /* .desktop-dropdown .dropdown-menu a:hover {
        background-color: #f8f9fa; 
        color: #000000 !important; 
    } */
     .desktop-dropdown .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #ffcc00 !important; /* Unga theme text-highlight colour */
    }
}

/* --- Mobile Specific Design --- */
@media screen and (max-width: 768px) {
    .mobile-dropdown {
        width: 100%;
    }

    .mobile-dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-dropdown .dropdown-menu {
        display: none;
        position: relative;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 5px 0;
        margin-top: 5px;
        border-radius: 4px;
    }

    .mobile-dropdown .dropdown-menu.show {
        display: block !important;
    }

    .mobile-dropdown .dropdown-menu a {
        color: #ffffff !important;
        padding: 12px 20px 12px 30px !important;
        font-size: 15px;
        display: block !important;
    }
}

/* --- Desktop Hidden View & Force Override --- */
@media screen and (min-width: 769px) {
    /* Main Layout settings */
    .custom-dropdown {
        position: relative !important;
        display: inline-block !important;
        vertical-align: middle;
    }

    /* Target the dropdown wrapper list */
    .custom-menu {
        display: none !important; /* Touch/Click panra varai absolute-ah hide aagi irukum */
        position: absolute !important;
        left: 0 !important;
        top: 100% !important;
        background-color: #0b0f17 !important; /* Full Dark Theme Color */
        min-width: 280px !important;
        width: max-content !important;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.6) !important;
        border: 1px solid #1f242c !important;
        border-radius: 6px !important;
        padding: 8px 0 !important;
        margin-top: 10px !important;
        text-align: left !important;
        z-index: 99999 !important; /* Ethuku pinnaliyum maraiyama munnadi varathuku */
    }

    /* JavaScript moolama trigger aagum pothu display pannum */
    .custom-menu.show {
        display: block !important;
    }

    /* Inside Dropdown Links formatting (image_a7ffba.jpg la vantha inline error ah break panrathu) */
    .custom-menu a {
        color: #ffffff !important;
        padding: 12px 20px !important;
        text-decoration: none !important;
        display: block !important; /* Pakkathu pakkathu la pogama structural-ah line by line varum */
        font-size: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: none !important;
        transition: background 0.2s ease-in-out !important;
    }

    /* Mouse link mela pogum pothu bright highlight code */
    .custom-menu a:hover {
        background-color: rgba(255, 255, 255, 0.08) !important;
        color: #ffcc00 !important; /* Yellow theme text focus */
    }
}

/* --- Mobile Menu Styles --- */
@media screen and (max-width: 768px) {
    .custom-dropdown {
        display: block !important;
        width: 100% !important;
    }
    .custom-menu {
        display: none !important;
        background-color: rgba(255, 255, 255, 0.04) !important;
        padding: 5px 0 !important;
        margin-top: 5px !important;
    }
    .custom-menu.show {
        display: block !important;
    }
    .custom-menu a {
        display: block !important;
        color: #ffffff !important;
        padding: 10px 20px 10px 30px !important;
    }
}

/* --- Desktop Dropdown Hover State Trigger --- */
@media screen and (min-width: 769px) {
    /* Click panna display variable-ah show status-ku thukuroam */
    .custom-menu.show {
        display: block !important;
    }
    
    .custom-menu a:hover {
        background-color: rgba(255, 255, 255, 0.08) !important;
        color: #ffcc00 !important; /* Touch/Hover panra apo text gold ah maarum */
    }
}

/* --- Mobile Dropdown Menu Design Fix --- */
@media screen and (max-width: 768px) {
    /* Hide the menu by default */
    .mobile-custom-menu {
        display: none; 
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05) !important; /* Light contrast inside dark bg */
        padding: 5px 0 !important;
        margin-top: 5px !important;
        border-radius: 4px !important;
    }

    /* Show class trigger via JS */
    .mobile-custom-menu.show-mobile-menu {
        display: block !important;
    }

    /* Strict Vertical Block Layout for Links */
    .mobile-custom-menu a {
        display: block !important; /* Row list-ah line by line block-ah mathுது */
        width: 100% !important;
        color: #ffffff !important; /* Text white color fix */
        padding: 12px 20px 12px 30px !important; /* Neat alignment padding */
        font-size: 14px !important;
        text-decoration: none !important;
        text-align: left !important;
        box-sizing: border-box !important;
        background: none !important;
        clear: both !important;
        float: none !important;
    }

    /* Active dynamic item color highlight */
    .mobile-custom-menu a:hover, 
    .mobile-custom-menu a:active {
        color: #ffcc00 !important; /* Yellow theme color toggle */
        background-color: rgba(255, 255, 255, 0.08) !important;
    }
}
@media screen and (max-width: 768px) {

    .mobile-custom-menu {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .mobile-custom-menu a {
        display: block !important;
        width: 100% !important;
        padding: 12px 25px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        white-space: normal !important;
        word-break: break-word !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-custom-menu a:last-child {
        border-bottom: none;
    }
}


.main-footer-wrapper {
    width: 100%;
    background-color: #020b18; /* Ultra deep dark blue background theme */
    color: #ffffff;
    padding: 0 0 20px 0;
    margin-top: 40px;
}

/* Call To Action Upper Banner */
.cta-banner {
    background-color: #031435;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.cta-text p {
    font-size: 13px;
    color: #a2b3cb;
}

/* Premium Gold Button */
.btn-cta-gold {
    background-color: #dfb15b;
    color: #030f26;
    border: none;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.btn-cta-gold:hover {
    background-color: #c99d4b;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-item i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.fc-item span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}


/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .hero-container{
        flex-direction: column;
        gap: 25px;
        padding: 30px 5%;
        text-align: center;
    }

    .hero-left,
    .hero-right{
        width: 100%;
    }

    .hero-left h1{
        font-size: 30px;
        line-height: 1.3;
    }

    .description{
        font-size: 14px;
        max-width: 100%;
    }

    .side-img{
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* Features */
    .features-row{
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-item{
        white-space: normal;
    }

    /* Main Layout */
    .main-layout-container{
        display: block;
        padding: 30px 5%;
    }

    .content-area,
    .sidebar-panel{
        display: block;
        width: 100%;
        padding-right: 0;
    }

    /* Overview */
    .overview-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-heading{
        font-size: 26px;
    }

    .sub-heading{
        font-size: 22px;
    }

    .section-img{
        width: 100%;
        max-width: 100%;
    }

    /* Process */
    .process-flow{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .process-arrow{
        display: none;
    }

    /* Benefits */
    .benefits-container{
        flex-direction: column;
    }

    .impact-card{
        padding: 20px;
    }

    .stats-grid{
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-banner{
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    
}

/* Dropdown Main Container */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu (Desktop View) */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #ffffff; /* Unga website theme-ku yetha maathiri mathikonga */
    min-width: 260px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 4px;
    margin-top: 10px;
    padding: 10px 0;
}

/* Dropdown Links */
.dropdown-menu a {
    color: #333333 !important; /* Text color */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #c9a84c; /* gold highlight */
    color: #0a1628;            /* dark text */
    padding-left: 20px;        /* subtle indent effect */
    transition: all 0.2s ease;
}

/* Class to show dropdown via JS */
.dropdown-menu.show {
    display: block;
}

.dropdown.active .arrow {
    transform: rotate(180deg); /* Click panna arrow mela paarkum */
}

@media (max-width: 992px) {
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        color: #cccccc !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        width: 100%;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
    }

    .dropdown-menu a {
        padding: 12px 0 12px 20px !important;
        font-size: 14px !important;
        color: #a2b3cb !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    .dropdown-menu a:hover {
        background-color: rgba(201, 168, 76, 0.15) !important;
        color: #dfb15b !important;
        padding-left: 28px !important;
    }
    

    /* nav-links active max-height போதும்னு increase பண்ணு */
    .nav-links.active {
        max-height: 700px !important;
    }
}

footer {
  background: var(--navy);
  padding: 52px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.8fr 1.6fr;
  gap: 44px;
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 2.0;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.10);
  transform: translateY(-2px);
}

/* Footer columns */
.footer-col h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  line-height: 1.4;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* Contact column */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-item i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.fc-item span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}


/* Footer bottom bar */
.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* Divider between Privacy Policy & Terms */
.footer-bottom-links a:first-child::after {
  content: '|';
  margin-left: 24px;
  color: rgba(255,255,255,0.20);
}
.footer-col ul li a,
.footer-bottom-links a {
    text-decoration: none;
}

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-brand,
  .footer-col {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }

  .fc-item {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-links a:first-child::after {
    display: none;
  }
}
