* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a192f;
    color: white;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #0b3c6d;
    z-index: 1000;
}

/* Logo */
.logo {
    height: 50px;
}

/* Nav Links */
.navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover */
.navbar ul li a:hover {
    color: #27c2c5;
}

/* CONTACT BUTTON */
.contact-btn {
    background: white;
    color: #0b3c6d !important;

    padding: 10px 20px;
    border-radius: 5px;

    font-weight: 600;
}

/* ===========================
   HAMBURGER
=========================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

    z-index:1100;
}

.menu-toggle span{

    width:30px;

    height:3px;

    background:#fff;

    border-radius:10px;

    transition:.35s;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:991px){

    .navbar{

        padding:18px 30px;

    }

    .logo{

        height:42px;

    }

    .menu-toggle{

        display:flex;

        order:2;
    }

    .navbar ul{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#0b3c6d;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:35px 0;

        opacity:0;

        visibility:hidden;

        transform:translateY(-20px);

        transition:.35s ease;
    }

    .navbar ul.active{

        opacity:1;

        visibility:visible;

        transform:translateY(0);
    }

}

/* ===========================
   HAMBURGER ANIMATION
=========================== */

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg) translate(7px,7px);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg) translate(6px,-6px);

}

/* HERO */
.hero {
    height: 75vh;

    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.65)
    ),
    url("images/max-mugRWvFwOnU-unsplash.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 60px;
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Better gradient (THIS is key) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;

    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* MAIN BUTTON */
.btn-primary {
    background: white;
    color: #0b3c6d;

    padding: 14px 30px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.btn-primary:hover {
    background: #27c2c5;
    color: white;
}

/* SECOND BUTTON */
.btn-outline {
    background: white;
    color: #0b3c6d;

    padding: 14px 30px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.btn-outline:hover {
    background: #27c2c5;
    color: white;
}

.hero {
    padding-top: 90px;
}

/* CALCULATOR SECTION */

.calculator-section {
    padding: 100px 8%;
    background: #f4f7fb;
}

.calculator-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.calculator-left {
    flex: 1;
    background: linear-gradient(135deg, #0b3c6d, #27c2c5);
    padding: 50px;
    border-radius: 20px;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-left img {
    width: 120px;
    margin-top: 40px;
}

.tag {
    background: rgba(255,255,255,0.15);
    width: fit-content;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.calculator-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calculator-left p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* RIGHT SIDE */

.calculator-right {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: #0b3c6d;
    font-weight: 600;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;

    border: 1px solid #dbe3ec;
    border-radius: 10px;

    font-size: 1rem;
}

/* RESULTS */

.results-box {
    display: flex;
    gap: 20px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.result-item {
    flex: 1;
    background: #f4f7fb;
    padding: 25px;
    border-radius: 15px;
}

.result-item span {
    color: #6b7280;
    font-size: 0.9rem;
}

.result-item h3 {
    margin-top: 10px;
    color: #0b3c6d;
    font-size: 1.8rem;
}

/* BUTTON */

.calculate-btn {
    width: 100%;
    padding: 16px;

    border: none;
    border-radius: 10px;

    background: #0b3c6d;
    color: white;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;
    transition: 0.3s;
}

.calculate-btn:hover {
    background: #27c2c5;
}

/* MOBILE */

@media(max-width: 900px) {
    .calculator-container {
        flex-direction: column;
    }
}

/* ABOUT */
.about {
    display: flex;
    padding: 80px;
    align-items: center;
    gap: 40px;
}

.about img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 25px;
    }

    .about img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .about-text {
        width: 100%;
    }
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose-us{

    padding:100px 8%;

    background:#f7f9fc;
}

.section-title{

    text-align:center;

    max-width:700px;

    margin:auto auto 70px;
}

.section-title span{

    display:inline-block;

    background:#0b3c6d;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:.85rem;

    letter-spacing:1px;

    margin-bottom:20px;
}

.section-title h2{

    font-size:2.8rem;

    color:#0b3c6d;

    margin-bottom:20px;
}

.section-title p{

    color:#666;

    line-height:1.8;
}

/* GRID */

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

/* CARD */

.why-card{

    position:relative;

    height:320px;

    border-radius:20px;

    overflow:hidden;

    cursor:pointer;

    background:white;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s;
}

/* POP EFFECT */

.why-card:hover{

    transform:translateY(-12px) scale(1.03);

    box-shadow:0 25px 45px rgba(0,0,0,.2);
}

/* BACKGROUND IMAGES */

.fast{

    background:url("images/fast-approval.jpg") center/cover;
}

.loans{

    background:url("images/high-value.jpg") center/cover;
}

.secure{

    background:url("images/security.jpg") center/cover;
}

.repayment{

    background:url("images/repayment-.jpg") center/cover;
}

/* OVERLAY */

.card-overlay{

    position:absolute;

    inset:0;

    background:rgba(11,60,109,.88);

    transition:.35s;
}

.why-card:hover .card-overlay{

    background:rgba(11,60,109,.45);
}

/* CONTENT */

.card-content{

    position:relative;

    z-index:2;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:30px;

    color:white;
}

.card-content i{

    font-size:3rem;

    margin-bottom:25px;

    transition:.3s;
}

.card-content h3{

    font-size:1.6rem;

    margin-bottom:15px;
}

.card-content p{

    line-height:1.7;
}

/* ICON ANIMATION */

.why-card:hover i{

    transform:scale(1.15) rotate(5deg);
}

/* MOBILE */

@media(max-width:991px){

    .why-grid{

        grid-template-columns:1fr;
    }

}

/* FAQ SECTION */

.faq-section {
    width: 100%;
    background: white;
    padding: 60px 80px;
}

.faq-header {
    text-align: center;

    margin-bottom: 60px;

    padding: 0 20px;
}

.faq-tag {
    background: rgba(11,60,109,0.1);
    color: #0b3c6d;

    padding: 8px 18px;
    border-radius: 30px;

    font-size: 0.9rem;
    font-weight: 600;
}

.faq-header h2 {
    margin-top: 20px;
    font-size: 2.7rem;
    color: #0b3c6d;
}

.faq-header {
    margin-bottom: 35px;
}

/* FAQ BOX */

.faq-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    overflow: hidden;

    background: #ffffff;

    transition: 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* QUESTION */

.faq-question {
    width: 100%;

    background: white;

    border: none;

    padding: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    font-size: 1rem;
    font-weight: 600;

    color: #0b3c6d;
}

/* PLUS */

.faq-question span{

    font-size:1.6rem;

    color:#27c2c5;

    transition:.3s ease;

}

.faq-item.active .faq-question span{

    transform:rotate(180deg);

}

/* ANSWER */

.faq-answer{
    max-height: 0;
    overflow: hidden;

    background: #f9fafb;

    transition: max-height .4s ease;
}

.faq-answer p{
    padding:20px 25px;

    margin:0;

    color:#4b5563;

    line-height:1.8;
}

.faq-item.active{

    border-color:#0b3c6d;

    box-shadow:0 12px 30px rgba(11,60,109,.15);

}

.footer-cta {
    background: linear-gradient(
        135deg,
        #0b3c6d,
        #27c2c5
    );

    text-align: center;

    padding: 80px 20px;

    color: white;
}

.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.footer-cta p {
    margin-bottom: 30px;
}

.cta-btn {
    background: white;
    color: #0b3c6d;

    padding: 15px 35px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */

.footer {
    background: #082d56;
    color: white;
    padding-top: 70px;
}

.footer-container {
    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #27c2c5;
}

/* SOCIALS */

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;

    margin-top: 50px;
}

.footer-socials a {
    width: 50px;
    height: 50px;

    background: rgba(255,255,255,0.1);

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    text-decoration: none;

    transition: 0.3s;
}

.footer-socials a:hover {
    background: #27c2c5;
    transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom {
    text-align: center;

    margin-top: 50px;

    padding: 25px;

    border-top: 1px solid rgba(255,255,255,0.1);

    color: rgba(255,255,255,0.7);
}

.navbar {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar.hide-navbar {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

/* ==========================
   SERVICES PAGE HERO
========================== */

.services-hero {
    height: 55vh;

    background:
    linear-gradient(
        rgba(11, 60, 109, 0.75),
        rgba(11, 60, 109, 0.75)
    ),
    url("service-banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;
}

.services-content {
    max-width: 800px;
    padding: 20px;
}

.services-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.services-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==========================
   SERVICES GRID
========================== */

.services-grid {
    padding: 80px 8%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    background: #f8fafc;
}

.service-card {
    background: white;

    padding: 40px;

    border-radius: 15px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h2 {
    color: #0b3c6d;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    line-height: 1.8;
}

/* ==========================
   HOW IT WORKS
========================== */

.process {
    padding: 90px 8%;
    text-align: center;
    background: white;
}

.process h2 {
    font-size: 2.8rem;
    color: #0b3c6d;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.step {
    background: #0b3c6d;
    color: white;

    padding: 25px 35px;

    border-radius: 12px;

    min-width: 220px;

    font-weight: 600;

    transition: 0.3s;
}

.step:hover {
    background: #27c2c5;
}

/* ==========================
   CTA SECTION
========================== */

.cta-section {
    background:
    linear-gradient(
        135deg,
        #0b3c6d,
        #27c2c5
    );

    text-align: center;

    padding: 100px 20px;

    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: white;
    color: #0b3c6d;

    padding: 15px 35px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .services-content h1 {
        font-size: 2.8rem;
    }

    .process h2 {
        font-size: 2rem;
    }

    .step {
        width: 100%;
    }

}

/* SHOWROOM HERO */

.showroom-hero {

    height: 55vh;

    background:
    linear-gradient(
    rgba(11,60,109,0.75),
    rgba(11,60,109,0.75)
    ),
    url("showroom-banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.showroom-content h1 {

    font-size: 4rem;
    margin-bottom: 15px;
}

/* FILTERS */

.filters {

    display: flex;
    justify-content: center;
    gap: 15px;

    padding: 40px 20px;
    flex-wrap: wrap;
}

.filters button {

    background: white;

    border: 1px solid #ddd;

    padding: 12px 20px;

    border-radius: 30px;

    cursor: pointer;
}

.filters button:hover {

    background: #0b3c6d;
    color: white;
}

/* VEHICLE GRID */

.showroom-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap: 30px;

    padding: 0 8% 100px;
}

.vehicle-card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.vehicle-card:hover {

    transform: translateY(-10px);
}

.vehicle-card img {

    width: 100%;
    height: 250px;

    object-fit: cover;
}

.vehicle-info {

    padding: 25px;
}

.vehicle-info h3 {

    color: #0b3c6d;
    margin-bottom: 10px;
}

.vehicle-info p {

    color: #666;
    margin-bottom: 15px;
}

.vehicle-info span {

    display: block;

    font-size: 1.3rem;

    font-weight: 700;

    color: #27c2c5;

    margin-bottom: 20px;
}

.vehicle-info a {

    text-decoration: none;

    background: #0b3c6d;

    color: white;

    padding: 10px 20px;

    border-radius: 6px;
}

/* SELL HERO */

.sell-hero {

    height: 55vh;

    background:
    linear-gradient(
    rgba(11,60,109,0.75),
    rgba(11,60,109,0.75)
    ),
    url("sell-banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: rgb(255, 255, 255);
}

.sell-content h1 {

    font-size: 4rem;
    margin-bottom: 15px;
}

/* BENEFITS */

.sell-benefits {

    padding: 100px 8%;
    text-align: center;
    background:linear-gradient(
        135deg,
        #0b3c6d,
        #27c2c5
    );
}

.benefits-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap: 25px;

    margin-top: 50px;
}

.benefit-card {

    background: rgb(11,60,109,0.75);

    padding: 40px;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-card i {

    font-size: 2.5rem;

    color: rgb(255, 255, 255);

    margin-bottom: 20px;
}

/* FORM */

.vehicle-form-section {

    padding: 100px 8%;
    background: white;
}

.vehicle-form-container {

    max-width: 900px;
    margin: auto;
}

.vehicle-form {

    display: grid;
    gap: 20px;
}

.vehicle-form input,
.vehicle-form textarea {

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 8px;
}

.vehicle-form textarea {

    height: 150px;
    resize: none;
}

.vehicle-form button {

    background: #0b3c6d;

    color: white;

    border: none;

    padding: 15px;

    border-radius: 8px;

    cursor: pointer;
}

/* HOW IT WORKS HERO */

.works-hero {

    height: 55vh;

    background:
    linear-gradient(
        rgba(11,60,109,0.75),
        rgba(11,60,109,0.75)
    ),
    url("how-it-works-banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: #ffffff;
}

.works-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.sell-process h2 {
    text-align: center;
    margin-bottom: 50px;
    color: rgb(255, 255, 255);
    font-size: 2.8rem;
}

.sell-process {
    padding: 100px 8%;
    text-align: center;
}


.sell-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.step {
    text-align: center;
}

/* PROCESS */

.process-steps {

    padding: 100px 8%;
    background: linear-gradient(
        135deg,
        #0b3c6d,
        #27c2c5
    );
    text-align: center;
}

.steps-grid {

    margin-top: 50px;

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap: 25px;
}

.process-card {

    background: rgba(11,60,109,0.75);

    padding: 40px;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.process-card i {

    font-size: 2.5rem;

    color: #ffffff;

    margin-bottom: 20px;
}

/* REQUIREMENTS */

.requirements {

    padding: 100px 8%;
    text-align: center;
}

.requirements-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap: 25px;

    margin-top: 50px;
}

.requirement-card {

    background: #0b3c6d;

    color: white;

    padding: 35px;

    border-radius: 15px;
}

/* CONTACT HERO */

.contact-hero {

    height: 55vh;

    background:
    linear-gradient(
        rgba(11,60,109,0.75),
        rgba(11,60,109,0.75)
    ),
    url("contact-banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;
}

.contact-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* CONTACT CARDS */

.contact-cards {

    padding: 80px 8%;

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap: 25px;

    background: #f8fafc;
}

.contact-card {

    background: rgb(11,60,109,0.75);

    padding: 40px;

    text-align: center;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.contact-card:hover {

    transform: translateY(-10px);
}

.contact-card i {

    font-size: 2.5rem;

    color: #ffffff;

    margin-bottom: 20px;
}

/* CONTACT SECTION */

.contact-section {

    padding: 100px 8%;
    background: white;
}

.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;
}

.contact-form-box {

    background: #f8fafc;

    padding: 40px;

    border-radius: 15px;
}

.contact-form-box form {

    display: grid;
    gap: 20px;
}

.contact-form-box input,
.contact-form-box textarea {

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 8px;
}

.contact-form-box textarea {

    height: 150px;
}

.contact-form-box button {

    background: #0b3c6d;

    color: white;

    border: none;

    padding: 15px;

    border-radius: 8px;

    cursor: pointer;
}

.contact-info img {

    width: 100%;

    border-radius: 15px;

    margin-bottom: 20px;
}

.info-box {

    background: #0b3c6d;

    color: white;

    padding: 30px;

    border-radius: 15px;
}

@media (max-width: 768px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-box {
        padding: 25px;
    }

    .contact-info img {
        width: 100%;
        height: auto;
    }

    .info-box {
        padding: 20px;
        text-align: center;
    }

    .contact-form-box input,
    .contact-form-box textarea {
        width: 100%;
        font-size: 16px;
    }

    .contact-form-box button {
        width: 100%;
        font-size: 16px;
    }
}

/* CTA */

.contact-cta {

    background:
    linear-gradient(
        135deg,
        #0b3c6d,
        #27c2c5
    );

    padding: 100px 20px;

    text-align: center;

    color: white;
}

.contact-cta h2 {

    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-buttons {

    margin-top: 30px;

    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons a {

    background: white;

    color: #0b3c6d;

    padding: 15px 30px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;
}

.group-btn {
    background: #ffffff !important;
    color: #0b3c6d !important;

    padding: 10px 20px;
    border-radius: 30px;

    font-weight: 600;
    text-decoration: none;

    display: inline-block;
}

/* FOOTER MOBILE FIX */
@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-col ul {
        padding: 0;
    }

    .footer-socials {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-socials a {
        width: 45px;
        height: 45px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 20px 10px;
    }
}