/* -------------------------
   GLOBAL RESET
--------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* -------------------------
   TOP BAR
--------------------------*/
.top-bar {
    background: #081c3c;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
}

/* -------------------------
   HEADER
--------------------------*/
.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 500;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0d2040;
}

.navbar a {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ff7d00;
}

/* -------------------------
   HERO SECTION
--------------------------*/
.hero {
    height: 500px;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: rgba(5, 19, 42, 0.70);
}

.hero-content {
    position: relative;
    padding-top: 120px;
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    margin: 12px 0;
    font-size: 18px;
}

.hero-call {
    margin: 20px 0;
    background: #fff;
    color: #0d2040;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}
.hero-call span {
    margin-right: 10px;
    font-size: 26px;
}

/* Buttons */
.btn-primary {
    background: #ff7d00;
    padding: 12px 25px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #d96a00;
}

.btn-outline {
    padding: 12px 25px;
    border: 2px solid white;
    color: white;
    border-radius: 5px;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #0d2040;
}

/* -------------------------
   SECTION GLOBAL
--------------------------*/
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* -------------------------
   ABOUT SECTION
--------------------------*/
.about p {
    width: 75%;
    margin: auto;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* -------------------------
   SERVICES SECTION
--------------------------*/
.services {
    background: #eef3ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.service-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
    padding-bottom: 25px;
}

.service-box:hover {
    transform: translateY(-7px);
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-box h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.service-box p {
    margin: 8px 18px;
    color: #666;
    font-size: 15px;
}

.service-btn {
    background: #ff7d00;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #d96a00;
}

/* -------------------------
   CONTACT PAGE
--------------------------*/
.contact-form {
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #bbb;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    padding: 14px;
    background: #ff7d00;
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #d96a00;
}

/* -------------------------
   FOOTER
--------------------------*/
.footer {
    background: #081c3c;
    padding: 18px 0;
    text-align: center;
    color: white;
    font-size: 14px;
}



/* -------------------------
   INNER BANNER (ABOUT PAGE)
--------------------------*/
.inner-banner {
    background: url('images/about-banner.jpg') center/cover no-repeat;
    padding: 70px 0;
    color: white;
    text-align: center;
    position: relative;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 28, 60, 0.75);
}

.inner-banner .container {
    position: relative;
    z-index: 5;
}

.inner-banner h1 {
    font-size: 38px;
    font-weight: 600;
}

.inner-banner p {
    margin-top: 8px;
}

.inner-banner a {
    color: #ff7d00;
    text-decoration: none;
}

/* -------------------------
   ABOUT PAGE CONTENT
--------------------------*/
.about-page {
    padding: 60px 0;
}

.about-text-block p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

/* Vision/Mission Blocks */
.vm-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #f9fbff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.vm-icon {
    font-size: 40px;
    margin-right: 15px;
}

.vm-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0d2040;
}


/* CONTACT PAGE - BANNER */
.inner-banner {
    background: url('images/about-banner.jpg') center/cover no-repeat;
    padding: 70px 0;
    color: white;
    text-align: center;
    position: relative;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,28,60,0.75);
}

.inner-banner .container {
    position: relative;
    z-index: 5;
}

.inner-banner h1 {
    font-size: 36px;
    font-weight: 600;
}


/* CONTACT INFO BOX */
.contact-box-section {
    padding: 40px 0;
}

.contact-box {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.contact-box-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-box-left {
    width: 40%;
}

.contact-box-right {
    width: 60%;
    padding: 35px;
    background: #ffffff;
}

.offer-title {
    color: #ff7d00;
    font-size: 18px;
    margin-bottom: 8px;
}

.offer-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin: 4px 0;
}


/* CONTACT FORM SECTION */
.contact-form-section {
    background: #e8f0ff;
    padding: 50px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 70%;
    margin: auto;
}

.contact-form-grid input,
.contact-form-grid textarea {
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 7px;
    border: 1px solid #bbb;
    background: white;
}

.contact-form-grid textarea {
    grid-column: 1 / span 2;
    height: 150px;
}

.form-submit-btn {
    grid-column: 1 / span 2;
    margin-top: 15px;
    padding: 12px 0;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
}


/* DROPDOWN MENU */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    font-weight: 500;
    color: #222;
    margin-left: 20px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    z-index: 1000;
}

.dropdown-content a {
    color: #222;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 15px;
}

.dropdown-content a:hover {
    background: #ff7d00;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}



/* SERVICE DETAIL PAGE */
.service-detail-section {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 2%;
}

.service-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-left h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-left p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.check-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7d00;
}

/* RIGHT SIDEBAR */
.service-menu {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.service-menu a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #222;
}

.service-menu a:last-child {
    border-bottom: none;
}

.service-menu a.active,
.service-menu a:hover {
    background: #ff7d00;
    color: #fff;
}

/* Support Box */
.support-box {
    text-align: center;
    background: #eef2ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.support-box img {
    width: 100%;
    border-radius: 8px;
}

.support-phone {
    font-size: 18px;
    font-weight: bold;
}

/* Book Service Box */
.book-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.book-box input,
.book-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}


/* TOP BLUE STRIP */
.top-bar {
    background: #0a2446;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 20px;
}

.top-left i {
    margin-right: 6px;
}

.top-right a {
    color: #fff;
    margin-left: 15px;
    font-size: 15px;
    text-decoration: none;
}

.top-right a:hover {
    color: #ff7d00;
}


/* MAIN HEADER */
.header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area img {
    height: 70px;  /* adjust if needed */
}


.navbar {
    display: flex;
    align-items: center;
}

.navbar a,
.dropbtn {
    margin-left: 25px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    cursor: pointer;
}

.navbar a:hover,
.dropbtn:hover {
    color: #ff7d00;
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 5px;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background: #ff7d00;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* HERO SLIDER CLEAN VERSION */
.hero-slider {
    position: relative;
    height: 640px;
    overflow: hidden;
}

.slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center right;
    position: absolute;
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* REMOVE OVERLAY */
.slide-overlay {
    background: transparent !important;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 40%;
    color: white;
    z-index: 10;
}


.slide-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.slide-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* PHONE BOX */
.hero-call {
    margin-top: 25px;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    width: fit-content;
    color: #0a2446;
    font-size: 20px;
}

.hero-call span {
    margin-right: 12px;
    font-size: 24px;
    color: #ff7d00;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: #ff7d00;
    padding: 12px 35px;
    color: white;
    font-weight: 600;
    border-radius: 5px;
}

.btn-outline {
    background: white;
    padding: 12px 35px;
    color: #0a2446 !important;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* ARROWS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    border: 2px solid #fff;
    padding: 10px 15px;
    border-radius: 8px;
    background: transparent;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 30px; }
.next { right: 30px; }


/* HERO BUTTONS */
.hero-buttons { margin-top: 20px; }

.btn-primary {
    background: #ff7d00;
    padding: 12px 25px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.btn-outline {
    padding: 12px 25px;
    border: 2px solid white;
    color: white;
    border-radius: 5px;
    margin-left: 10px;
    text-decoration: none;
}

/* ARROWS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 22px;
    border-radius: 6px;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-btn:hover {
    background: white;
    color: #0a2446;
}

.prev { left: 30px; }
.next { right: 30px; }



/* FOOTER */
.main-footer {
    background: #0c1d3c;
    color: white;
    padding: 50px 0 20px 0;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col p {
    color: #d7dbe8;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: #d7dbe8;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    background: #ff7d00;
    padding: 8px 10px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
}

.footer-social a:hover {
    background: #d96a00;
}

/* Divider Line */
.footer-divider {
    border: 0;
    border-top: 1px solid #1c2b4a;
    margin: 20px auto;
    width: 95%;
}

/* Bottom Row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #d7dbe8;
    font-size: 14px;
}

.footer-bottom .highlight {
    color: #ff7d00;
    font-weight: 600;
}

/* Responsive Footer */
@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* TEXT LOGO */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #0a2446;  /* dark blue like screenshot */
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo-text:hover {
    color: #ff7d00; /* orange hover */
}



/* Main slide container */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

/* Active slide visible */
.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Smooth transparent overlay */
.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    z-index: 1;
}

/* Slide 2 stronger overlay */
.slide:nth-child(2) .slide-overlay {
    background: rgba(255, 255, 255, 0.45);
}

/* Content styling */
.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

/* Heading style */
.slide-content h1 {
    color: #0a2342;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Subtitle */
.slide-content p {
    color: #000;
    font-size: 18px;
    margin-bottom: 35px;
}

/* Blue CTA Button */
.btn-main {
    background: #0d6efd;
    color: white;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
}

/* Buttons for slide 2 */
.slide-two h1 {
    font-size: 65px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2342;
}

.slide-two p {
    color: #0d2342;
    font-size: 18px;
    line-height: 1.6;
}

.slide-two .btn-main {
    padding: 14px 28px;
}

/* Slider arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0d6efd;
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.prev { left: 30px; }
.next { right: 30px; }


/* SLIDE HEIGHT + IMAGE FIT */
.slide {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 90vh;   /* full screen clean look */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}


/* TEXT AREA */
.slide-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    max-width: 450px; /* slightly smaller container */
}

/* Smaller Titles */
.slide-content h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a2342;
}

/* Smaller paragraph */
.slide-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

/* Slide 2 Text */
.slide-two h1 {
    font-size: 55px;
}

.slide-two p {
    font-size: 16px;
}


.about-section {
    padding: 60px 0;
    text-align: center;
}

.about-title {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

/* Decorative underline */
.underline {
    width: 140px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 10px;
    margin: 0 auto 20px auto;
    position: relative;
}

.underline span {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #fbbf24; /* yellow dot */
    border-radius: 50%;
}

/* Paragraph styling */
.about-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}





/* SECTION BACKGROUND */
.services-section {
    background: #e6eefb;
    padding: 60px 0;
    text-align: center;
}

/* SECTION TITLE */
.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

/* Decorative underline */
.underline {
    width: 120px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 10px;
    margin: 0 auto 40px;
    position: relative;
}

.underline span {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #fbbf24;
    border-radius: 50%;
}

/* GRID LAYOUT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* SERVICE CARD */
.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

/* CARD HOVER */
.service-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 10px;
    color: #1e293b;
}

/* PARAGRAPH */
.service-card p {
    font-size: 15px;
    color: #475569;
    padding: 0 20px;
    line-height: 1.6;
    min-height: 70px;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    background: #f59e0b;
    color: #fff;
    padding: 10px 26px;
    margin-top: 15px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
}



.how-it-work {
    padding: 60px 0 40px;
    text-align: center;
}

.work-steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.work-item {
    width: 280px;
}

.work-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    color: #1e293b;
}

.work-item p {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

/* ICON BOX */
.work-icon {
    width: 130px;
    height: 130px;
    background: #f59e0b;
    border-radius: 6px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-icon img {
    width: 55px;
}

.step-count {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #fff;
    color: #f59e0b;
    border: 2px solid #e2e8f0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}


.stats-section {
    background: #0a2342;
    padding: 50px 0;
    margin-top: 40px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #fff;
}

.stat-box h2 {
    font-size: 48px;
    color: #f59e0b;
    font-weight: 700;
}

.stat-box p {
    font-size: 18px;
    margin-top: 5px;
}


/* Testimonial Section */
.testimonials {
    padding: 70px 0;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.testimonial-box {
    width: 360px;
    background: #ffffff;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.quote-icon {
    background: #f59e0b;
    color: #fff;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
}

.testimonial-box p {
    color: #1e293b;
    font-size: 15px;
    line-height: 1.6;
}

/* Arrow bottom pointer */
.arrow-down {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #ffffff;
    margin: auto;
    margin-top: 25px;
}

.customer-name {
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

/* Center Title */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.underline span {
    width: 80px;
    height: 4px;
    background: #f59e0b;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}


/* Heading style */
.slide-content h1 {
    color: #ffffff;          /* WHITE text for visibility */
    font-size: 42px;         /* smaller */
    font-weight: 800;
    line-height: 1.1;
}

/* Subtitle */
.slide-content p {
    color: #e2e8f0;          /* light gray text */
    font-size: 15px;         /* smaller */
    line-height: 1.5;
}


.btn-main {
    background: #f59e0b;     /* yellow button */
    color: #ffffff;          /* white text */
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    border: none;
}

.slide-content {
    position: absolute;
    top: 40%;                /* moved UP from 45% */
    left: 8%;
    transform: translateY(-50%);
    max-width: 420px;        /* slightly smaller block */
}






/* ============================================
   GLOBAL MOBILE RESET
============================================ */
@media (max-width: 768px) {
    .logo-text{
        font-size: 19px;
    }
    body {
        overflow-x: hidden;
    }

    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


/* ============================================
   HEADER FIX FOR MOBILE
============================================ */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}


/* ============================================
   HIDE DESKTOP MENU ON MOBILE
============================================ */
@media (max-width: 768px) {

    /* Hide ALL desktop navigation menus */
    nav ul,
    .header-right,
    .menu,
    .header-menu,
    .navMenu,
    .navigation,
    .menu-items {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .navbar{
        display: none !important;
    }
}


/* ============================================
   SHOW DESKTOP MENU ON LARGE SCREEN
============================================ */
@media (min-width: 769px) {

    /* Desktop menu visible only on desktop */
    nav ul,
    .header-right,
    .menu,
    .header-menu,
    .navMenu,
    .navigation,
    .menu-items {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hide mobile-specific elements */
    .mobile-menu,
    .mobile-menu-btn {
        display: none !important;
    }
}


/* ============================================
   MOBILE MENU BUTTON
============================================ */
.mobile-menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #0a2342;
    position: absolute;
    right: 18px;
    top: 8px;
    z-index: 99999;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}


/* ============================================
   MOBILE SLIDE MENU
============================================ */
.mobile-menu {
    width: 260px;
    height: 100vh;
    background: #0a2342;
    position: fixed;
    top: 0;
    right: -260px;
    transition: 0.4s ease;
    z-index: 100000;
    padding-top: 60px;
    overflow-y: auto;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu ul li a {
    color: #fff;
    padding: 15px 25px;
    display: block;
    font-size: 18px;
}


/* SUBMENU */
.submenu .submenu-items {
    display: none;
    background: #0d3055;
}

.submenu .submenu-items li a {
    padding-left: 35px;
    font-size: 16px;
}


/* ============================================
   HERO SLIDER – MOBILE
============================================ */
@media (max-width: 768px) {

    .hero-slider {
        height: 420px !important;
    }

    .slide {
        height: 420px !important;
        background-position: center !important;
        background-size: cover !important;
    }

    .slide-content {
        top: 46% !important;
        left: 6% !important;
        width: 90% !important;
        transform: translateY(-50%);
    }

    .slide-content h1 {
        font-size: 26px !important;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 14px !important;
        line-height: 1.4;
        margin-bottom: 10px;
        color: #f1f1f1 !important;
    }

    .btn-main {
        padding: 10px 22px !important;
        font-size: 14px !important;
    }

    .slider-btn {
        bottom: 20px !important;
        top: auto !important;
        transform: none !important;
    }

    .prev { left: 12px !important; }
    .next { right: 12px !important; }
}


/* ============================================
   ABOUT SECTION
============================================ */
@media (max-width: 768px) {
    .about-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 10px !important;
    }

    .about-title {
        font-size: 22px !important;
    }


}


/* ============================================
   SERVICES GRID
============================================ */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card img {
        height: 160px !important;
        object-fit: cover;
    }

    .service-card {
        width: 100% !important;
    }
}


/* ============================================
   HOW IT WORK
============================================ */
@media (max-width: 768px) {
    .work-steps {
        flex-direction: column;
        gap: 30px !important;
    }
}


/* ============================================
   STATS
============================================ */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}


/* ============================================
   TESTIMONIALS
============================================ */
@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .testimonial-box {
        width: 100% !important;
    }
}


/* ============================================
   FOOTER
============================================ */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }
}



/* ============================================================
   MOBILE RESPONSIVE – ABOUT PAGE
============================================================ */
@media (max-width: 768px) {

    /* BANNER SECTION */
    .inner-banner {
        padding: 35px 10px !important;
        text-align: center !important;
    }

    .inner-banner h1 {
        font-size: 26px !important;
        margin-bottom: 5px !important;
    }

    .inner-banner p {
        font-size: 14px !important;
        margin-top: 6px !important;
    }


    /* MAIN CONTENT */
    .about-page {
        padding: 20px 12px !important;
    }

    .about-text-block {
        width: 100% !important;
        padding: 0 !important;
    }

    .about-text-block p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
        text-align: left !important;
    }


    /* VISION + MISSION BOXES */
    .vm-block {
        padding: 15px !important;
        margin-bottom: 20px !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .vm-icon {
        font-size: 26px !important;
        min-width: 40px !important;
        text-align: center !important;
    }

    .vm-content h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .vm-content p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }


    /* GENERAL SPACING FIX */
    .section {
        padding: 25px 10px !important;
    }

    footer {
        margin-top: 25px !important;
    }
}

.call-button .call-flex {
    position: fixed;
    background: #00bf5e;
    color: #000000;
    width: 100%;
    padding: 10px 0;
    right: 0;
    bottom: 0;
    transition: background 0.5s;
    z-index: 9;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.call-button .call-flex p {
    margin: 0;
    margin-right: 15px;
}

.call-flex p, .call-flex a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    transition: 0.3s;
}

.call-flex p:hover,  .call-flex a:hover {
    color: #fff;
    letter-spacing: 2px;
}





/* ============================================================
   MOBILE FIXES FOR WASHING MACHINE SERVICE PAGE
============================================================ */
@media (max-width: 768px) {

    /* BANNER FIX */
    .inner-banner {
        padding: 30px 0 !important;
        text-align: center !important;
    }

    .inner-banner h1 {
        font-size: 26px !important;
    }

    .inner-banner p {
        font-size: 14px !important;
        margin-top: 5px;
    }


    /* MAIN GRID → CONVERT TO SINGLE COLUMN */
    .service-detail-grid {
        display: block !important;
        width: 100% !important;
    }

    /* LEFT CONTENT — FULL WIDTH */
    .service-left {
        width: 100% !important;
        padding: 10px !important;
    }

    /* IMAGE FULL WIDTH */
    .service-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
        margin-bottom: 15px !important;
    }

    /* HEADINGS */
    .service-left h2 {
        font-size: 20px !important;
        margin-top: 10px !important;
    }

    .service-left h3 {
        font-size: 18px !important;
        margin-top: 20px !important;
    }

    /* TEXT */
    .service-left p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 10px;
    }

    /* LIST STYLE */
    .check-list li {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }

    /* RIGHT SIDEBAR — MOVE BELOW CONTENT */
    .service-right {
        width: 100% !important;
        margin-top: 25px !important;
        padding: 10px !important;
    }


    /* SERVICE MENU STYLING */
    .service-menu {
        width: 100% !important;
        margin-bottom: 20px !important;
        padding: 12px !important;
        border-radius: 8px !important;
    }

    .service-menu a {
        display: block !important;
        padding: 12px !important;
        font-size: 16px !important;
        border-bottom: 1px solid #ddd;
    }

    .service-menu a:last-child {
        border-bottom: none;
    }

    .service-menu a.active {
        background: #f59e0b;
        color: #fff !important;
        border-radius: 6px !important;
    }


    /* SUPPORT BOX */
    .support-box {
        width: 100% !important;
        padding: 20px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        border-radius: 8px !important;
    }

    .support-box h3 {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .support-phone {
        font-size: 16px !important;
        color: #0a2342 !important;
        font-weight: bold;
    }


    /* BOOK FORM */
    .book-box {
        width: 100% !important;
        padding: 20px !important;
        border-radius: 8px !important;
    }

    .book-box h3 {
        font-size: 20px !important;
        text-align: center !important;
    }

    .book-box form input,
    .book-box form select {
        width: 100% !important;
        margin-bottom: 12px !important;
        font-size: 15px !important;
        padding: 12px !important;
        border-radius: 6px !important;
    }

    /* SUBMIT BUTTON FULL WIDTH */
    .book-box button {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
        border-radius: 6px !important;
    }
}


/* =======================================================
   CONTACT PAGE – MOBILE RESPONSIVE DESIGN
======================================================== */
@media (max-width: 768px) {

    /* Banner */
    .inner-banner {
        padding: 35px 10px !important;
        text-align: center !important;
    }

    .inner-banner h1 {
        font-size: 26px !important;
        margin-bottom: 5px !important;
    }

    .inner-banner p {
        font-size: 14px !important;
    }

    /* Contact Box (Offer Section) */
    .contact-box-section {
        padding: 20px 12px !important;
    }

    .contact-box {
        display: block !important;
        padding: 12px !important;
    }

    .contact-box-left img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        margin-bottom: 15px !important;
    }

    .contact-box-right {
        text-align: left !important;
        padding-left: 5px !important;
    }

    .contact-box-right h3.offer-title {
        font-size: 16px !important;
        color: #ff7600 !important;
        margin-bottom: 6px !important;
    }

    .contact-box-right h2.offer-subtitle {
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    .contact-info p {
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    /* CONTACT FORM */
    .contact-form-section {
        padding: 25px 10px !important;
    }

    .section-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .contact-form-grid {
        display: block !important;
        width: 100% !important;
    }

    .contact-form-grid input,
    .contact-form-grid textarea {
        width: 100% !important;
        margin-bottom: 12px !important;
        font-size: 15px !important;
        padding: 12px !important;
    }

    textarea {
        height: 120px !important;
    }

    .form-submit-btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
        margin-top: 5px !important;
    }

    /* Footer Spacing */
    footer {
        margin-top: 20px !important;
    }
}



/* ==========================================================
   HOME PAGE – PERFECT MOBILE RESPONSIVE DESIGN
=========================================================== */
@media (max-width: 768px) {

    /* HERO SLIDER */
    .hero-slider {
        height: 420px !important;
        overflow: hidden;
    }

    .slide {
        height: 420px !important;
        background-position: center !important;
        background-size: cover !important;
    }

    .slide-content {
        top: 50% !important;
        left: 6% !important;
        transform: translateY(-50%) !important;
        max-width: 90% !important;
        text-align: left !important;
    }

    .slide-content h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .slide-content p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .btn-main {
        font-size: 14px !important;
        padding: 10px 22px !important;
    }

    .slider-btn {
        bottom: 20px !important;
        top: auto !important;
        transform: none !important;
    }

    .prev { left: 10px !important; }
    .next { right: 10px !important; }


    /* ABOUT SECTION */
    .about-section {
        padding: 40px 12px !important;
    }

    .about-title {
        font-size: 22px !important;
    }

    .about-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 0 !important;
        text-align: left !important;
    }


    /* SERVICES GRID */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .service-card {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .service-card img {
        height: 170px !important;
        object-fit: cover !important;
    }

    .service-card p {
        font-size: 14px !important;
    }

    .service-btn {
        font-size: 14px !important;
        padding: 8px 18px !important;
    }


    /* HOW IT WORK */
    .work-steps {
        flex-direction: column !important;
        text-align: center !important;
        gap: 35px !important;
    }

    .work-item {
        width: 100% !important;
    }

    .work-icon {
        width: 95px !important;
        height: 95px !important;
    }


    /* COUNTER SECTION */
    .stats-grid {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 30px 0 !important;
    }

    .stat-box h2 {
        font-size: 32px !important;
    }

    .stat-box p {
        font-size: 14px !important;
    }


    /* TESTIMONIALS */
    .testimonial-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .testimonial-box {
        width: 100% !important;
        padding: 25px !important;
    }

    .testimonial-box p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .customer-name {
        font-size: 14px !important;
    }


    /* FOOTER */
    footer {
        text-align: center !important;
    }

    .footer-columns {
        flex-direction: column !important;
        gap: 25px !important;
    }

    footer p, footer li {
        font-size: 14px !important;
    }
}
