/* RESET */
/* Header page */
/* RESET */

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, white);
    color: #FE0036;
    margin-top: 5px;
}

.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* DEMO BUTTON */
.btn-demo {
    /* background:#E23744;
    color:white; */
    background: white;
    color: #FE0036;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 2px solid #FE0036;
}

/* Hover Effect */
.btn-demo:hover {
    background: #FE0036;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 55, 68, 0.4);
}

/* EXPLORE BUTTON */
.btn-explore {
    background: white;
    color: #FE0036;
    border: 2px solid #FE0036;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

/* Hover Effect */
.btn-explore:hover {

    background: #FE0036;
    border: 2px solid #FE0036;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 55, 68, 0.4);
}

/* FEATURES BAR */
.features-bar {
    display: flex;
    justify-content: space-around;
    background: #FE0036;
    color: white;
    padding: 20px;
    font-weight: 500;
}


/* ===============================
   WHY CHOOSE US - ZOMATO RED
================================= */

.why-choose {
    padding: 80px 8%;
    background: #fff;
}

.why-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(226, 55, 68, 0.2);
    border: 4px solid #FE0036;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #FE0036;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.why-item:hover {
    background: #fff5f6;
    transform: translateX(5px);
}

.icon {
    background: #FE0036;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.why-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.why-item p {
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width:768px) {

    .why-container {
        flex-direction: column;
    }

    .why-image img {
        width: 100%;
    }

    .why-content {
        text-align: left;
        padding: 20px;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    .icon {
        min-width: 50px;
        height: 50px;
        background: #ff0036;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
    }

}

/* hero section mobile */
/* HERO MOBILE FIX */
@media (max-width:768px) {

    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* text-align: justify; */
    }

    .hero-left {
        width: 100%;
    }

    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        width: 90%;
        max-width: 350px;
        margin-top: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left p {
        text-align: justify;
    }

}

/* ABOUT SECTION */

.about {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 8%;
}

/* IMAGE */

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* TEXT */

.about-text h2 {
    color: #FE0036;
    font-size: 32px;
    margin-bottom: 10px;
}

.about-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-text p {
    line-height: 1.7;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px) {

    .about {
        flex-direction: column;
        padding: 50px 6%;
        text-align: center;
    }

    .about-img img {
        width: 100%;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text h4 {
        font-size: 18px;
    }

    .about-text p {
        text-align: justify;
    }

    .btn-demo {
        margin-top: 10px;
    }

}


/* PROCESS */
.process {
    text-align: center;
    padding: 70px 20px;
    background: #f9f9f9;
}

.process h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #FE0036;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.step {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FE0036);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.step:hover {
    transform: scale(1.1);
}

/* Arrow between circles */
.step:not(:last-child)::after {
    content: "➜";
    position: absolute;
    right: -45px;
    font-size: 28px;
    color: #FE0036;
}

/* TESTIMONIAL */
.testimonial {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg, #FE0036);
    color: white;
}

.testimonial-box {
    max-width: 600px;
    margin: auto;
}

/* BLOG */
.blog {
    padding: 80px 8%;
    text-align: center;
}

.blog h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #FE0036;
}

.blog-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.blog-card {
    flex: 1;
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
}

/* COUNTER SECTION */
.counter-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 80px 8%;
    background: white;
    text-align: center;
}

.counter-box h2 {
    font-size: 42px;
    color: #FE0036;
    font-weight: 700;
}

.counter-box p {
    margin-top: 10px;
    font-weight: 500;
}

@media(max-width:768px) {
    .counter-section {
        flex-direction: column;
        gap: 30px;
    }

}

/* FEATURE STRIP */

.feature-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 8%;
    background: #FE0036;
    /* Zomato Red */
    color: white;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 15px;
}

.feature-item i {
    font-size: 28px;
    background: white;
    color: #FE0036;
    padding: 12px;
    border-radius: 50%;
    transition: 0.3s;
}

.feature-item:hover i {
    background: black;
    color: white;
    transform: scale(1.1);
}

/* Mobile */
@media(max-width:768px) {
    .feature-strip {
        flex-direction: column;
        gap: 25px;
    }

    .feature-item {
        flex-direction: column;
    }
}


/* FOOTER SECTION */

.footer-section {
    /* background: linear-gradient(to right, #ffffff); */
    background: #f9f9f9;
    padding-top: 70px;
}

/* CTA PART */
.footer-cta {
    background: #f9f9f9;
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    font-size: 32px;
    font-weight: 700;
}

.footer-cta h2 span {
    color: #FE0036;
}

.footer-cta p {
    margin: 15px 0 25px;
    font-weight: 500;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #FE0036;
    border: 2px solid #FE0036;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-secondary {
    background: #ffcc00;
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #FE0036;
    border: 2px solid #FE0036;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 55, 68, 0.4);
}

.btn-secondary:hover {
    background: #FE0036;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 8% 50px;
    background: #f9f9f9;
}

.footer-box h3 {
    margin-bottom: 15px;
    color: #FE0036;
}

.footer-box p {
    line-height: 1.9;
    /* font-size: 18px; */
}

.footer-box i {
    color: #FE0036;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #FE0036;
}

/* SOCIAL ICONS */

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 50%;
    color: #FE0036;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a i {
    color: inherit;
}

.social-icons a:hover {
    background-color: #FE0036;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 55, 68, 0.4);
}

/* MOBILE */

@media(max-width:768px) {

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

}



/* FOOTER BOTTOM */

.footer-bottom {
    text-align: center;
    background: #FE0036;
    color: white;
    padding: 15px;
    font-size: 14px;
}





/* WHATSAPP FLOAT BUTTON */

.whatsapp-float {
    position: fixed;
    /* Float on the page */
    bottom: 20px;
    /* Distance from bottom */
    left: 20px;
    /* Distance from right side */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Optional Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* About page */


/* ==============================
   ABOUT PAGE - PREMIUM STYLE
================================ */
/* ==========================
   ABOUT PAGE BANNER
========================== */

.about-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Text Content */
.about-overlay {
    position: relative;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.about-overlay h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-overlay p {
    font-size: 20px;
    opacity: 0.9;
}

/* Responsive */
@media(max-width:768px) {
    .about-banner {
        height: 50vh;
    }

    .about-overlay h1 {
        font-size: 36px;
    }

    .about-overlay p {
        font-size: 16px;
    }
}

/* HERO SECTION */
.about-hero {
    height: 420px;
    background: linear-gradient(135deg, #FE0036);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 18px;
    opacity: 0.95;
}


/* MAIN CONTENT SECTION */
.about-content {
    padding: 100px 10%;
    background: #fff5f6;
}

.about-container {
    max-width: 950px;
    margin: auto;
}

.about-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}


/* SECTION HEADINGS */
.about-container h2 {
    color: #FE0036;
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 32px;
}

.about-container h3 {
    color: #FE0036;
    margin-top: 30px;
    margin-bottom: 10px;
}


/* UPSKILL HEADING */
.upskill-heading {
    color: #FE0036;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 600;
}


/* ICON LIST STYLE */
.upskill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upskill-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    transition: 0.3s ease;
}

/* Red Check Icon */
.upskill-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #FE0036;
    font-weight: bold;
}

/* Hover Effect */
.upskill-list li:hover {
    transform: translateX(5px);
}


.upskill-list1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upskill-list1 li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    transition: 0.3s ease;
}

.upskill-list1 li::before {

    content: "👉";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;

}

.upskill-list1 li:hover {
    transform: translateX(5px);
}


/* MISSION & VISION TEXT */
.about-container h2+p {
    margin-bottom: 25px;
}


/* QUOTE / SUCCESS SLOGAN */
.about-container h2:last-of-type {
    margin-top: 60px;
}

.about-container h2:last-of-type+p {
    font-style: italic;
    font-size: 18px;
    color: #555;
    border-left: 4px solid #E23744;
    padding-left: 15px;
}

/* ==========================
   MISSION & VISION 2 COLUMN
========================== */

.mv-container {
    display: flex;
    gap: 40px;
    /* space between mission and vision */
    flex-wrap: wrap;
    /* allows stacking on smaller screens */
    background-color: white;
    padding: 30px 30px;
}

.mv-item {
    flex: 1;
    /* both take equal space */
    min-width: 250px;
    /* ensures readability on small screens */
}

/* Responsive */
@media(max-width:992px) {
    .mv-split-section {
        flex-direction: column;
    }
}

/* RESPONSIVE DESIGN */
@media(max-width:992px) {

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-content {
        padding: 70px 6%;
    }

    .about-container h2 {
        font-size: 26px;
    }

    .upskill-heading {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .about-hero {
        height: 350px;
    }

    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-content {
        padding: 60px 5%;
    }

    .upskill-list li {
        font-size: 15px;
    }

}

/* CONTACT BANNER */
.contact-banner {
    position: relative;
    height: 350px;
    background: url('images/contact.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Blur Effect */
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(6px);
    transform: scale(1.1);
}

/* Dark Overlay */
.contact-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Text Overlay */
.contact-banner-overlay {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.contact-banner-overlay h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-banner-overlay p {
    font-size: 18px;
}

.contact-section {
    padding: 70px 10%;
    background: #f9f9f9;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    /* makes it responsive */
}

/* LEFT SIDE */
.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-box {
    margin-bottom: 20px;
}

/* RIGHT SIDE */
.contact-form {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    width: 100%;
    background: #FE0036;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #c91f2e;
}

@media(max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-banner {
        height: 250px;
    }

    .contact-banner-overlay h1 {
        font-size: 30px;
    }
}

/* training features */
.training-features {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.training-features h2 {
    color: #FE0036;
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 32px;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-box {
    background: #ffffff;
    width: 260px;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    font-size: 18px;
}

.feature-box h3 {
    margin: 15px 0 10px;
    color: #FE0036;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {

    /* This centers the circle */
    font-size: 30px;
    color: white;
    background: #FE0036;
    width: 70px;
    height: 70px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    line-height: 1;
}

.feature-box i {
    padding-top: 20px;
}



/* Course page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #FE0036;
}

.logo img {
    height: 45px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

/* BANNER */

.courses-banner {
    background: url("images/course2.jpg") center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* .banner-overlay{
background: linear-gradient(rgba(0,0,0,0.6), rgba(255,0,50,0.6));
} */

.banner-overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.banner-overlay p {
    font-size: 18px;
}

/* .courses-banner{
background:linear-gradient(135deg,#FE0036,#ff4d6d);
color:white;
text-align:center;
padding:70px 20px;
}

.courses-banner h1{
font-size:40px;
margin-bottom:10px;
}

.courses-banner p{
font-size:18px;
} */

/* COURSES SECTION */

.courses-section {
    padding: 70px 8%;
    background: #fff5f7;
}

.courses-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* COURSE CARD */

.course-card {
    background: white;
    border: 2px solid #FE0036;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* width: 420px; */
    /* border:2px solid #ff0033; */
    /* border-radius:12px; */
    /* overflow:hidden;
background:#fff; */
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    overflow: hidden;
}

/* CONTENT */

.course-content {
    padding: 20px;
    text-align: center;
}

.course-content h3 {
    color: #FE0036;
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

.course-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* BUTTON */

.enroll-btn {
    display: inline-block;
    margin-top: 10px;
    background: #FE0036;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.enroll-btn:hover {
    background: #d9002e;
}

/* Tablet */
@media (max-width: 992px) {
    .courses-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .courses-container {
        grid-template-columns: 1fr;
    }
}

/* course details */

.course-section {
    margin-top: 30px;
}

.course-section h2 {
    color: #0d1b2a;
    font-size: 22px;
    margin-bottom: 10px;
}

.course-section p {
    line-height: 1.7;
    color: #444;
}


/* COURSE DETAILS PAGE */

.course-details {
    width: 80%;
    margin: auto;
    padding: 40px 0;
    line-height: 1.7;
}

.course-details h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.course-details h2 {
    margin-top: 30px;
    color: #0d1b2a;
}

.course-details img {
    margin: 20px 0;
    border-radius: 8px;
}


/* floating enquiry form */
.floating-enquiry-form {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 6px;


    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.floating-enquiry-form .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.floating-enquiry-form h3 {
    margin-top: 0;
    font-size: 18px;
    color: #FE0036;
}

.floating-enquiry-form label {
    display: block;
    margin: 8px 0 4px;
    font-weight: bold;
}

.floating-enquiry-form input,
.floating-enquiry-form select,
.floating-enquiry-form textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.floating-enquiry-form button {
    background: #FE0036;
    color: white;
    border: none;
    padding: 8px 12px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.floating-enquiry-form button:hover {
    background: #c7002b;
}

/* BLOG PAGE */

.blog-page {
    padding: 80px 8%;
    background: #f5f5f5;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    margin-bottom: 40px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.blog-card img {
    width: 120px;
    display: block;
    margin: 0 auto 20px;
}

.blog-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-heading {

    padding-bottom: 20px;
}

.read-btn {
    background: #FE0036;
    color: black;
    padding-top: 20px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.read-btn:hover {
    background: #c7002b;
}