:root {
    --primary: #1B358F;
    --secondary: #555555;
}

body {
    background-color: white;
}

section {
    background-color: white;
}

.container {
    max-width: 1340px;
}

.nav-logo {
    width: 220px;
}

.nav-link {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.nav-link a {
    font-size: 16px;
    text-decoration: none;
    color: var(--secondary);
    border-right: 1px solid #E6E6E6;
    padding-right: 15px;
}

.nav-link:hover {
    text-decoration: underline;
    transition: all 0.4s ease;
}

.nav-link a:last-child {
    border-right: 0;
}

.btn-primary {
    background-color: var(--primary);
    padding: 10px 25px;
    border-radius: 8px;
    color: white;
    outline: 0;
    border: 1px solid var(--primary);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary);
    transition: all 0.4s ease;
}

.section-home {
    padding-block: 70px;
    width: 100%;
    /* position: sticky; */
    /* top: 61px; */
    /* z-index: -1; */
}

.header {
    display: grid;
    grid-template-columns: 3fr 2fr;
}

h1 {
    font-size: 72px;
    font-weight: bold;
}

h2 {
    color: #191F1C;
    font-size: 52px;
    font-weight: 700;
}

h4 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary);
}

.section-content p {
    color: #555555;
}

.section-content p:last-child {
    font-size: 24px;
    color: #191F1C;
    font-weight: 500;
    padding-block: 10px;
}

.section-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-list div {
    display: flex;
    gap: 10px;
}

.section-gray {
    background-color: #F9F9F9;
}

.section-black {
    background-color: #111313;
}

.section-black h2,
.section-black h4 {
    color: white;
}

footer {
    background-color: #000000;
    padding-block: 70px;
}

footer .nav-link a {
    color: white;
}

.btn-social {
    background-color: white;
    padding: 11px;
    color: #000000;
    border-radius: 99px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-service {
    padding-block: 70px;
}

.servicesSwiper {
    position: relative;
    padding-block: 70px;
    padding-inline: 10px;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cards */

.service-card {
    height: 570px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    transition: all 0.5s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    color: white;
}

.card-content h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.card-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.card-content a {
    background: white;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid white;
}

.card-content a:hover {
    background-color: #eee;
    border: 1px solid var(--primary);
    transition: all 0.4s ease;
}


/* Navigation Buttons */

.slider-navigation {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    gap: 20px;
}

.feature-navigation {
    bottom: 20%;
}

.custom-prev,
.custom-next,
.feature-prev,
.feature-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    right: 0;
}

.custom-prev {
    background: #e9e9e9;
    color: #444;
}

.custom-next {
    background: #243c96;
    color: white;
}

.feature-prev {
    background: #e9e9e9;
    color: #444;
    /* border: 1px solid #A4A4A4; */
}

.feature-next {
    background: var(--primary);
    color: white;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.section-grid {
    padding-block: 70px;
}

.section-features {
    padding-block: 70px;
}

.feature-card {
    padding-block: 140px;
}

#mainNavbar {
    transition: all 0.4s ease;
}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

.footer-link {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link a {
    color: white;
    text-decoration: none;
    border-right: 1px solid gray;
    padding-right: 10px;
    cursor: pointer;
}

.footer-link a:hover {
    text-decoration: underline;
    transition: all 0.4s ease;
}

.footer-link a:last-child {
    border-right: 0;
}

.section-1 {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.1s linear;
}

.section-2 {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.1s linear;
}

.scroll-text {
    color: white;
    transition: transform 0.1s linear;
    will-change: transform;
}

.section-about{
    padding-block: 40px;
    font-size: 18px;
}

.about-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.about-banner h2 {
    font-size: 40px;
    font-weight: 600;
    color: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width:768px) {

    .section-home,
    .section-grid,
    .section-service,
    .feature-card,
    footer {
        padding-block: 35px;
        gap: 35px;
    }

    .section-about{
        padding-block: 20px;
    }

    .header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 32px;
    }

    h4 {
        font-size: 20px;
    }

    .container {
        max-width: 100%;
    }

    .nav-link a {
        font-size: 14px;
    }

    .section-content p:last-child {
        font-size: 18px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .card-content a {
        font-size: 12px;
    }

    .section-content,
    .banner-content {
        order: 2;
    }

    .banner-content {
        min-height: 420px;
    }

    .servicesSwiper {
        padding-block: 35px;
    }

    .section-home {
        top: 0;
    }
}

@media (max-width:525px) {

    .section-home,
    .section-grid,
    .section-service,
    footer {
        padding-block: 25px;
    }

    .header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 25px;
    }

    h4 {
        font-size: 15px;
    }

    .nav-link a {
        font-size: 12px;
    }

    .section-content p:last-child {
        font-size: 16px;
    }

    .card-content h4 {
        font-size: 15px;
    }

    .card-content p {
        font-size: 12px;
    }

    .card-content a {
        font-size: 10px;
    }

    .banner-content {
        min-height: 400px;
        background-size: contain;
    }

    .servicesSwiper {
        padding-block: 25px;
    }

    .feature-card {
        padding-bottom: 70px;
    }
}







.privacy-layout{
    width: 100%;
    height: auto;
    /* display: flex;
    gap: 30px; */
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.privacy-layout p{
    font-size: 16px;
}
.privacy-layout h2{
    font-size: 28px;
    color: var(--primary);
}
.privacy-layout h3{
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}
.privacy-layout .section-number {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}
.privacy-layout .sidebar {
    position: sticky;
    top: 84px;
    /* flex: 0 0 auto;
    width: 100%;
    max-width: 280px; */
}
.privacy-layout .sidebar-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.privacy-layout .sidebar nav a {
    display: block;
    font-size: 14px;
    color: var(--text-mid);
    text-decoration: none;
    padding: 7px 0 7px 14px;
    border-left: 2px solid #ddd;
    line-height: 1.4;
    transition: all 0.2s;
}
.privacy-layout .sidebar nav a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

.privacy-layout .quick-summary {
    background: var(--primary);
    border-radius: 10px;
    padding: 20px;
    margin-top: 28px;
}
.privacy-layout .quick-summary .qs-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}
.privacy-layout .quick-summary ul {
    list-style: none;
}
.privacy-layout .quick-summary ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.5;
}
.privacy-layout .quick-summary ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}
.privacy-layout .table-bordered td, .privacy-layout .table-bordered th{
    padding: 10px;
    font-size: 16px;
}
.privacy-layout .table-bordered th{
    color: #fff;
    background: var(--primary);
}

.privacy-layout ul li{
    font-size: 16px;
}
.privacy-layout .privacy-layout .content ul {
    list-style-type: none;
    margin: 8px 0 16px;
    padding-left: 15px;
}
.privacy-layout .content ul li {
    /* color: #191F1C; */
    padding: 5px 0 5px 20px;
    position: relative;
    font-weight: 300;
    list-style-type: none;
}
.privacy-layout .content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}
.privacy-layout .info-box {
    background: #edf1ff;
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
    margin: 16px 0;
}
.privacy-layout .info-box p { margin: 0; color: var(--primary); }

.privacy-layout .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13.5px;
}
.privacy-layout .data-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    text-align: left;
}
.privacy-layout .data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f7f7fb;
    vertical-align: top;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
}
.privacy-layout .data-table tr:nth-child(even) td { background: #f7f7fb; }
.privacy-layout .data-table tr:last-child td { border-bottom: none; }
.privacy-layout .data-table td:first-child { font-weight: 500; color: #1B358F; white-space: nowrap; }

.privacy-layout .rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}
.privacy-layout .right-card {
    background: #f6fff7;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 14px 16px;
}
.privacy-layout .right-card .right-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}
.privacy-layout .right-card .right-desc {
    font-size: 16px;
    line-height: 1.5;
}

.privacy-layout .contact-box {
    background: var(--primary);
    border-radius: 10px;
    padding: 24px 28px;
    margin: 24px 0;
}
.privacy-layout .contact-box h3 {
    color: #fff;
    font-size: 18px;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 12px;
}
.privacy-layout .contact-box p { color: rgba(255,255,255,0.75); margin: 0; font-size: 14px; }
.privacy-layout .contact-box a { color: #fff; text-decoration: none; }
.privacy-layout .contact-box a:hover { text-decoration: underline; }




/* ── COMPLAINT CALLOUT BOX ── */
  .privacy-layout .complaint-box {
    background: #f7f7fb;
    border: 2px solid #c4c4ff;
    border-radius: 10px;
    padding: 28px 32px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
  }
  .privacy-layout .complaint-box::before {
    content: '⚡ COMPLAINTS';
    position: absolute;
    top: 0; right: 0;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 0 8px 0 8px;
  }
  .privacy-layout .complaint-box h3 {
    font-size: 20px;
    /* color: var(--navy); */
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 12px;
  }
  .privacy-layout .complaint-box p {
    /* color: var(--navy); */
    font-weight: 400;
  }
  .privacy-layout .complaint-box .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0 0;
  }
  .privacy-layout .contact-card {
    background: #f1f1ff;
    border: 1px solid #c4c4ff;
    border-radius: 7px;
    padding: 14px 16px;
  }
  .privacy-layout .contact-card .label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    /* color: var(--text-light); */
    margin-bottom: 4px;
  }
  .privacy-layout .contact-card .value {
    font-size: 14px;
    font-weight: 600;
    /* color: var(--navy); */
  }
  .privacy-layout .complaint-timeline {
    display: flex;
    gap: 0;
    margin: 20px 0 0;
  }
  .privacy-layout .timeline-step {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    background: #f1f1ff;
    border: 1px solid #c4c4ff;
    position: relative;
  }
  .privacy-layout .timeline-step:first-child { border-radius: 7px 0 0 7px; }
  .privacy-layout .timeline-step:last-child { border-radius: 0 7px 7px 0; }
  .privacy-layout .timeline-step + .privacy-layout .timeline-step { border-left: none; }
  .privacy-layout .timeline-step .step-num {
    font-size: 22px;
    font-weight: 700;
    /* color: var(--navy); */
    line-height: 1;
    margin-bottom: 4px;
  }
  .privacy-layout .timeline-step .step-label {
    font-size: 14px;
    /* color: var(--text-mid); */
    font-weight: 500;
  }
  .privacy-layout .timeline-step .step-time {
    font-size: 14px;
    /* color: var(--text-light); */
    margin-top: 3px;
  }



  @media(max-width: 767px){
    .privacy-layout{
        /* flex-direction: column; */
        grid-template-columns: 1fr;
    }
    .privacy-layout .sidebar{
        max-width: 100%;
        position: relative;
        top:0px;
    }
  }