* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #222;
    overflow-x: hidden;
    max-width: 100%;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav {
    display: flex;
    gap: 28px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f2f6ff;
    color: #0b3b8c;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile fix */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

.logo {
    font-weight: 800;
    font-size: 22px;
}

.logo span {
    color: orange;
}

.nav a {
    /* margin-left: 24px; */
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.btn-outline {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* HERO */
.hero {
    background-image:
        linear-gradient(rgb(56 53 80 / 11%), rgb(70 60 150 / 25%)),
        url("../images/Home page.png");
    background-position: center;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.hero-left h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    line-height: 1.25;
    margin: 10px 0 20px;
}

.small-title {
    font-size: 13px;
    letter-spacing: 1px;
}

.subtitle {
    max-width: 480px;
    font-size: 15px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 14px;
}

.btn-primary {
    background: orange;
    padding: 10px 22px;
    border-radius: 7px;
    text-decoration: none;
    color:#fff;
}

.btn-dark {
    background: #222;
    padding: 10px 22px;
    border-radius: 7px;
    text-decoration: none;
    color:#fff;
}

.hero-right {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #afacac;
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    width: 360px;
}

.hero-right h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.hero-right input,
.hero-right textarea {
    width: 100%;
    padding: 11px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: none;
}

.hero-right button {
    width: 100%;
    padding: 12px;
    background: orange;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* full width textarea */
.hero-right textarea {
    width: 100%;
    margin-top: 12px;
}

/* mobile responsive */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTIONS */
.section {
    padding: 70px 60px;
}

.section.light {
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    font-family: "Montserrat";
    margin-bottom: 40px;
}

/* CLIENTS */
.clients {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Client Card */
.client-card {
    position: relative;
    width: 140px;
    height: 140px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;

    /* DEFAULT SHADOW */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Image inside card */
.client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* Hover effect */
.client-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    transform: translateY(-5px);
}

.client-card:hover img {
    filter: grayscale(0%);
}

/* FLEET */
.fleet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 38px 0px;
}

.fleet-card p {
    margin-bottom: 16px;
}

.fleet-card {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fleet-card img {
    width: 100%;
    max-width: 160px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.fleet-card h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.fleet-card h2 {
    font-size: 20px;
    margin: 15px 0px;
    color: #ff9f0f;
}

.fleet-card i {
    color: #ff9f0f;
    font-size: 37px;
}

/* Hover effect */
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.site-footer {
    background: #0b3b8c;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-box h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin-top: 8px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #ff7a00;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #0b3b8c;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff7a00;
    color: #fff;
}

/* Bottom */
.footer-bottom {
    background: #082f6b;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
    .fleet {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WHY */
.why-section {
    background: #fff;
}

.why {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

/* LEFT IMAGE */
.why-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-img img {
    max-width: 100%;
    height: auto;
    max-height: 407px;
    min-width: 452px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* RIGHT CONTENT */
.why-content {
    flex: 1.2;
}

.why-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* LIST STYLE */
.why-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.why-list li {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    position: relative;
}

/* Blue dot */
.why-list li::before {
    content: "•";
    color: #0a2a66;
    font-size: 22px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.why-list li {
    padding-left: 32px;
}

/* Hover highlight */
.why-list li:hover {
    border-color: #0a2a66;
    background: #f8fbff;
}

@media (max-width: 768px) {
    .why {
        flex-direction: column;
        text-align: center;
    }

    .why-content {
        text-align: left;
    }

    .why-img img {
        max-height: 280px;
        min-width: 100% !important;
    }

    .header {
        padding: 16px 25px;
    }

    .hero-right {
        width: 100%;
    }

    .process-section {
        padding: 73px 0px;
    }
}

/* SECTION */
.process-section {
    background: #0a2a66;
    padding: 80px 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 90px;
    font-size: 32px;
}

.white {
    color: #fff;
}

/* GRID */
.process {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.process-card {
    background: #fff;
    width: 230px;
    padding: 50px 0px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ICON CIRCLE */
.process-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    border-bottom: 3px solid orange;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.process-icon img {
    width: 55px;
}

/* STEP TEXT */
.step {
    display: block;
    font-size: 17px;
    color: #151414;
    font-weight: 700;
    margin: 17px;
}

/* ORANGE TITLE STRIP */
.process-title {
    background: #ff9f0f;
    color: #fff;
    font-weight: 600;
    padding: 8px 10px;
    /* border-radius: 6px; */
    margin-bottom: 12px;
    font-size: 18px;
}

/* DESCRIPTION */
.process-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process {
        gap: 50px;
    }

    .process-card {
        width: 100%;
        max-width: 320px;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 21px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .section {
        padding: 50px 21px;
    }

    .fleet {
        grid-template-columns: repeat(2, 1fr);
    }

    .why {
        flex-direction: column;
    }

    .process {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 900px) {
    /* Keep header at the top and logo visible */
    .header {
        padding: 10px 20px;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1001;
        /* Higher than the nav */
    }

    /* Navigation settings */
    .nav {
        display: none;
        /* Hidden until .show class is added */
        position: absolute;
        top: 100%;
        /* Positions it directly under the header bar */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 40px;
        height: auto;
        /* Remove the 1000px height */
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap:8px;
    }

    /* This class is triggered by JavaScript */
    .nav.show {
        display: flex;
    }

    .nav a {
        margin: 10px 0;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    /* Hamburger/Cross Styling */
    .hamburger {
        display: block;
        font-size: 28px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
        z-index: 1002;
    }

    /* Hide enquiry button on small mobile if it overlaps logo */
    .header .btn-outline {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 15px;
        background: #f9f9f9;
    }

    /* Toggle dropdown on click/tap */
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* POPUP OVERLAY */
.popup-overlay {
    display: none;
    /* Controlled by JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark background */
    z-index: 99999;
    /* Stays above everything */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* POPUP BOX */
.popup-content {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

/* FORM SPACING */
.popup-header h3 {
    color: #0a2a66;
    margin-bottom: 5px;
}

.popup-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-grid-popup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* CAPTCHA DESIGN */
.captcha-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.captcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-text {
    font-family: "Courier New", monospace;
    font-weight: 800;
    font-size: 22px;
    background: #222;
    color: #ff9f0f;
    padding: 5px 15px;
    letter-spacing: 5px;
    border-radius: 4px;
}

.refresh-captcha {
    background: none;
    border: none;
    color: #0a2a66;
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

.submit-btn-popup {
    background: #ff9f0f;
    color: #fff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

input#captchaInput {
    border: none;
    padding: 10px 8px;
}

/* MOBILE */
@media (max-width: 500px) {
    .form-grid-popup {
        grid-template-columns: 1fr;
    }
}

/* SERVICE DETAIL SPECIFIC */
.service-banner {
    height: 300px;
    background:
        linear-gradient(rgba(10, 42, 102, 0.8), rgba(10, 42, 102, 0.8)),
        url("../images/wooden-bridge...jpg");
    /* Reuse hero bg or a unique one */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* FAQ ACCORDION */
.faq-container {
    margin-top: 50px;
}

.faq-container h3 {
    font-size: 24px;
    color: #0a2a66;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

.faq-question i {
    color: #ff9f0f;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease-out,
        padding 0.3s ease;
    background: #fcfcfc;
    color: #666;
    line-height: 1.6;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
}

/* Active State */
.faq-item.active {
    border-color: #0a2a66;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question {
    color: #0a2a66;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
    padding-top: 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Turns plus into an 'x' */
}

.banner-content h1 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.banner-content a {
    color: #ff9f0f;
    text-decoration: none;
}

/* Main Layout Grid */
.service-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-service-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-main h2 {
    margin-bottom: 20px;
    color: #0a2a66;
    font-size: 28px;
}

.service-main p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: #f8fbff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9f0f;
}

.feature-item i {
    font-size: 24px;
    color: #0a2a66;
    margin-bottom: 10px;
}

/* SIDEBAR STYLES */
.sidebar-form {
    background: #0a2a66;
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    margin-bottom: 30px;
}

.sidebar-form h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #ff9f0f;
    padding-bottom: 10px;
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
}

.sidebar-form button {
    width: 100%;
    padding: 12px;
    background: #ff9f0f;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
}

.sidebar-list {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
}

.sidebar-list h3 {
    margin-bottom: 15px;
}

.sidebar-list ul {
    list-style: none;
}

.sidebar-list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.sidebar-list ul li a.active,
.sidebar-list ul li a:hover {
    color: #ff9f0f;
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        display: grid;
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-sidebar {
        order: -1;
        /* Puts form on top on mobile */
    }
}

/* CONTACT PAGE STYLES */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card-info {
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #f8fbff;
    border: 1px solid #0a2a66;
    color: #0a2a66;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.info-item:hover .info-icon {
    background: #ff9f0f;
    border-color: #ff9f0f;
    color: #fff;
}

.info-text h4 {
    color: #0a2a66;
    font-size: 18px;
    margin-bottom: 4px;
}

.info-text p {
    color: #666;
    font-size: 14px;
}

.map-box {
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-form-wrap h3 {
    margin-bottom: 25px;
    color: #0a2a66;
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    border-color: #ff9f0f;
    background: #fff;
}

.main-contact-form select {
    margin-bottom: 20px;
}

.submit-btn {
    background: #0a2a66;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #ff9f0f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row input {
        margin-bottom: 20px;
    }
}

.services-wrapper {
    padding: 80px 5%;
}

.services-header-text {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    /* color:#ff9f0f; */
    /* text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px; */
}

.services-header-text h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #d5b88c;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ff9f0f;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover::after {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: #ff9f0f;
    margin-bottom: 20px;
    transition: 0.4s;
}

.service-card:hover .icon-box,
.service-card:hover h2,
.service-card:hover ul li,
.service-card:hover p {
    color: #fff;
}

.service-card h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
}

.service-card ul li::before {
    content: "→";
    margin-right: 10px;
    color: #ff9f0f;
}

.service-card:hover ul li::before {
    color: #fff;
}
/* Blog Grid */
.blogs-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content .date {
    font-size: 13px;
    color: #777;
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 20px;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #f37021;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: auto;
        width:90%;
    }
}
@media (max-width: 768px) {
  .clients {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .clients::-webkit-scrollbar {
    display: none;
  }

  .client-card {
    min-width: 80%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}
.hero-right textarea {
    width: 100%;
    min-width: 100%;
    grid-column: 1 / -1;
    resize: vertical;
}
[data-aos] {
  overflow-x: hidden;
}
