:root {
    --primary: #020281;
    --primary-dark: #01015a;
    --light: #f6f7fb;
    --dark: #1e1e2f;
    --text: #555;
    --white: #fff;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Inter, system-ui, sans-serif;
}

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 90px;
    border-bottom: 1px solid #eee;
}

.header-logo {
    height: 60px;
    transition: all 0.3s ease;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    margin-left: 28px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav .cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.desktop-nav .cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 2, 129, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    opacity: 1;
}

.mobile-menu-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--primary-dark);
}

.mobile-nav-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #b8b8c8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.mobile-nav-cta {
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mobile-nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 2, 129, 0.3);
}

/* Header Responsive */
@media (max-width: 1024px) {
    header {
        padding: 8px 30px;
    }

    .header-logo {
        height: 50px;
    }

    .desktop-nav a {
        margin-left: 20px;
        font-size: 14px;
    }

    .desktop-nav .cta {
        padding: 8px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 8px 20px;
    }

    .header-logo {
        height: 45px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        max-width: 100%;
    }

    .mobile-nav-content {
        padding: 20px 20px;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 12px 15px;
    }

    .mobile-nav-cta {
        font-size: 15px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 15px;
    }

    .header-logo {
        height: 40px;
    }
}

/* HERO */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, rgb(0 0 84 / 95%), rgb(8 8 131 / 88%));
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 0 90px;
}

.hero-content {
    max-width: 850px;
}

.hero h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    opacity: .95;
}

/* Slider */
.slider {
    margin-top: 35px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.hero-btns {
    margin-top: 40px;
}

.hero-btns a {
    display: inline-block;
    margin-right: 15px;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

/* SECTIONS */
section {
    padding: 80px 90px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h3 {
    font-size: 36px;
    color: var(--primary);
}

.section-title p {
    margin-top: 10px;
    color: #666;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

/* CARD */
.card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: .4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(2, 2, 129, 0.18);
}

.icon {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 15px;
}

.card h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
}

/* EXPERTISE */
.expertise .card {
    text-align: center;
    font-weight: 600;
}

/* ABOUT */
.about {
    background: var(--light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 60px;
    text-align: center;
}

.stats h2 {
    font-size: 46px;
    color: var(--primary);
}

/* CONTACT */
.contact {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.contact p {
    margin: 12px 0;
    font-size: 17px;
}

/* FOOTER */
footer {
    background: #00003a;
    color: #ccc;
    text-align: center;
    padding: 25px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

/* RESPONSIVE */
@media(max-width:900px) {

    header,
    section,
    .hero {
        padding: 10px 30px;
    }

    .hero h2 {
        font-size: 36px;
    }
}

/* SERVICES IMAGE CARDS */
.services {
    background: #f6f7fb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(405px, 1fr));
    gap: 35px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(2 2 129 / 78%), rgba(2, 2, 129, 0.35), rgba(2, 2, 129, 0.05));
}

.service-overlay {
    position: absolute;
    bottom: 0;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.service-overlay h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 15px;
    opacity: 0.95;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card:hover img {
    transform: scale(1.08);
}

/* ===== EXPERTISE SECTION (IMAGE + CONTENT) ===== */
.expertise-section {
    padding: 50px 90px;
    background: #ffffff;
}

.expertise-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT IMAGES */
.expertise-images {
    position: relative;
}

.expertise-images img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.expertise-images .img-main {
    height: 420px;
    object-fit: cover;
}

.expertise-images .img-sub {
    position: absolute;
    width: 65%;
    bottom: -60px;
    right: -40px;
    border: 8px solid #fff;
    background: #fff;
}

/* RIGHT CONTENT */
.expertise-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #020281;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.expertise-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #020281;
    margin-bottom: 25px;
}

.expertise-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

/* LIST */
.expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 40px;
}

.expertise-list ul {
    list-style: none;
}

.expertise-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-weight: 500;
    color: #333;
}

.expertise-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #020281;
    font-size: 10px;
    top: 6px;
}

/* BUTTON */
.expertise-actions .btn-primary {
    display: inline-block;
    background: #020281;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .expertise-section {
        padding: 70px 30px;
    }

    .expertise-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .expertise-images .img-sub {
        position: relative;
        width: 80%;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .expertise-content h2 {
        font-size: 34px;
    }
}

.about-measuremint {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE COLLAGE */
.about-images {
    position: relative;
}

.about-images img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.img-large {
    width: 100%;
    height: 420px;
}

.img-small {
    position: absolute;
    width: 220px;
    height: 160px;
}

.img-small.top {
    top: -40px;
    left: -30px;
}

.img-small.bottom {
    bottom: -40px;
    left: -30px;
}

/* CONTENT */
.section-tag {
    color: #020281;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-content h2 {
    font-size: 36px;
    margin: 15px 0;
    color: #111;
}

.about-text {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    min-width: 50px;
    height: 50px;
    background: #020281;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.about-points {
    list-style: none;
    padding: 0;
}

.about-points li {
    margin-bottom: 10px;
    color: #333;
}

.about-points i {
    color: #020281;
    margin-right: 10px;
}

/* STATS */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.stat-card {
    background: #f8fdfb;
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-card i {
    font-size: 28px;
    color: #020281;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 28px;
    margin: 5px 0;
    color: #111;
}

.stat-card p {
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        margin-bottom: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container {
    max-width: 1342px !important;
}

/* TESTIMONIALS SLIDER */
.testimonials-section {
    background: #f8f9fa;
    padding: 50px 90px;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 50px 0;
}

.testimonial-slide {
    min-width: 33.333%;
    padding: 0 15px;
    height: 100%;
}

.review-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: .4s;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(2, 2, 129, 0.18);
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.review-card h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Navigation Arrows */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(2, 2, 129, 0.3);
}

.testimonial-prev {
    left: -25px;
}

.testimonial-next {
    right: -25px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Indicator */
.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 30px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonial-prev {
        left: 10px;
    }

    .testimonial-next {
        right: 10px;
    }

    .review-card {
        padding: 30px 25px;
    }

    .review-card p {
        font-size: 15px;
    }

    .testimonials-slider {
        margin-top: 0;
    }

    .contact-form-container {
        display: block !important;
    }

    .contact-info {
        margin-top: 50px;
    }

    .info-content {
        text-align: left;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }
}

/* CONTACT FORM SECTION */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 90px;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(2, 2, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(2, 2, 129, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(2, 2, 129, 0.4);
}

/* CONTACT INFO CARDS */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: start;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 2, 129, 0.15);
}

.info-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-content h4 {
    color: var(--primary);
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.info-content p {
    color: #555;
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 1.5;
}

.info-content small {
    color: #888;
    font-size: 13px;
}

.whatsapp-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Contact Form Responsive */
@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 70px 30px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .info-icon {
        min-width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* MODERN FOOTER */
.modern-footer {
    background: linear-gradient(135deg, #000050, var(--primary-dark));
    color: #ffffff;
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    padding: 80px 90px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.footer-logo h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.footer-description {
    color: #b8b8c8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8c8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-links a:hover {
    color: #ACC8E5;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8b8c8;
    font-size: 15px;
}

.contact-item i {
    color: #fff;
    font-size: 16px;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b8c8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 2, 129, 0.3);
}

.footer-bottom {
    padding: 30px 90px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright p {
    color: #888;
    font-size: 14px;
    margin: 0 0 5px 0;
}

.footer-note {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    margin: 5px 0 0 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ACC8E5;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float span {
    position: absolute;
    right: 70px;
    background: white;
    color: #25d366;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-top {
        padding: 60px 30px 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        padding: 40px 20px 20px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 20px;
    }

    .whatsapp-float span {
        display: none;
    }

    .hero-btns a {
        margin-bottom: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(319px, 1fr));
    }

    .services {
        padding-top: 50px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .about-images {
        display: none;
    }

    .expertise-images {
        display: none;
    }
}

.testimonials-slider-container {
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 33.3333%;
    padding: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .about-content h2 {
        font-size: 27px;
    }

    .checkbox-label {
        font-size: 8px !important;
    }
}

.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background-color: #FFB944;
}

/* Header Base */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
    background: #ffffffdd;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    height: 80px;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.desktop-nav a.cta {
    background: #1B1B7B;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 4px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .site-header {
        position: sticky;
        top: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
    }

    .menu-toggle {
        display: flex;
    }

    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        gap: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
    }

    .desktop-nav.active {
        right: 0;
    }

    .desktop-nav a.cta {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

/* Close Button */
.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #000;
}

/* Show close button only on mobile */
@media (max-width: 991px) {
    .menu-close {
        display: block;
    }

    .header-logo {
        height: 60px !important;
    }
}

/* Top Header */
.top-header {
    background: #280849;
    color: #fff;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-header-right a {
    margin-left: 12px;
    font-size: 16px;
}

/* Mobile Top Header */
@media (max-width: 767px) {
    .top-header {
        display: none;
    }
}

.bottom-line {
    position: relative;
}

.form-message {
    display: none;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.form-message.success {
    display: block;
    background: #e8f7ef;
    color: #1e7e34;
    border: 1px solid #b7e4c7;
}

.form-message.error {
    display: block;
    background: #fdecea;
    color: #b02a37;
    border: 1px solid #f5c2c7;
}

.theme-border{
    border: 1px dashed #01015A;
}

.swiper-wrapper{
    padding: 50px 0;
}