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

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

.header {
    width: 100%;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-container {
    width: 100%;
    padding: 14px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 80px;
}

/* DOWNLOAD BUTTON */
.download-btn {
    background: #2f6df6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.download-btn:hover {
    background: #1f57d6;
}

/* ================= HERO SECTION ================= */
.hero {
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    background: linear-gradient(rgba(205, 226, 247, 0.75), rgba(20,45,70,0.75)), url("/assets/images/labourpayimage1.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* HERO CONTENT WRAPPER */
.hero-container {
    width: 100%;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT TEXT */
.hero-content {
    flex: 1.2;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 30px;
    line-height: 1.7;
    max-width: 960px;
    margin-bottom: 30px;
    color: #dbe6ef;
}

/* HERO BUTTON */
.primary-btn {
    background: #2f6df6;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 850px;
    height: 600px;
    /* max-width: 480px; */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

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

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 64px;
    }

    .hero-content p {
        font-size: 24px;
        max-width: 720px;
    }

    .hero-image img {
        max-width: 420px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 140px 0 80px;
    }

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

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 22px;
        max-width: 100%;
    }

    .hero-image {
        text-align: center;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 380px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .logo {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.3;
    }

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

    .primary-btn {
        padding: 16px 34px;
        font-size: 16px;
    }
}

/* Small mobiles */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

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

    .download-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}



/* ================= TERMS SECTION ================= */
.terms-section {
    width: 100%;
    background-color: #f8f9fc;
    padding: 150px 12%;
}

.terms-section .container {
    max-width: 980px;
    margin: 0 auto;
}

/* MAIN TITLE */
.terms-section h1 {
    font-size: 40px;
    font-weight: 500;
    color: #1a73e8;
    margin-bottom: 32px;
}

/* PARAGRAPH */
.terms-section p {
    font-size: 25px;
    line-height: 1.9;
    color: #202124;
    margin-bottom: 20px;
    font-weight: 400; /* FIXED */
}

/* SECTION HEADINGS */
.terms-section h2 {
    font-size: 25px;
    font-weight: 400; /* FIXED */
    color: #1a73e8;
    margin-top: 48px;
    margin-bottom: 16px;
}

/* LISTS */
.terms-section ul {
    margin-left: 24px;
    margin-bottom: 28px;
}

.terms-section ul li {
    font-size: 25px;
    line-height: 1.8;
    color: #202124;
    margin-bottom: 10px;
    font-weight: 400;
}

/* IMPORTANT LINE */
.terms-section p strong {
    color: #1a73e8;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .terms-section {
        padding: 80px 8%;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 60px 6%;
    }

    .terms-section h1 {
        font-size: 30px;
    }

    .terms-section h2,
    .terms-section p,
    .terms-section ul li {
        font-size: 18px;
        font-weight: 600;
    }
}



/* ================= IMAGE SECTION ================= */
.image-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 90px 8%;
    background-color: #f8f9fc;
}

/* IMAGE CARD */
.image-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER EFFECT */
.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

/* IMAGE */
.image-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 30px;
}

/* TITLE */
.image-card h3 {
    font-size: 25px;
    color: #1e3a8a;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.3;
}

/* DESCRIPTION */
.image-card p {
    font-size: 25px;
    color: #4a4a4a;
    line-height: 1.6;
    padding: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .image-section {
        padding: 60px 6%;
        gap: 30px;
    }

    .image-card {
        padding: 30px 22px;
    }

    .image-card img {
        height: 180px;
    }
}


/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 90px 8%;
    background: #f8f9fc;
}

.gallery-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

/* SLIDER WRAPPER */
.gallery-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
}

.gallery-wrapper::-webkit-scrollbar {
    height: 8px;
}

.gallery-wrapper::-webkit-scrollbar-thumb {
    background: #2f6df6;
    border-radius: 10px;
}

/* TRACK */
.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

/* IMAGE BOX */
.gallery-item {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 26px;
    }

    .gallery-item {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 180px;
        height: 180px;
    }
}




/* ================= FOOTER ================= */
.footer {
    background-color: #2a76f1;
    color: #ffffff;
    padding: 70px 8% 25px;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 40px;
}

/* FOOTER LAYOUT */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
}

/* FOOTER COLUMNS */
.footer-col h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #f1f5ff;
    max-width: 420px;
}

/* CONTACT LIST */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #f1f5ff;
}

/* ICON SIZE */
.contact-list i {
    font-size: 16px;
    margin-top: 3px;
}

/* LINKS */
.footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #dbeafe;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #2a76f1;
    transform: translateY(-4px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 50px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 14px;
    color: #eef2ff;
}

/* DEVELOPER LINK */
.tripledot {
    color: #e0ecff;
    font-weight: 500;
}

.tripledot:hover {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        padding: 50px 6% 25px;
    }

    .footer-bottom {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* FLOATING CALL & WHATSAPP */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 48px;   /* ICON SIZE */
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* CALL BUTTON */
.call-btn {
    background: #1e88e5;
}
.whatsapp-btn {
    background: #25D366;
}
.whatsapp-btn i{
    font-size: 70px;
}


/* ================= TABLET ================= */
@media (max-width: 991px) {
    .floating-contact {
        right: 18px;
        bottom: 22px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn i {
        font-size: 24px;
    }

    .whatsapp-btn i {
        font-size: 36px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .floating-contact {
        right: 14px;
        bottom: 18px;
        gap: 10px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
    }

    .float-btn i {
        font-size: 22px;
    }

    .whatsapp-btn i {
        font-size: 30px;
    }
}