:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-dark: #0f2538;
    --text: #15212d;
    --text-soft: #5b6978;
    --line: #d7dee7;
    --primary: #0e375b;
    --primary-strong: #08253f;
    --accent: #d9892e;
    --accent-soft: #f5e8d6;
    --success-bg: #dff4e8;
    --success-text: #1e7544;
    --error-bg: #fbe4e4;
    --error-text: #8a2f2f;
    --radius: 14px;
    --shadow: 0 20px 55px rgba(7, 28, 45, 0.1);
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f2f5f7 0%, #f9fafb 50%, #f2f4f6 100%);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 2.4rem));
    margin-inline: auto;
}

.section {
    padding: 5.2rem 0;
}

.section-mini {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-head {
    margin-bottom: 2rem;
}

.section-head h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.78rem 1.45rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(130deg, var(--primary), #235684);
    color: #fff;
    box-shadow: 0 12px 35px rgba(18, 57, 90, 0.24);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn-small {
    font-size: 0.9rem;
    background: var(--accent-soft);
    color: #734712;
}

.btn.full {
    width: 100%;
}

.site-header {
    position: relative;
    z-index: 50;
    background: rgba(10, 26, 42, 0.72);
    backdrop-filter: blur(14px);
}

.top-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.87);
    font-size: 0.82rem;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    min-height: 42px;
}

.top-strip-inner p {
    margin: 0;
}

.top-strip-info {
    display: flex;
    gap: 1.2rem;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.28rem 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
    background: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
}

.dropdown li {
    position: relative;
    margin-bottom: 2px;
}

.dropdown li:last-child {
    margin-bottom: 0;
}

.dropdown a {
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase; /* Force uppercase as requested */
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: #f4f7f9;
    color: var(--primary);
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-sub-dropdown {
    position: relative;
}

.sub-dropdown {
    position: absolute;
    top: -5px; 
    left: 100%; 
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    padding: 0.5rem;
    z-index: 100;
    list-style: none;
    margin: 0;
    margin-left: 5px; /* Tiny gap */
}

/* Arrow pointer for sub-menu */
.sub-dropdown::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -5px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(45deg);
}

.has-sub-dropdown:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown .arrow {
    font-size: 0.9rem;
    margin-left: 0.8rem;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.has-sub-dropdown:hover > a .arrow {
    opacity: 1;
}

/* Hover background for the parent item when sub-menu is open */
.has-sub-dropdown:hover > a {
    background: #f4f7f9;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
}

.flash {
    padding: 0.8rem 0;
    font-weight: 500;
}

.flash-success {
    background: var(--success-bg);
    color: var(--success-text);
}

.flash-error {
    background: var(--error-bg);
    color: var(--error-text);
}

.hero {
    margin-top: -129px;
}

.hero-slider {
    position: relative;
    height: min(90vh, 820px);
    min-height: 620px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    height: 100%;
    display: grid;
    align-content: center;
    gap: 1rem;
    color: #fff;
    max-width: 760px;
}

.hero-kicker {
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.88rem;
}

.hero h1,
.hero h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    line-height: 1.1;
    font-size: clamp(1.7rem, 3.2vw, 2.9rem);
    max-width: 18ch;
}

.hero p {
    margin: 0;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.34);
}

.hero-nav.prev {
    left: 1.6rem;
}

.hero-nav.next {
    right: 1.6rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2.1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    cursor: pointer;
}

.hero-dots button.active {
    background: #fff;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.split-media img {
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.split-content h2 {
    margin-top: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    font-family: "Rajdhani", sans-serif;
}

.split-content p {
    color: var(--text-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(9, 27, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem; /* Slightly smaller for 4-col */
    font-family: "Rajdhani", sans-serif;
}

.service-body p {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    flex-grow: 1; /* Pushes button down */
}

.request-section {
    position: relative;
    background: radial-gradient(1200px 350px at 20% 0%, rgba(27, 69, 109, 0.16), transparent), #edf2f6;
}

.request-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 1.5rem;
}

.request-info h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    line-height: 1.15;
    font-family: "Rajdhani", sans-serif;
}

.request-info p {
    color: var(--text-soft);
}

.rating-box {
    border: 1px solid #ead6bf;
    background: #fff8ef;
    border-radius: 13px;
    padding: 0.95rem 1rem;
    display: grid;
    gap: 0.3rem;
    margin: 1.2rem 0;
}

.rating-box strong {
    color: #7a450d;
}

.rating-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.google-wordmark {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
}

.g-blue {
    color: #4285f4;
}

.g-red {
    color: #ea4335;
}

.g-yellow {
    color: #fbbc05;
}

.g-green {
    color: #34a853;
}

.rating-stars {
    color: #f5a524;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.process-flow {
    margin-top: 0;
}

.process-flow-head {
    margin-bottom: 0.8rem;
}

.process-flow-head h3 {
    margin: 0;
    color: #0f2f4b;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.65rem;
    line-height: 1.1;
}

.process-flow-head p {
    margin: 0.3rem 0 0;
    color: #5e6f7f;
    font-size: 0.95rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.process-card {
    position: relative;
    min-height: 185px;
    border-radius: 13px;
    overflow: hidden;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(9, 33, 53, 0.22);
    background-image: linear-gradient(155deg, rgba(7, 20, 35, 0.82), rgba(12, 36, 57, 0.45)), var(--card-image);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.2rem;
    transform: translateY(0);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(9, 33, 53, 0.26);
}

.process-step {
    position: absolute;
    top: 0.58rem;
    left: 0.58rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 24px;
    border-radius: 999px;
    background: rgba(235, 248, 255, 0.22);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.process-card h4 {
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.2;
    font-family: "Rajdhani", sans-serif;
}

.process-card p {
    margin: 0;
    color: rgba(247, 252, 255, 0.92);
    font-size: 0.84rem;
    line-height: 1.35;
}

.process-section {
    background: linear-gradient(160deg, #1d2b39 0%, #26394b 48%, #1b2836 100%);
}

.process-section .process-flow-head {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 1.25rem;
}

.process-section .process-flow-head .section-mini {
    color: #8ec2f2;
}

.process-section .process-flow-head h3 {
    color: #fff;
}

.process-section .process-flow-head p {
    color: rgba(230, 241, 250, 0.86);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin: 0.4rem 0;
    color: var(--text-soft);
}

.check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.request-form,
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.3rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.form-row label {
    font-size: 0.9rem;
    font-weight: 500;
}

.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.upload-dropzone {
    border: 1.5px dashed #a9bbcc;
    border-radius: 14px;
    background: linear-gradient(180deg, #f9fcff 0%, #eef4fa 100%);
    padding: 1rem 0.9rem;
    display: grid;
    justify-items: center;
    gap: 0.3rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.upload-dropzone:hover {
    border-color: #3e6f98;
    background: linear-gradient(180deg, #f6fbff 0%, #e8f2fb 100%);
    transform: translateY(-1px);
}

.upload-dropzone.is-filled {
    border-color: #2f648f;
    background: linear-gradient(180deg, #ecf6ff 0%, #dfeefd 100%);
}

.upload-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e2eef9;
    color: #1f5d8f;
}

.upload-icon svg {
    width: 22px;
    height: 22px;
}

.upload-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1d3550;
}

.upload-subtitle {
    font-size: 0.82rem;
    color: #647b90;
}

.upload-meta {
    font-size: 0.86rem;
    font-weight: 500;
    color: #3d5872;
}

.upload-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.upload-chip {
    border-radius: 999px;
    border: 1px solid #bfd2e2;
    background: #f5faff;
    color: #2c4f6d;
    font-size: 0.78rem;
    padding: 0.22rem 0.58rem;
    line-height: 1.35;
}

.upload-chip.more {
    border-style: dashed;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ccd6e0;
    border-radius: 10px;
    padding: 0.68rem 0.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3a678f;
    box-shadow: 0 0 0 3px rgba(45, 91, 130, 0.15);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 34px rgba(5, 26, 42, 0.08);
}

.project-card > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-body {
    padding: 1rem;
}

.project-body h3 {
    margin-top: 0.55rem;
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.project-body p {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
}

.project-location {
    font-size: 0.9rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.2rem 0.66rem;
    background: var(--accent-soft);
    color: #7b4c16;
    font-weight: 600;
    font-size: 0.78rem;
}

.partners-section {
    background: #f6f8fa;
}

.partners-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1.5rem 0;
    max-width: var(--container);
    margin: 0 auto;
}

.partners-nav-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.partners-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.08);
}

.partners-viewport {
    flex: 1;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-item {
    flex-shrink: 0;
    width: 200px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    min-height: 72px;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 600;
    color: #445364;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}



.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    border: 0;
    background: transparent;
    font: inherit;
    padding: 1rem 1rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--text-soft);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-body {
    padding: 1rem;
}

.blog-body small {
    color: #7a8895;
}

.blog-body h3 {
    margin: 0.5rem 0;
    font-size: 1.35rem;
}

.blog-body p {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(5, 26, 41, 0.08);
}

.video-card iframe {
    width: 100%;
    min-height: 245px;
    border: 0;
}

.cta-strip {
    background: linear-gradient(105deg, #0f2c47, #1f4f78);
    color: #fff;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-inner h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-family: "Rajdhani", sans-serif;
}

.inner-hero {
    position: relative;
    min-height: 320px;
    display: grid;
    align-items: end;
    padding: 4.3rem 0 2.8rem;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.inner-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-family: "Rajdhani", sans-serif;
}

.inner-hero p {
    margin: 0.5rem 0 0;
    max-width: 70ch;
    color: rgba(255, 255, 255, 0.92);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.corporate-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.1rem;
}

.corporate-card h2 {
    margin-top: 0;
}

.corporate-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

.service-detail-grid {
    display: grid;
    gap: 1.1rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    min-height: 250px;
}

.service-detail-content h2 {
    margin: 0;
    font-size: 1.9rem;
}

.service-detail-content p {
    color: var(--text-soft);
}

.service-submenu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 1.1rem;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #eef4fa;
    color: #24527a;
    border: 1px solid #d7e3ef;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-subsections {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.service-subcard {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f9fbfd;
    padding: 0.9rem 1rem;
}

.service-subcard h3 {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
}

.service-subcard p {
    margin: 0;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.filter-tabs a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    background: #fff;
}

.filter-tabs a.active {
    border-color: #24527a;
    background: #e7f0f9;
    color: #1d4668;
}

/* =============================================
   PROJECT GRID & CARDS
   ============================================= */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.project-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(7, 28, 45, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(7, 28, 45, 0.13);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.project-body h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: "Rajdhani", sans-serif;
    line-height: 1.2;
}

.project-body p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    flex: 1;
}

.project-body .btn-small {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 0.85rem;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--muted, #6b7c93);
    font-size: 0.83rem;
    font-weight: 500;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #e7f3e8;
    color: #1e6c35;
    border: 1px solid #c2dfc5;
    width: fit-content;
}

.pill.completed {
    background: #e7f0f9;
    color: #1d4668;
    border-color: #c2d4e8;
}

.project-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.3rem;
}

.project-service-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

.project-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.3rem;
}

.project-detail h2,
.project-detail h3 {
    margin-top: 0;
}

.project-detail p {
    color: var(--text-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
}

.blog-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.2rem;
}

.blog-lead {
    font-size: 1.2rem;
    color: #334557;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.1rem;
}

.contact-info {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 1rem 1.2rem;
}

.contact-info h2 {
    margin-top: 0;
}

.map-section iframe {
    width: 100%;
    min-height: 360px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.site-footer {
    background: #0d2235;
    color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.3rem;
    padding: 2.5rem 0;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    color: #fff;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    margin: 0.25rem 0;
}

.tagline {
    color: #f4c287;
    display: inline-block;
    margin-top: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-grid,
    .blog-grid,
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-slider-track::before,
    .partners-slider-track::after {
        width: 50px; /* Smaller fade for mobile */
    }

    .split-layout,
    .request-grid,
    .contact-grid,
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .top-strip {
        display: none;
    }

    .hero {
        margin-top: -86px;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        background: #102a41;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.open {
        max-height: 480px;
    }

    .main-nav > ul {
        display: block;
        padding: 0 1.2rem 1.2rem;
    }

    .main-nav li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.9rem 0;
        width: 100%;
    }

    .has-dropdown .dropdown,
    .has-sub-dropdown .sub-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding-left: 1.2rem; /* Indent sub-items */
        
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
        transition: all 0.3s ease;
    }

    .has-dropdown.mobile-open > .dropdown,
    .has-sub-dropdown.mobile-open > .sub-dropdown {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        margin-bottom: 0.5rem;
    }

    .dropdown a {
        padding: 0.6rem 0;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: none;
    }

    .dropdown a:hover {
        background: transparent;
        color: #fff;
    }

    .dropdown li {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav .arrow {
        transition: transform 0.3s ease;
        display: inline-block;
        opacity: 0.6;
    }

    .mobile-open > a .arrow {
        transform: rotate(90deg);
        opacity: 1;
    }

    .sub-dropdown::before {
        display: none; /* Hide the arrow pointer on mobile */
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-content {
        padding-top: 4rem;
    }

}

@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .services-grid,
    .project-grid,
    .blog-grid,
    .video-grid,
    .gallery-grid,
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-nav.prev {
        left: 0.8rem;
    }

    .hero-nav.next {
        right: 0.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        height: 40px;
    }

    .rating-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Contact Widget */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

.fc-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
}

.fc-label {
    position: absolute;
    right: 60px;
    background: #0a1a2a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fc-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0a1a2a;
}

.fc-item:hover .fc-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fc-item svg {
    width: 24px;
    height: 24px;
}

.fc-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fc-item.phone {
    background: #3498db;
}

.fc-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fc-item.whatsapp {
    background: #25D366;
}

@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
    }
    
    .fc-item {
        width: 45px;
        height: 45px;
    }

    .fc-label {
        display: none;
    }
}


