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

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

.header {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h2 {
    margin-bottom: 0;
    font-size: 20px;
}

.logo h2 span {
    font-weight: 400;
}

.contact-top {
    font-size: 13px;
    color: #444;
    flex: 1;
    text-align: center;
}



.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}




.highlight {
    font-weight: 800;

    color: #00c376;
    border-left: 4px solid #00c376;
    padding-left: 8px;
}

.hero-text p {
    margin-top: 25px;
    color: #666;
    font-size: 16px;
}

.hero-img img {
    width: 450px;
}

@media (max-width: 992px) {
   

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

    .hero-img img {
        width: 80%;
        margin-top: 30px;
    }
}


.service-box {
    width: 30%;
    min-width: 250px;
    margin-bottom: 40px;
}

.service-box img {
    width: 60px;
    margin-bottom: 20px;
}

.service-box h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #e5e5e5;
}

.info-box {
    background: #004a99;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-box {
    background: #002f66;
    width: 80%;
    max-width: 900px;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.inner-box h2 {
    font-size: 28px;
    font-weight: 600;
}

.highlight2 {
    font-size: 36px;
    font-weight: 700;
    color: #00d088;
    margin-bottom: 25px;
}

.inner-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #d8d8d8;
    margin: 20px 0;
}

.branch-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #00d088;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.branch-btn:hover {
    background: #00b574;
}

@media (max-width: 900px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
    }

    .highlight2 {
        font-size: 28px;
    }

    .inner-box {
        width: 95%;
        padding: 40px 20px;
    }
}

.traffic-left {
    width: 50%;
    min-width: 300px;
    position: relative;
}

.traffic-light {
    width: 80%;
    margin-bottom: 20px;
}



.traffic-red {
    color: #ff2a2a;
}

.subtext {
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.car-img {
    height: 80%;
    width: 90%;
    margin-top: 40px;
}

.traffic-right {
    width: 50%;
    min-width: 300px;
    padding-left: 20px;
}

.traffic-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.traffic-desc {
    font-size: 16px;
    color: #e4e4e4;
    line-height: 1.6;
}

.events-note {
    margin-top: 20px;
    color: #ff2a2a;
    font-weight: 600;
}

.events-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #005fdd;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s;
}

.events-btn:hover {
    background: #004ec0;
}

@media(max-width: 900px) {
    .traffic-section {
        flex-direction: column;
        text-align: center;
    }

    .traffic-left,
    .traffic-right {
        width: 100%;
        padding: 0;
    }

    .follow-title {
        font-size: 42px;
    }

    .traffic-heading {
        font-size: 28px;
    }
}

.courses-section {
    text-align: center;
    padding: 60px 160px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0036A5;
}

.subtitle {
    color: #002E8A;
    font-size: 16px;
    margin-bottom: 50px;
}

.course-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.course-card {
    background: #004a99;
    padding: 40px 20px;
    width: 300px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.course-card img {
    width: 180px;
    margin-top: 20px;
}

.course-details {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-box {
    width: 300px;
}

.detail-box h4 {
    color: #0036A5;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.detail-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.testimonial-section {
    text-align: center;
    padding: 70px 40px;
}



.testimonial-subtitle {
    color: #0050C8;
    font-size: 16px;
    margin-bottom: 50px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial-box {
    width: 320px;
    text-align: center;
}

.stars {
    color: #0057D9;
    font-size: 26px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.t-title {
    font-size: 28px;
    color: #0057D9;
    font-weight: 700;
    margin-bottom: 15px;
}

.t-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.t-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.t-name {
    font-size: 16px;
    color: #0036A5;
    font-weight: 700;
}

.why-section {
    text-align: center;
    padding: 70px 20px;
}

.why-title {
    font-size: 36px;
    font-weight: 700;
    color: #0036A5;
}

.why-subtitle {
    color: #0050C8;
    font-size: 16px;
    margin-bottom: 50px;
}

.why-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}



.blue {
    color: #0057D9;
}

.red {
    color: red;
}

.why-text {
    font-size: 18px;
    color: #555;
    letter-spacing: 1px;
}


.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #0036A5;
    font-size: 16px;
}

.footer-logo img {
    width: 180px;
}

.footer-newsletter h2 {
    font-size: 32px;
    color: #1b1b1b;
    margin-bottom: 15px;
    font-weight: 700;
}

.req-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-newsletter label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.footer-newsletter input {
    width: 100%;
    padding: 18px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.submit-btn {
    background: #004a99;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.footer-contact {
    margin-top: 25px;
    text-align: left;
    padding-left: 3%;
}

.footer-contact p {
    margin: 5px 0;
    color: #0036A5;
    font-size: 16px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #ddd;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
        padding-left: 0;
    }
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.space {
    justify-content: space-around !important;
    text-align: center;
}

.icon-circle i {
    font-size: 32px;
    color: #000;
}



.call-content {
    display: flex;
    align-items: center;
    gap: 30px;
}



.call-text p {
    font-size: 18px;
    margin: 0;
}

.book-btn {
    background: #fff;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0052b3;
    text-decoration: none;
    border: 2px solid white;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: transparent;
    color: white;
}

.course-box {
    background: #e9f4f7;
    padding: 40px 20px;
    width: 100%;
}

.course-box h2 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-bottom: 30px;
}

.item {
    text-align: center;
}

.icon {
    width: 55px;
    height: 55px;
    background: #0c1b2a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
    margin-bottom: 10px;
}

.label {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222;
}

.value {
    font-size: 20px;
    font-weight: 600;
    color: #0054b8;
}

.available {
    font-size: 22px;
    font-weight: 500;
    color: #003a70;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plus {
    font-size: 28px;
    font-weight: 700;
}

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

.faq-container {
    width: 100%;
    margin: 20px auto;
}

.faq-item {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-header {
    width: 100%;
    background: #fff;
    padding: 18px 20px;
    font-size: 18px;
    text-align: left;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header .icons {
    width: 35px;
    height: 35px;
    background: #14a0ff;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.faq-item.open .faq-header .icons {
    background: #4b5563;
}

.faq-body {
    display: none;
    padding: 18px 20px;
    background: #f7f7f7;
    border-top: 1px solid #e2e2e2;
}

.faq-body p {
    margin: 0;
    font-size: 16px;
    color: #444;
}


@media(max-width: 767px) {
    .faq-header {
        font-size: 16px;
    }

    .faq-header .icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .hero-text h1 {
        font-size: 35px;
        font-weight: 700;
        color: #002b6a;
        line-height: 1.2;
    }

    .hero {
        margin-top: 50px;
        width: 100%;
        padding: 50px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .services {
        background: #004a99;
        padding: 50px 50px;
        display: flex;
        justify-content: space-between;
        text-align: center;
        color: #fff;
        flex-wrap: wrap;
    }

    .traffic-section {
        background: #004a99;
        padding: 50px 50px;
        display: flex;
        justify-content: space-between;

        position: relative;
        color: white;
        flex-wrap: wrap;
    }

    .div-container {
        text-align: center;
        padding: 50px 50px;
    }

    .why-box {
        width: 250px;
        background: #f7f8fc;
        padding: 20px 20px;
        border-radius: 10px;
        box-shadow: 0px 0 5px rgba(0, 0, 0, 0.05);
    }
.why-container{
    gap: 25px !important;
}
    .why-number {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .call-section {
        background: #004a99;
        padding: 50px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
        color: white;
        border-radius: 0;
    }

    .call-icon {
        width: 80px;
        height: 60px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .call-icon i {
        font-size: 30px;
        color: #004a9f;
    }

    .call-text h2 {
        font-size: 30px;
        font-weight: 800;
        margin: 0 0 10px;
        line-height: 1.2;
    }

    footer {
        background: #ffffff;
        padding: 60px 60px;
        border-top: 1px solid #e0e0e0;
    }
    .main-title {
        text-transform: capitalize;
        font-size: 30px;
        font-weight: 700;
        color: #0036A5;
        }
        .car-section {
            /* display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
            gap: 25px;
            padding: 20px 0;
        }
        .car-card{
            margin: 20px 0;
        }
        .main-content{
            padding: 0 !important;
        }
        
}

@media(min-width: 768px) and (max-width: 900px) {

    .hero-text h1 {
        font-size: 40px;
        font-weight: 700;
        color: #002b6a;
        line-height: 1.2;
    }

    .hero {
        margin-top: 50px;
        width: 100%;
        padding: 50px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .services {
        background: #004a99;
        padding: 70px 160px;
        display: flex;
        justify-content: space-between;
        text-align: center;
        color: #fff;
        flex-wrap: wrap;
    }

    .traffic-section {
        background: #004a99;
        padding: 80px 160px;
        display: flex;
        justify-content: space-between;

        position: relative;
        color: white;
        flex-wrap: wrap;
    }

    .div-container {
        text-align: center;
        padding: 50px 160px;
    }

    .why-box {
        width: 320px;
        background: #f7f8fc;
        padding: 50px 20px;
        border-radius: 10px;
        box-shadow: 0px 0 5px rgba(0, 0, 0, 0.05);
    }

    .why-number {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .call-section {
        background: #004a99;
        padding: 90px 160px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
        color: white;
        border-radius: 0;
    }

    .call-icon {
        width: 130px;
        height: 130px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .call-icon i {
        font-size: 60px;
        color: #004a9f;
    }

    .call-text h2 {
        font-size: 42px;
        font-weight: 800;
        margin: 0 0 10px;
        line-height: 1.2;
    }

    footer {
        background: #ffffff;
        padding: 60px 160px;
        border-top: 1px solid #e0e0e0;
    }

    .main-title {
        text-transform: capitalize;

        font-size: 36px;
        font-weight: 700;
        color: #0036A5;
    }
    .car-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 40px;
    }
    
}

@media (min-width: 901px) {
    .car-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 40px;
    }
    

    .hero-text h1 {
        font-size: 60px;
        font-weight: 700;
        color: #002b6a;
        line-height: 1.2;
    }

    .hero {
        margin-top: 120px;
        width: 100%;
        padding: 50px 250px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .services {
        background: #004a99;
        padding: 70px 160px;
        display: flex;
        justify-content: space-between;
        text-align: center;
        color: #fff;
        flex-wrap: wrap;
    }

    .traffic-section {
        background: #004a99;
        padding: 80px 160px;
        display: flex;
        justify-content: space-between;

        position: relative;
        color: white;
        flex-wrap: wrap;
    }

    .div-container {
        text-align: center;
        padding: 50px 160px;
    }

    .why-box {
        width: 320px;
        background: #f7f8fc;
        padding: 50px 20px;
        border-radius: 10px;
        box-shadow: 0px 0 5px rgba(0, 0, 0, 0.05);
    }

    .why-number {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .call-section {
        background: #004a99;
        padding: 90px 160px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
        color: white;
        border-radius: 0;
    }

    .call-icon {
        width: 130px;
        height: 130px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .call-icon i {
        font-size: 60px;
        color: #004a9f;
    }

    .call-text h2 {
        font-size: 42px;
        font-weight: 800;
        margin: 0 0 10px;
        line-height: 1.2;
    }

    footer {
        background: #ffffff;
        padding: 60px 160px;
        border-top: 1px solid #e0e0e0;
    }

    .main-title {
        text-transform: capitalize;

        font-size: 46px;
        font-weight: 700;
        color: #0036A5;
    }
}

header {
    width: 100%;
    background: #ffffff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    height: 60px;
}

.contact-row {
    position: absolute;
    right: 160px;
    top: 0px;
    font-size: 14px;
    color: #444;
    display: flex;
    gap: 6px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    transition: 0.4s ease;
}

.nav-links a {
    position: relative;
    color: #0057c2;
    font-size: 16px;
    text-decoration: none;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #0057c2;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active {
    padding: 6px 18px;
    border: 2px solid #0057c2;
    border-radius: 12px;
    font-weight: 600;
}

.nav-links .active:hover::after {
    width: 0;
}

.book-btn {
    padding: 11px 26px;
    background: #0057c2;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #003e8f;
    transform: translateY(-2px);
}

.mobile-book { display: none; }

.menu-toggle {
    width: 35px;
    height: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    height: 4px;
    background: #0057c2;
    border-radius: 5px;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 992px) {

    .contact-row { display: none; }

    .menu-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 85px;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 25px;
        padding: 25px 0;
        text-align: center;
        display: none;
        transform-origin: top;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        border-radius: 0 0 20px 20px;
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: scaleY(0); }
        to { opacity: 1; transform: scaleY(1); }
    }

    .nav-links.show {
        display: flex;
    }

    .desktop-book { display: none; }

    .mobile-book { display: inline-block; }
}
.contact-section {
    display: flex;
    gap: 25px;
    padding: 40px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-box {
    display: flex;
    width: 45%;
    min-width: 300px;
    background: #1e88ff;
    padding: 35px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: space-between;
}

.call-box {
    background: #0059b3;
}

.contact-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-box .desc {
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-box .sub {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-field {
    background: #fff;
    padding: 18px;
    color: #333;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    word-break: break-word;
}

@media (max-width: 768px) {
    .contact-box {
        width: 100%;
    }
}

.car-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: .3s;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card img {
    width: 90%;
    height: auto;
}

.car-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.car-card p {
    margin: 5px 0 20px;
    color: #444;
    font-size: 15px;
}

.btn-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.call-btn,
.wa-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

.call-btns {
    background: #1aa398;
}
.call-btn {
    background: #1aa398;
}
.call-btns:hover {
    background: #15867d;
}
.call-btn:hover {
    background: #15867d;
}
.wa-btn {
    background: #c4e86c;
}

.wa-btn:hover {
    background: #b6db54;
}













.container-flex{
    margin:auto;
    display:flex;
    gap:20px;
}

.main-content{
    flex:3;
  
    border-radius:6px;
    padding:20px;
}

.info-card{
    box-shadow:0 0 8px rgba(0,0,0,0.08);

    padding: 25px;
    display:flex;
    gap:20px;
}
.info-card img{
    width:260px;
    border-radius:4px;
}
.info-text h2{
    color:#0057c2;
    font-weight: 600;
    margin-bottom:10px;
}
.info-text p{
    line-height:1.7;
    color:#333;
    font-size:15px;
}

.sidebar{
    flex:1;
    background:#fff;
    border-radius:6px;
    box-shadow:0 0 8px rgba(0,0,0,0.08);
    padding:15px;
}

.sidebar h3{
    background:#0057c2;
    color:#fff;
    padding:10px;
    font-size:16px;
    margin-bottom:10px;
    text-align:center;
}

.sidebar ul{
    list-style:none;
}
.sidebar ul li{
    padding:10px 5px;
    border-bottom:1px solid #ddd;
    font-size:14px;
    color:#333;
}
.sidebar ul li:last-child{
    border:none;
}



.inner-card-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.inner-inner-card{
    background:#fff;
    border-radius:10px;
    padding:15px;
    box-shadow:0 0 10px rgba(0,0,0,0.08);
    transition:transform 0.3s;
}
.inner-card:hover{
    transform:translateY(-5px);
}
.inner-card img{
    width:100%;
    border-radius:6px;
}

@media(max-width:900px){
    .container-flex{
        flex-direction:column;
    }
    .info-card{
        flex-direction:column;
    }
    .info-card img{
        width:100%;
    }
}