@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: white;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    /* Ensures logo on left & button on right */
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: 50px;
}

/* Apply Button */
.apply-btn {
    background-color: #80bd5a;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s;
}

.apply-btn:hover {
    background-color: #6da348;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }

    .logo img {
        height: 30px;
        /* Smaller logo on mobile */
        /*width: 180px;*/
    }

    .apply-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}



/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #14202b;
    background-image: url('../banner/hero_banner_new.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding-top: 80px;
}

/* Hero runs full-bleed so the banner's dark edges never show
   as bars beside the enquiry form */
.hero-section>.container {
    max-width: 100%;
    padding: 0;
}

.hero {
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 520px;
}

.enquiry-form {
    width: 38%;
    background-color: #80bd5a;
    padding: 40px 35px;
    color: white;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #3f51b5;
    color: white;
    border: none;
    cursor: pointer;
}

.hero-image-container {
    width: 62%;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}

/* Scrim keeps the white headline readable over the photo */
.hero-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.75) 0%, rgba(10, 20, 30, 0.25) 45%, rgba(10, 20, 30, 0) 75%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 45px 85px;
    max-width: 90%;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 0;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-content .highlight {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}

.certification {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 12px 16px;
    width: 100%;
    max-width: 260px;
    margin: 24px auto 0;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.certification img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 0;
        background-image: none;
        /* Remove background from section */
    }

    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero {
        flex-direction: column;
        min-height: 0;
    }

    .hero-image-container {
        width: 100%;
        min-height: 200px;
        background-image: url('../banner/hero_banner_new.jpg');
        background-size: cover;
        background-position: center top;
        order: 1;
        /* Ensure image is at the top */
        position: relative;
        margin-top: 85px;
    }

    .hero-image-container::after {
        display: none;
        /* No scrim needed once the headline is hidden */
    }

    .hero-content {
        display: none;
        /* Hide hero content on mobile */
    }

    .enquiry-form {
        width: 100%;
        padding: 25px 20px;
        text-align: center;
        order: 2;
        /* Form below the image */
        position: relative;
        margin-top: 0px;
    }

    .form-control {
        padding: 10px;
        font-size: 16px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        min-height: 250px;
    }

    .certification {
        width: 90%;
    }

    .certification img {
        height: 75px;
    }
}


/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Course Card */
.course-card {
    background: white;
    display: flex;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.course-card img {
    width: 40%;
    object-fit: cover;
}

.course-info {
    width: 60%;
    padding: 20px;
    text-align: left;
}

.course-info h3 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.course-info h5 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
    color: #323283;
}

.course-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.courses-section .btn {
    display: inline-block;
    background-color: #323283;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

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

    .course-card img {
        width: 100%;
        height: 300px;
        object-position: top;
    }

    .course-info {
        width: 100%;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .course-info h3 {
        font-size: 18px;
    }

    .course-info h5 {
        font-size: 14px;
    }

    .course-info p {
        font-size: 13px;
    }
}

/*  */
.placed-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.placed-section-header {
    text-align: center;
    margin-bottom: 100px;
}

.placed-section-header h1 {
    color: #1e4d92;
    font-size: 42px;
    margin-bottom: 15px;
}

.placed-section-header p {
    font-size: 24px;
    color: #333;
}

.placed-section-swiper {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.placed-section-card {
    background-color: #2855a8;
    color: white;
    border-radius: 20px;
    width: 100%;
    height: 250px;
    padding-bottom: 25px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 60px;
}

.placed-section-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -60px;
    /* Moves half of the image outside */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    /* Adds a white background to maintain circular appearance */
    border: 5px solid white;
}



.placed-section-student-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    background-color: #f0f0f0;
    display: block;
}


.placed-section-student-info {
    text-align: center;
    padding: 0 15px;
    width: 100%;
}

.placed-section-student-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.placed-section-placement-info {
    font-size: 16px;
    line-height: 1.4;
}

.placed-section-company-name {
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #c4d1e9;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #5041ab;
}

.placed-section-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Responsive styles for swiper */
@media (min-width: 640px) {
    .swiper-slide {
        width: 260px;
    }
}

@media (max-width: 640px) {
    .placed-section-header h1 {
        font-size: 30px;
    }

    .placed-section-header p {
        font-size: 18px;
    }
}

/*  */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.about-heading {
    color: #8bc34a;
    font-size: 24px;
    margin-bottom: 10px;
}

.school-name {
    color: #323283;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    color: #323283;
    font-size: 24px;
    margin-bottom: 30px;
}

.divider {
    height: 2px;
    width: 40px;
    background-color: #80bd5a;
    margin-bottom: 30px;
}

.content-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.image-container {
    flex: 1;
    max-width: 500px;
}

.safety-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-container {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.text-container p {
    margin-bottom: 20px;
    color: #555;
}

.view-more-btn {
    background-color: #323283;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #303f9f;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .image-container {
        max-width: 100%;
        text-align: center;
    }

    .safety-image {
        width: 100%;
        /* Make image responsive */
        max-width: 400px;
        /* Limit max width */
        margin: 0 auto;
    }

    .text-container {
        text-align: center;
        /* Center align text */
        padding: 0 15px;
        /* Add padding for better spacing */
    }

    .text-container p {
        font-size: 16px;
        line-height: 1.5;
    }

    .view-more-btn {
        display: block;
        margin: 20px auto;
        /* Center the button */
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #86c261 0%, #74b04b 100%);
    padding: 40px 30px;
    color: white;
    text-align: center;
    max-width: 1140px;
    width: calc(100% - 40px);
    margin: -50px auto 0;
    position: relative;
    z-index: 5;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-in-out;
    flex: 1;
    padding: 0 15px;
}

/* Hairline separators between figures */
.stat-box+.stat-box {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.stat-number {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.stat-label {
    font-size: 15px;
    line-height: 1.4;
    opacity: 0.95;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .stats-section {
        flex-wrap: wrap;
        gap: 0;
        padding: 30px 15px;
        margin-top: 30px;
        width: calc(100% - 30px);
    }

    .stat-box {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
        padding: 15px 10px;
    }

    /* Reset the desktop divider, then rule the 2x2 grid */
    .stat-box+.stat-box {
        border-left: none;
    }

    .stat-box:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.28);
    }

    .stat-box:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.28);
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }
}


.gallery-section {
    background-color: #323283;
    padding: 120px 60px;
    color: white;
}

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

.gallery-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 75%;
    /* Maintains aspect ratio */
    background-color: #ddd;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.view-more-btn {
    background-color: #80bd5a;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #7cb342;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
        /* Reduced from 120px 60px to 60px 20px */
    }

    .gallery-heading {
        font-size: 24px;
        /* Optional: also reduce heading size for mobile */
        margin-bottom: 20px;
        padding-top: 30px;
    }

    .gallery-grid {
        display: none;
        /* Hide grid layout */
    }

    .gallery-swiper {
        width: 100%;
        height: 300px;
        /* Reduced height if needed */
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }

    .navigation-buttons {
        margin-top: 10px;
    }
}


.section-heading {
    color: #323283;
    font-size: 32px;
    text-align: center;
    margin: 40px 0;
    font-weight: 600;
}

/* Testimonials Styles */
.testimonials-section {
    padding: 40px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.swiper {
    padding: 20px 5px 40px;

}

.testimonial-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    background-color: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: #8bc34a;
    font-size: 60px;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial-text {
    color: #555;
    margin-bottom: 20px;
    position: relative;
    /* z-index: 1; */
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

.testimonial-location {
    color: #777;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    /* z-index: 10; */
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    border-color: #3f51b5;
    color: #333;
}

/* Partners Styles */
.partners-section {
    padding: 40px 0 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.partner-item {
    border: 1px solid #e0e0e0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: transform 0.3s;
}

.partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.partners-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 20px;
        /* Reduced horizontal padding */
    }

    .partners-grid {
        display: none;
        /* Hide grid layout */
    }

    .partners-swiper {
        width: 100%;
        height: 200px;
        /* Adjust height as needed */
    }

    .partners-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .partners-swiper .partner-item {
        width: 90%;
        /* Make items slightly narrower */
        max-width: 300px;
    }

    .partner-logo {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }

    .partners-nav {
        margin-top: 20px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.faq {
    background-color: #f4f4ff;
    padding: 20px;
}

.faq-title {
    text-align: center;
    color: #3a3a6a;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.faq-item {
    background-color: white;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    position: relative;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #8bc34a;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px 0 55px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 15px 55px;
}

.view-more-btn {
    display: block;
    width: 180px;
    margin: 30px auto;
    padding: 12px 20px;
    background-color: #80bd5a;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #7cb342;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 15px 0 50px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 12px 50px;
    }

    .view-more-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 14px;
    }

    .faq-toggle {
        margin-right: 10px;
    }

    .faq-answer {
        padding: 0 15px 0 45px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 12px 45px;
    }
}

/* Enquire Form Section */
.enquire-section {
    padding: 20px 20px;
    background: #f0f0f5;
}

.enquire-container {
    background-color: #80bd5a;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    margin-bottom: -90px;
}

.enquire-title {
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: bold;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-control {
    margin-bottom: 20px;
    width: 100%;
}

.form-control input,
.form-control select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
}

.submit-btn {
    grid-column: 2;
    background-color: #3f51b5;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #80bd5a;
}

/* Footer Section */
.footer {
    background-color: #323283;
    color: #fff;
    padding: 60px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    margin-top: 20px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
    width: 260px;
    margin-top: 10px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 16px;
    color: #ccc;
}

.copyright {
    color: #ffffff;
    font-size: 14px;
    margin-top: 20px;
}

.copyright a {
    color: #ccc;
    font-size: 14px;
    margin-top: 20px;
}

.enquire-box-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        grid-column: 1;
        margin-top: 10px;
    }

    .enquire-title {
        font-size: 28px;
        text-align: center;
    }

    .enquire-container {
        padding: 20px;
    }

    .footer {
        padding: 30px 20px 20px;
    }

    .enquiry-form-mobile {
        display: block;
    }

    .enquiry-form h2 {
        display: none;
    }

    .enquire-box-mobile {
        display: block;
        margin-bottom: 20px;
    }

    .enquire-box-inner {
        background-color: white;
        padding: 10px;
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .enquire-box-offline-cta {
        background-color: #80bd5a;
        padding: 10px 25px;
        color: #fff;
        text-decoration: none;
        flex: 1;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        border: none !important;
    }

    .enquire-divider {
        color: #80bd5a;
        font-weight: 700;
        font-size: 16px;
        opacity: 0.8;
    }

    .enquire-box-offline-cta:hover {
        background-color: #72a950;
        color: #fff;
    }

    .enquire-box-online-cta {
        background-color: #3197ad;
        padding: 10px 25px;
        color: #fff;
        text-decoration: none;
        flex: 1;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }

    .enquire-box-online-cta:hover {
        background-color: #2b8498;
        color: #fff;
    }

    .enquiry-form .form-control {
        border-radius: 8px;
    }

    .enquiry-form .submit-btn {
        border-radius: 8px;
        font-weight: 600;
        margin-top: 10px;
    }

}

@media (max-width: 480px) {
    .enquire-title {
        font-size: 24px;
    }

    .form-control input,
    .form-control select,
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 14px;
    }
}


/* pop up */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.popup-container.show .popup {
    transform: scale(1);
}

.popup h2 {
    margin-bottom: 15px;
    position: relative;
    font-weight: bold;
}

.popup h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #80bd5a;
    transition: width 0.5s ease, left 0.5s ease;
}

.popup-container.show .popup h2::after {
    width: 100%;
    left: 0;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: gray;
}

.close:hover {
    color: black;
}

.form-group {
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.popup-submit-btn {
    width: 100%;
    padding: 10px;
    background: #80bd5a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-submit-btn:hover {
    background: #3f51b5;
}



/* Sticky Button Container */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Base Button Styling */
.sticky-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    position: relative;
    animation: pulse 1.5s infinite alternate;
}

/* Call Button */
.sticky-buttons a.call {
    background-color: #007bff;
    box-shadow: 0 0 10px #007bff;
}

/* WhatsApp Button */
.sticky-buttons a.whatsapp {
    background-color: #25d366;
    box-shadow: 0 0 10px #25d366;
}

/* Hover Effect */
.sticky-buttons a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Pulsating Glow Effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    }
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
    .sticky-buttons {
        right: 15px;
        bottom: 180px;
    }

    .sticky-buttons a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .placed-section-card {
        height: 200px;
    }
}

/* Video Testimonials — local MP4 players */
.video-testimonials-container {
    position: relative;
}

.video-testimonial-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #000;
    line-height: 0;
}

.testimonial-video {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background-color: #000;
    outline: none;
}

/* The video nav arrows sit on white here, unlike the gallery's
   white-on-navy pair, so they need their own colours */
.video-testimonial-nav .nav-btn {
    border-color: #323283;
    color: #323283;
    font-size: 16px;
    line-height: 1;
}

.video-testimonial-nav .nav-btn:hover {
    background-color: #323283;
    color: #fff;
}

@media (max-width: 768px) {
    .testimonial-video {
        aspect-ratio: 3 / 4;
    }
}