/* ===== GLOBAL ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER LAYOUT ===== */

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: white;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT LOGO */

.logo-area img {
    height: 70px;
    width: auto;
}

/* RIGHT SIDE (DESKTOP DEFAULT) */

.right-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* SOCIAL ICONS */

.right-header .social-icons {
    margin-bottom: 10px;
}

.right-header .social-icons a {
    color: #E10600;
    font-size: 20px;
    margin-left: 15px;
    transition: 0.3s;
}

.right-header .social-icons a:hover {
    color: #0A3D91;
}

/* NAVIGATION */

.nav-links a {
    text-decoration: none;
    margin-left: 25px;
    color: #0A3D91;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #E10600;
}

/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #0A3D91;
    cursor: pointer;
}

/* CLOSE BUTTON */

.close-btn {
    display: none;
}

/* ============================= */
/* ===== MOBILE RESPONSIVE ===== */
/* ============================= */

@media (max-width: 991px) {

    .menu-toggle {
        display: block;
    }

    .right-header {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 40px 20px;
        transition: 0.4s ease;
        align-items: flex-start;
    }

    .right-header.active {
        right: 0;
    }

    .close-btn {
        display: block;
        font-size: 28px;
        align-self: flex-end;
        margin-bottom: 30px;
        cursor: pointer;
        color: #0A3D91;
    }

    .social-icons {
        margin-bottom: 30px;
    }

    .social-icons a {
        margin-left: 0;
        margin-right: 15px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
    }
}

/* ===== HERO SLIDER ===== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero2 {
    height: 112vh;
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .hero2 {
        height: 43vh;
        
    }
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.slide.active {
    opacity: 1;
}

.hero .hero-content {
    position: absolute;
    top: 45%;
    left: 10%;
    color: white;
    max-width: 500px;
    animation: fadeInUp 1s ease forwards;
}

.hero2 .hero-content {
    position: absolute;
    top: 45%;
    left: 10%;
    color: white;
    max-width: 500px;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
}

.btn {
    background: #E10600;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: #0A3D91;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== SERVICES ===== */

.services {
    padding: 100px 0;
    background: #f8f9fc;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 40px;
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #0A3D91;
    margin-bottom: 15px;
}

.ribbon-wrap {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    left: -10px;
}

.ribbon-wrap::before,
.ribbon-wrap::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #e61855;
    position: absolute;
    z-index: -1;
}

.ribbon-wrap::before {
    top: 0;
    right: 5px;
}

.ribbon-wrap::after {
    bottom: 5px;
    left: 0;

}

.ribbon {
    width: 225px;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    padding: 8px 0;
    background: #333;
    color: #f70b52;
    position: absolute;
    transform: rotate(-45deg);
    padding-left: 5px;
    left: -40%;
    top: 25%;
}


/* ===== PROMOTION SECTION ===== */

.promo {
    padding: 80px 0;
    text-align: center;
}

.promo img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#flyerCarousel img{
    max-height:450px;
    object-fit:contain;
}

.footer-custom-color {
  background-color: #020b30 !important;
}

/* Responsive adjustments */

/* Tablets / medium screens */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column; /* stack sections vertically */
        align-items: center;
        text-align: center;
    }

    .footer-section {
        min-width: auto; /* remove minimum width for stacking */
    }

    .footer-logo {
        max-width: 120px;
    }

    .footer-links h4 {
        font-size: 15px;
    }

    .footer-links ul li a {
        font-size: 13px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 8px;
    }
}
/* ===== ADMIN PANEL ===== */

.admin-container {
    padding: 120px 0;
    width: 600px;
    margin: auto;
}

.admin-container input,
.admin-container button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.admin-container button {
    background: #E10600;
    color: white;
    border: none;
}
/* ================================= */
/* ABOUT SECTION */
/* ================================= */

.about-section1 {
    padding: 100px 0;
    background: #ffffff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT IMAGE COLUMN */
.about-image {
    flex: 1;
    min-width: 320px;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover; /* Prevent image distortion */
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* RIGHT TEXT COLUMN */
.about-text {
    flex: 1.2; /* Give text slightly more space */
}

.about-text h2 {
    color: #0A3D91;
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

/* Button */
.about-text .btn {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-text .btn:hover {
    background: #0A3D91;
}

/* ================================= */
/* RESPONSIVE DESIGN */
/* ================================= */

/* Tablets */
@media (max-width: 991px) {

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        height: 350px;
    }

    .about-text {
        flex: unset;
    }

    .about-text h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .about-section1 {
        padding: 70px 0;
    }

    .about-image img {
        height: 280px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-text .btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}

/* ================================= */
/* WHY SECTION */
/* ================================= */

.why-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.why-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT TEXT COLUMN */
.why-text {
    flex: 1.2; /* Give text slightly more space */
}

.why-text h2 {
    color: #0A3D91;
    font-size: 36px;
    margin-bottom: 25px;
}

.why-text ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.why-text li {
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

/* Button */
.why-text .btn {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.why-text .btn:hover {
    background: #0A3D91;
}

/* RIGHT IMAGE COLUMN */
.why-image {
    flex: 1;
    min-width: 320px;
}

.why-image img {
    width: 100%;
    height: 420px;
    object-fit: cover; /* Prevent distortion */
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================================= */
/* RESPONSIVE DESIGN */
/* ================================= */

/* Tablets */
@media (max-width: 991px) {

    .why-wrapper {
        flex-direction: column-reverse; /* Image on top for variation */
        text-align: center;
    }

    .why-image img {
        height: 350px;
    }

    .why-text {
        flex: unset;
    }

    .why-text h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .why-section {
        padding: 70px 0;
    }

    .why-image img {
        height: 280px;
    }

    .why-text h2 {
        font-size: 24px;
    }

    .why-text li {
        font-size: 15px;
    }

    .why-text .btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}



/* ===== RESPONSIVE ===== */

@media(max-width: 768px) {

    .about-wrapper,
    .why-wrapper,
    .contact-card {
        flex-direction: column;
    }

    .about-image img,
    .why-image img {
        max-width: 100%;
    }
}
/* ===== WARNING ===== */

.pawn-warning {
    padding: 40px 0;
    background: #fff5f5;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 5px solid #E10600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.warning-box i {
    font-size: 28px;
    color: #E10600;
}

/* ===== REQUIREMENTS ===== */

.pawn-requirements {
    padding: 100px 0;
    background: #f8f9fc;
}

.requirements-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.requirements-card h2 {
    margin-bottom: 40px;
    color: #0A3D91;
}

.requirements-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.req-item {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 12px;
    width: 200px;
    transition: 0.3s;
}

.req-item:hover {
    transform: translateY(-8px);
}

.req-item i {
    font-size: 35px;
    color: #0A3D91;
    margin-bottom: 15px;
}

/* ===== FEATURES ===== */

.pawn-features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #0A3D91;
}

.section-title2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fc;
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card i {
    font-size: 35px;
    color: #E10600;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #0A3D91;
}

/* ===== STEPS ===== */

.pawn-steps {
    padding: 100px 0;
    background: #f8f9fc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card span {
    position: absolute;
    top: -20px;
    left: 30px;
    background: #E10600;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
}

.step-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #0A3D91;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.bxl-whatsapp {
    font-size: 100px;
}
/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    right: 20px; /* distance from right edge */
    bottom: 20px; /* distance from bottom */
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments for small screens */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 24px;
        left: 15px;
        top: 15px;
    }
}
/* DRIVING HERO */
.driving-hero {
    height: 90vh;
    background: url('../images/dslide1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.driving-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.driving-hero .hero-content {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: #e30613;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* ABOUT */
.driving-about {
    padding: 80px 0;
    background: #f8f9fb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-features div {
    margin-top: 10px;
    color: #004aad;
}

/* PAWN HERO */
.pawn-hero {
    height: 100vh;
    background: url('../images/pslide2.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.pawn-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.pawn-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* SERVICES */
.driving-services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: #004aad;
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #e30613;
}

/* WHY CHOOSE */
.why-choose-driving {
    background: #004aad;
    color: #fff;
    padding: 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    justify-content: space-evenly;
}

.why-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: #004aad;
}


/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    left: 1100px;
    top: 250px;
    width: 120px;
    height: 120px;
    background: #25D366;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
}
/* ABOUT HERO */
.about-hero {
    height: 90vh;
    background: url('../images/slide3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.about-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-section2 {
    padding: 80px 0;
    background: #f8f9fb;
}

.about-section2 .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch; /* ensures equal column height */
}

.about-section2 .about-image {
    height: 100%;
}


.about-section2 .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* prevents distortion */
    border-radius: 20px;
}


@media (max-width: 768px) {
    .about-section2 .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section2 .about-image img {
        height: auto;
    }
}


/* ===============================
   SUBSIDIARIES SECTION
================================ */
.subsidiaries-section {
    padding: 80px 0;
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.subsidiary-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.subsidiary-card:hover {
    transform: translateY(-10px);
}

.subsidiary-card i {
    font-size: 40px;
    color: #004aad;
    margin-bottom: 15px;
}


/* ===============================
   MISSION SECTION
================================ */
.mission-section {
    background: #004aad;
    color: #fff;
    padding: 80px 0;
}

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

.mission-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
}


/* ===============================
   TABLET RESPONSIVE
================================ */
@media (max-width: 992px) {

    .subsidiaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

}


/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 576px) {

    .subsidiaries-grid {
        grid-template-columns: 1fr;
    }

    .subsidiary-card {
        padding: 30px;
    }

    .mission-card {
        padding: 30px;
    }

}

.leadership-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.leadership-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.leadership-content {
    display: flex;
    gap: 40px;
    align-items: stretch; /* important: makes columns equal height */
}

/* image column */
.leadership-image {
    flex: 1;
    height: auto;
}

.leadership-image img {
    width: 100%;
    height: 100%;          /* fills column height */
    object-fit: cover;     /* crops image nicely */
    border-radius: 15px;
}

/* text column */
.leadership-text {
    flex: 2;
}

/* responsive */
@media (max-width: 768px) {
    .leadership-content {
        flex-direction: column;
    }

    .leadership-image img {
        height: auto;
    }
}

/* VALUES */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
    font-weight: 600;
}

.values-grid i {
    font-size: 28px;
    color: #e30613;
    display: block;
    margin-bottom: 10px;
}

/* CTA */
.about-cta {
    background: linear-gradient(to right, #004aad, #e30613);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.btn-primary {
    background: #fff;
    color: #004aad;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* ============================= */
/* DEBT HERO */
/* ============================= */

.debt-hero {
    position: relative;
    min-height: 100vh; /* Full screen height */
    background: url('../images/debt-hero.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 0 20px;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 32, 91, 0.85),
        rgba(0, 74, 173, 0.75)
    );
    z-index: 1;
}

/* Content */
.debt-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
}

/* Title */
.debt-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Subtitle */
.debt-hero p {
    font-size: 20px;
    margin-bottom: 35px;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    color: #004aad;
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablets */
@media (max-width: 991px) {

    .debt-hero {
        min-height: 90vh;
    }

    .debt-hero h1 {
        font-size: 40px;
    }

    .debt-hero p {
        font-size: 18px;
    }

    .btn-primary {
        padding: 13px 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .debt-hero {
        min-height: 85vh;
    }

    .debt-hero h1 {
        font-size: 30px;
    }

    .debt-hero p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
}


/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.debt-about {
    padding: 100px 0;
    background: #f8f9fc;
}

.debt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.debt-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #004aad;
}

.debt-about p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.debt-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* ================================= */
/* SERVICES SECTION */
/* ================================= */

.debt-services {
    padding: 100px 0;
    background: #ffffff;
}

/* Section Title */
.debt-services .section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 70px;
    color: #004aad;
    position: relative;
}

/* Decorative underline */
.debt-services .section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #e30613;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Card */
.service-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Icon */
.service-card i {
    font-size: 45px;
    color: #e30613;
    margin-bottom: 20px;
}

/* Card Title */
.service-card h3 {
    margin-bottom: 15px;
    color: #004aad;
    font-size: 20px;
}

/* Card Text */
.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ================================= */
/* RESPONSIVE DESIGN */
/* ================================= */

/* Large Tablets */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {

    .debt-services {
        padding: 80px 0;
    }

    .debt-services .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .debt-services .section-title {
        font-size: 26px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card i {
        font-size: 38px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }
}

/* ================================= */
/* WHY CHOOSE US - GRID VERSION */
/* ================================= */

.debt-why {
    padding: 100px 0;
    background: #f8f9fc;
}

/* Section Title */
.debt-why .section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 70px;
    color: #004aad;
    position: relative;
}

/* Decorative underline */
.debt-why .section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #e30613;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Card */
.why-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover */
.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Icon */
.why-card i {
    font-size: 42px;
    color: #004aad;
    margin-bottom: 20px;
}

/* Title */
.why-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #004aad;
}

/* Text */
.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ================================= */
/* RESPONSIVE DESIGN */
/* ================================= */

/* Large Tablets */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {

    .debt-why {
        padding: 80px 0;
    }

    .debt-why .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .debt-why .section-title {
        font-size: 26px;
    }

    .why-card {
        padding: 35px 25px;
    }

    .why-card i {
        font-size: 36px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 15px;
    }
}
/* ================================= */
/* PROCESS SECTION */
/* ================================= */

.debt-process {
    padding: 100px 0;
    background: #ffffff;
}

/* Section Title */
.debt-process .section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 70px;
    color: #004aad;
    position: relative;
}

.debt-process .section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #e30613;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */
.process-step {
    background: #fff;
    padding: 60px 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover */
.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Step Number */
.process-step span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #e30613;
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Title */
.process-step h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #004aad;
}

/* Text */
.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ================================= */
/* RESPONSIVE DESIGN */
/* ================================= */

/* Large Tablets */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {

    .debt-process {
        padding: 80px 0;
    }

    .debt-process .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .debt-process .section-title {
        font-size: 26px;
    }

    .process-step {
        padding: 55px 25px 35px;
    }

    .process-step span {
        font-size: 12px;
        padding: 10px 14px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 15px;
    }
}
/* ============================= */
/* PROCESS */
/* ============================= */

.debt-process {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    position: relative;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #e30613;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
}
.flyer-card{
transition:0.3s;
border-radius:12px;
overflow:hidden;
}

.flyer-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.flyer-card img{
width:100%;
}
