* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


/* fonts */
@font-face {
    font-family: head;
    src: url(/assets/fonts/gilroy/Gilroy-SemiBold.ttf);
}

@font-face {
    font-family: para;
    src: url(/assets/fonts/urbanist/Urbanist-VariableFont_wght.ttf);
}

.contact-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.contact-loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #D4FF47;
    /* Lime accent */
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

.contact-loader-text {
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    color: #0c1a32;
}

/* Modal Styling */
.status-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 26, 50, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.status-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#status-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

.icon-success {
    background: #ecfdf5;
    color: #10b981;
}

.icon-error {
    background: #fef2f2;
    color: #ef4444;
}

#status-title {
    font-family: serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0c1a32;
}

#status-msg {
    font-family: sans-serif;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
}

.status-close-btn {
    background: #1D4B67;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* fonts */

/* main-header-start */
#site-header {
    padding: 20px 5%;
    border-bottom: 1px solid rgba(29, 75, 103, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Desktop Padding Constraints */
@media (min-width: 1200px) {
    #site-header {
        padding: 20px 200px;
    }
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid #1D4B67; */
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Navigation Links Logic */
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    gap: 20px;
    /* Takes up equal space to push logo to center */
}

.nav-links-right {
    justify-content: flex-end;
}

.nav-links li a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    padding: 10px 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-family: para;
}

/* Underline Animation */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #1D4B67;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 70%;
}

.nav-links li a:hover {
    color: #1D4B67;
}

.main-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    z-index: 2002;
}

.main-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #1D4B67;
    cursor: pointer;
    z-index: 2005;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2001;
    transition: none;
    /* Handled by GSAP */
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 25px 0;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: #1D4B67;
    font-size: 32px;
    font-weight: 600;
    font-family: para;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    #site-header {
        padding: 15px 5%;
    }

    .nav-links {
        display: none;
    }

    /* Hide desktop links */

    .menu-toggle {
        display: block;
    }

    /* Show hamburger */

    .main-logo {
        margin-right: auto;
        /* Push logo to the left on mobile */
        flex: 1;
        justify-content: flex-start;
    }

    .main-logo img {
        width: 100px !important;
    }
}

/* main-header-end   */


/* home-hero-section-start */
.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    /* Prevents mobile jumpiness */
    overflow: hidden;
    background: #000;
}

.home-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.home-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.home-hero-slide.is-active .home-hero-image {
    transform: scale(1);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 3;
}

.home-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0 20px;
    margin-top: 60px;
    width: 100%;
    max-width: 1000px;
}

.home-hero-heading {
    font-family: 'head', sans-serif;
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1) 0.5s;
}

.home-hero-para {
    font-family: 'para', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    max-width: 850px;
    text-align: center;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1) 0.7s;
}

.home-hero-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1) 0.9s;
}

/* Entrance Animation Trigger */
.home-hero-slide.is-active .home-hero-heading,
.home-hero-slide.is-active .home-hero-para,
.home-hero-slide.is-active .home-hero-button {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .home-hero-heading {
        font-size: 48px;
    }

    .home-hero-para {
        font-size: 18px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .home-hero-content {
        margin-top: 40px;
        padding: 0;
    }

    .home-hero-heading {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .home-hero-para {
        font-size: 18px;
        margin-bottom: 30px;
        font-weight: 600;
        display: none;
    }

    .home-hero-button {
        padding: 15px 30px;
        font-size: 0.75rem;
    }

    /* Remove BR on mobile for cleaner wrapping */
    .home-hero-heading br {
        display: none;
    }

    .desktop-only{
        display: none;
    }
}


/* --- QUICK INFO SECTION (THE OVERLAPPER) --- */
.home-quick-info-section {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    background-color: #c2c2c2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 200px;
    box-shadow: 0px -20px 50px rgba(0, 0, 0, 0.1);
}

.home-quick-info-container {
    /* max-width: 1100px; */
    text-align: left;
}

.home-quick-info-tag {
    display: block;
    font-family: head, sans-serif;
    font-size: 26px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 40px;
}

.home-quick-info-main-para {
    font-family: para, sans-serif;
    font-size: 4rem;
    font-weight: 400;
    text-align: justify;
    color: #000000;
    line-height: 1.2;
    font-kerning: normal;
    font-variant-ligatures: none;
    margin: 0;
}

@media(max-width: 1550px){
    .home-quick-info-main-para{
        font-size: 3rem;
    }
}

.home-quick-info-main-para .word {
    display: inline-block;
    white-space: nowrap;
}

.home-quick-info-main-para .char {
    display: inline-block;
}


@media(max-width: 768px) {
    .home-quick-info-section {
        padding: 70px 20px;
        min-height: 0vh;
    }

    .home-quick-info-main-para {
        font-size: 1.5rem;
        text-align: justify;
        font-weight: 500;
    }
}

/* home-quick-info-section-end   */



/* home-number-section-start */
/* --- Number Section Scoped Styles --- */
.home-number-section {
    width: 100%;
    background-color: #c2c2c2;
    transition: background-color 0.6s ease-in-out;
    position: relative;
    padding: 0 5%;
    z-index: 10;
    border-top: 1px solid #fff;
    box-sizing: border-box;
}

.home-number-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* Crucial for sticky */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 5%;
}

/* Right Side: Sticky Heading */
.home-number-right {
    width: 50%;
    position: sticky;
    top: 10%;
    height: auto;
    padding-top: 80px;
    padding-bottom: 350px;
    transition: color 0.6s ease-in-out;
}

.home-number-tag {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'para', sans-serif;
    font-size: 14px;
}

.home-number-heading {
    font-size: 2.5rem;
    line-height: 1.1;
    font-family: 'head', serif;
    margin: 0;
}

/* Left Side: Scrolling Items */
.home-number-left {
    width: 50%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.home-number-item {
    min-height: 80vh;
    padding-left: 100px;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}

.home-number-item:last-child {
    border-bottom: none;
}

.home-number-svg-wrapper {
    margin-bottom: 30px;
}

.draw-svg {
    width: 180px;
    height: auto;
}

@media(max-width: 1550px){
    .draw-svg{
        width: 140px;
    }
}

.home-number-subheading {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'head', serif;
    line-height: 1.1;
}

.home-number-para {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
    font-family: 'para', sans-serif;
    max-width: 480px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .home-number-container {
        flex-direction: column;
    }

    .home-number-right {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        padding: 60px 0 20px 0;
    }

    .home-number-left {
        width: 100%;
        border-left: none;
    }

    .home-number-item {
        min-height: auto;
        padding: 60px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    .home-number-heading {
        font-size: 1.2rem;
    }

    .home-number-subheading {
        font-size: 25px;
        text-align: center;
    }

    .home-number-para {
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }

    .home-number-svg-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



/* --- Service Section Base --- */
.hns-section-wrapper {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #1a1a1a;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.hns-text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.hns-main-heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    /* Fluid typography */
    line-height: 1.1;
    font-family: 'head', serif;
    margin-bottom: 24px;
    color: #0c1a32;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
}

.hns-main-paragraph {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.6;
    color: #505e75;
    font-family: 'para', sans-serif;
    max-width: 900px;
    text-align: center;
}

/* --- Card Grid --- */
.hns-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 50px;
}

.hns-service-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease;
    padding: 24px;
    border-radius: 32px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
}

.hns-image-container {
    width: 100%;
    height: 400px;
    /* Reduced from 500px for better desktop balance */
    overflow: hidden;
    margin-bottom: 25px;
    background: #f0f0f0;
    border-radius: 20px;
}

.hns-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hns-service-card:hover .hns-card-image {
    transform: scale(1.05);
}

.hns-card-tag {
    font-family: 'para', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0056b3;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.hns-card-heading {
    font-size: 1.8rem;
    /* Slightly smaller for better fit */
    font-weight: 700;
    line-height: 1.2;
    color: #0c1a32;
    font-family: 'head', serif;
    margin-bottom: 12px;
}

.hns-card-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #64748b;
    font-family: 'para', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.hns-card-cta {
    padding: 16px 30px;
    background-color: #0056b3;
    color: #fff;
    font-family: 'para', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-self: center;
    justify-content: center;
    width: 60%;
    border-radius: 12px;
    font-size: 0.85rem;
}

.hns-card-cta:hover {
    letter-spacing: 2px;
    width: 100%;
    background-color: #0c1a32;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1100px) {
    .hns-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hns-image-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hns-section-wrapper {
        padding: 60px 10px;
    }

    .hns-card-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hns-image-container {
        height: 300px;
    }

    .hns-card-heading {
        font-size: 1.6rem;
    }

    .hns-card-cta {
        width: 100%;
        /* Full width for mobile thumbs */
    }

    .hns-text-center {
        margin-bottom: 0px;
    }

    .hns-main-heading {
        font-size: 2rem;
    }

    .hns-main-paragraph {
        font-size: 17px;
    }

    .hns-card-description {
        font-size: 16px;
        font-weight: 600;
    }
}

/* home-serrvice-section-end   */


/* home-project-section-start */
.home-project-wrapper {
    padding: 100px 0;
    /* No side padding so slider goes edge-to-edge */
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.home-project-header {
    margin-bottom: 60px;
    padding: 0 5%;
}

.home-project-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0c1a32;
    margin-bottom: 15px;
    font-family: 'head', serif;
    text-align: center;
}

.home-project-supporting-line {
    font-size: 1.5rem;
    color: #505e75;
    font-family: 'para', sans-serif;
    text-align: center;
    font-weight: 600;
}

/* --- Slider Setup --- */
.home-project-slider {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.home-project-slider:active {
    cursor: grabbing;
}

.home-project-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Critical for continuous flow */
}

.home-project-card {
    width: 450px;
    /* Base width on desktop */
    flex-shrink: 0;
    text-decoration: none;
}

.home-project-image-box {
    width: 100%;
    height: 550px;
    /* Consistent image height */
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.home-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Card Hover: Subtle image scale */
.home-project-card:hover .home-project-image {
    transform: scale(1.05);
}

.home-project-details {
    padding: 0 10px;
}

.home-project-title {
    font-family: 'head', serif;
    font-size: 1.6rem;
    color: #0c1a32;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.home-project-meta {
    font-family: 'para', sans-serif;
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .home-project-wrapper {
        padding: 60px 0;
    }

    .home-project-card {
        width: 300px;
    }

    /* Smaller cards on mobile */
    .home-project-image-box {
        height: 400px;
    }

    .home-project-title {
        font-size: 1.3rem;
    }

    .home-project-meta {
        font-size: 0.9rem;
    }

    .home-project-heading {
        font-size: 2rem;
        text-align: center;
    }

    .home-project-supporting-line {
        font-weight: 600;
        text-align: center;
        font-size: 1.2rem;
    }
}

/* home-project-section-end   */


/* home-brand-section-start */
.home-brand-section {
    padding: 100px 5%;
    /* Changed from fixed 150px to percentage */
    position: relative;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 8vw, 100px);
    overflow: hidden;
}

.home-brand-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.home-brand-top h1 {
    font-family: 'head', serif;
    font-size: clamp(32px, 5vw, 60px);
    /* Fluid font size */
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    color: #0c1a32;
}

.home-brand-top h4 {
    font-family: 'para', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 2.5vw, 30px);
    /* Fluid font size */
    margin: 0;
    color: #505e75;
}

.home-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.home-brand-grid img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
    .home-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid on tablets */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .home-brand-section {
        padding: 60px 20px;
    }

    .home-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 per row for logos */
        gap: 20px;
    }

    .home-brand-grid img {
        height: 100px;
        /* Smaller logos for mobile */
    }

    .home-brand-top h1 {
        font-size: 2rem;
    }
}

/* home-brand-section-end   */



/* home-method-section-start */
.home-method-section {
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
    z-index: 100;
}

.home-method-container {
    max-width: 1400px;
    margin: 0 auto;
}

.home-method-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.home-method-main-heading {
    font-family: 'head', serif;
    font-size: clamp(32px, 3vw, 60px);
    text-transform: uppercase;
    line-height: 1.1;
    flex: 1;
    margin: 0;
    color: #0c1a32;
}

.home-method-main-desc {
    max-width: 500px;
    font-size: 18px;
    color: #505e75;
    line-height: 1.6;
    font-family: 'para', sans-serif;
    font-weight: 500;
}

/* --- THE CARD LAYOUT --- */
.home-method-layout {
    position: relative;
    height: 1200px;
    /* Base desktop height for absolute positioning */
    margin-top: 50px;
}

.home-method-card {
    width: 380px;
    padding: 60px 35px;
    border-radius: 30px;
    position: absolute;
    opacity: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-method-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 43, 67, 0.95), rgba(12, 43, 67, 0.4));
    z-index: 1;
}

/* Desktop Positions */
.card-01 {
    top: 0;
    left: 0%;
    background-image: url('/assets/images/banner/assessment.jpg');
    background-size: cover;
}

.card-02 {
    top: 180px;
    left: 35%;
    background-image: url('/assets/images/banner/design.jpg');
    background-size: cover;
}

.card-03 {
    top: 400px;
    left: 70%;
    background-image: url('/assets/images/banner/execution.jpg');
    background-size: cover;
}

.card-04 {
    top: 620px;
    left: 35%;
    background-image: url('/assets/images/banner/verification.jpg');
    background-size: cover;
}

.card-05 {
    top: 800px;
    left: 0%;
    background-image: url('/assets/images/banner/handover.jpg');
    background-size: cover;
}

.home-method-number-wrap {
    width: 45px;
    height: 45px;
    background: #D4FF47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'para', sans-serif;
    position: relative;
    z-index: 10;
    color: #0c1a32;
}

.home-method-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'head', serif;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    color: #fff;
}

.home-method-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'para', sans-serif;
    position: relative;
    z-index: 10;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .home-method-card {
        width: 320px;
    }

    .card-03 {
        left: 68%;
    }
}

@media (max-width: 991px) {
    .home-method-header {
        flex-direction: column;
        gap: 20px;
    }

    .home-method-layout {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .home-method-card {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        opacity: 1;
        padding: 40px 25px;
        /* GSAP will handle the animation, but safety first */
    }
}

@media (max-width: 600px) {
    .home-method-layout {
        grid-template-columns: 1fr;
    }

    .home-method-section {
        padding: 60px 5%;
    }

    .home-method-main-heading {
        font-size: 1.5rem;
    }
}

/* home-method-section-end   */



/* home-cta-section-start */
.home-cta-section {
    position: relative;
    width: 95%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('/assets/images/banner/cta-banner.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 40px;
    margin: 40px auto;
    overflow: hidden;
}

.home-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.home-cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0px 80px;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.home-cta-main-heading {
    font-family: 'head', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.home-cta-subtext {
    font-family: 'para', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: #cccccc;
    max-width: 550px;
    line-height: 1.6;
}

.home-cta-verticals-wrap {
    display: flex;
    justify-content: flex-end;
}

.home-cta-verticals-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-cta-verticals-list li {
    font-family: 'para', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-cta-verticals-list i {
    color: #D4FF47;
    font-size: 1.2rem;
}

/* Fixed Action Bar */
.home-cta-action-bar {
    grid-column: span 2;
    background-color: #D4FF47;
    padding: 15px 40px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    transform-origin: left center;
    /* For smooth GSAP scaling */
}

.home-cta-action-text {
    font-family: 'para', sans-serif;
    font-weight: 800;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #000;
    text-transform: uppercase;
}

.home-cta-action-btn {
    background-color: #1D4B67;
    color: #fff;
    padding: 12px 30px;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'para', sans-serif;
    white-space: nowrap;
}

.home-cta-action-btn:hover {
    background-color: #000;
}

@media(max-width: 1550px) {
    .home-cta-main-heading {
        font-size: 50px;
    }
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .home-cta-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-cta-verticals-wrap {
        justify-content: flex-start;
    }

    .home-cta-action-bar {
        grid-column: span 1;
        flex-direction: column;
        gap: 20px;
        border-radius: 25px;
        padding: 30px 20px;
        text-align: center;
    }

    .home-cta-action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .home-cta-section {
        width: 100%;
        margin: 20px 0;
        border-radius: 0;
        padding: 60px 20px;
    }

    .home-cta-container {
        padding: 0px;
    }

    .home-cta-main-heading {
        font-size: 30px;
    }
}

/* home-cta-section-end   */



/* main-footer-section-start */
/* REVEAL LOGIC */
.main-footer-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10000;
    overflow: hidden;
}

.main-footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px 5% 0 5%;
    box-sizing: border-box;
    flex-grow: 1;
}

@media(max-width: 1550px){
    .main-footer-container{
        padding: 20px 5% 0 5%;
    }
}

/* TOP SECTION */
.main-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.main-footer-small-tag {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    font-family: 'para', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.main-footer-email {
    font-size: clamp(24px, 4.5vw, 64px);
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-family: 'head', serif;
    line-height: 1;
}

/* CTA CARD */
.main-footer-cta-card {
    background-color: #1D4B67;
    color: #ffffff;
    padding: 30px;
    border-radius: 25px;
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main-footer-card-title {
    font-size: 24px;
    font-family: 'head', serif;
    text-transform: uppercase;
}

.main-footer-card-btn {
    background: #ffffff;
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    gap: 20px;
    font-family: 'para', sans-serif;
    transition: 0.3s;
}

/* MIDDLE SECTION */
.main-footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.main-footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer-nav-link {
    font-size: clamp(15px, 1.5vw, 28px);
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-family: 'para', sans-serif;
}


.main-footer-nav-link:hover {
    border-bottom: 1px solid #1D4B67;
    width: fit-content;
}

.main-footer-office-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.main-footer-office-col a {
    text-decoration: none;
    color: #000;
    font-family: para;
    font-weight: 500;
    font-size: 18px;
}

.main-footer-office-col a:hover {
    border-bottom: 1px solid #1D4B67;
    width: fit-content;
}

.main-footer-office-label {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'para', sans-serif;
    margin-bottom: 5px;
}

.main-footer-office-col a {
    text-decoration: none;
    color: #444;
    font-family: 'para', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* BRAND LOGO AREA */
.main-footer-brand-wrap {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    gap: 20px;
}

.footer-logo-icon {
    width: 12%;
    z-index: 2;
}

.footer-logo-icon-2 {
    width: 70%;
}

.main-footer-giant-brand {
    font-size: 13rem;
    /* Makes it massive on all screens */
    font-weight: 800;
    color: #1D4B67;
    font-family: 'head', serif;
    text-align: center;
    text-transform: uppercase;
    line-height: 0.8;
    margin: 0;
    white-space: nowrap;
}

/* BOTTOM BAR */
.main-footer-bottom-bar {
    background-color: #D4FF47;
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    margin: 0 -5.6%;
    font-size: 13px;
    font-weight: 500;
}

.footer-social-links a {
    color: #000;
    text-decoration: none;
    margin-left: 20px;
}

.footer-loc {
    font-family: para;
    font-weight: 600;
    font-size: 15px;
}

.footer-social-links a {
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    font-family: para;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
}

.footer-copy {
    font-family: para;
    font-weight: 600;
    font-size: 15px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .main-footer-top {
        flex-direction: column;
    }

    .main-footer-cta-card {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 20px;
    }

    .main-footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .main-footer-office-col {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .main-footer-section {
        z-index: 100;
    }

    .main-footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-social-links {
        margin-left: 0;
    }

    .footer-social-links a:first-child {
        margin-left: 0;
    }

    .main-footer-giant-brand {
        font-size: 10vw;
    }

    .main-footer-office-col {
        align-items: flex-start;
    }

    .footer-loc {
        display: none;
    }

}

/* main-footer-section-end   */



.about-hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    /* Ensures space on short, wide screens */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0c1a32;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* Extra height for parallax */
    background-image: url('/assets/images/banner/hero-3.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    /* Adjusted gradient for mobile - more vertical on small screens */
    background: linear-gradient(to right,
            rgba(12, 26, 50, 0.95) 0%,
            rgba(12, 26, 50, 0.8) 40%,
            rgba(12, 26, 50, 0.3) 100%);
    z-index: 2;
}

.about-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 100px;
    padding: 0 5%;
}

.about-hero-heading {
    font-family: 'head', serif;
    /* Fluid font size: min 36px, max 72px */
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.about-hero-paragraph {
    font-family: 'para', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-left: 4px solid #1f4778;
    /* Using your lime accent color */
    padding-left: 25px;
    max-width: 700px;
}

.desktop-only {
    display: block;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
    .about-hero-overlay {
        /* Darker overlay for tablets */
        background: linear-gradient(to bottom,
                rgba(12, 26, 50, 0.8) 0%,
                rgba(12, 26, 50, 0.9) 100%);
    }
}

@media (max-width: 768px) {
    .about-hero-wrapper {
        height: auto;
        padding: 160px 0 100px 0;
        /* Space for fixed header if you have one */
    }

    .about-hero-container {
        margin-top: 50px;
    }

    .about-hero-heading {
        letter-spacing: -0.5px;
        margin-bottom: 20px;
        font-size: 30px;
    }

    .about-hero-paragraph {
        padding-left: 15px;
    }

    .about-hero-desktop-only {
        display: none;
    }
}


.about-section-wrapper {
    padding: 120px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-container {
    max-width: 1500px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

/* Text Side */
.about-content-block {
    display: flex;
    flex-direction: column;
}

.about-sub-tag {
    font-family: 'para', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0056b3;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-sub-tag::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #0056b3;
}

.about-main-heading {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-family: 'head', serif;
    font-weight: 800;
    color: #0c1a32;
    margin-bottom: 35px;
    line-height: 1.1;
}

.about-text-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #4a5568;
    font-family: 'para', sans-serif;
    font-weight: 500;
}

/* Emphasis Paragraph (The rejection of brand bias) */
.about-description-featured {
    font-size: 1.2rem;
    color: #0c1a32;
    padding: 30px;
    background-color: #f8fafc;
    border-left: 4px solid #0c1a32;
    /* font-style: italic; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

/* Visual Side */
.about-visual-block {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.about-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    /* Modern professional desaturation */
}

/* Technical Badge */
.about-stat-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: #0056b3;
    color: #fff;
    padding: 40px;
    border-radius: 4px;
    z-index: 2;
}

.about-badge-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.about-badge-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'head', serif;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual-block {
        min-height: 400px;
        order: -1;
        /* Image appears first on mobile */
    }

    .about-stat-badge {
        bottom: 20px;
        left: 20px;
        padding: 25px;
    }
}

@media(max-width: 768px) {
    .about-description {
        font-size: 1.1rem;
    }
}




.msp-section-wrapper {
    padding: 120px 5%;
    background-color: #ffffff;
    overflow: hidden;
}

.msp-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
    position: relative;
}

/* Central vertical line connecting sections (Desktop Only) */
.msp-main-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e2e8f0 10%, #e2e8f0 90%, transparent);
}

.msp-item-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    width: 100%;
    opacity: 0;
    /* Handled by GSAP */
}

.msp-content-box {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.msp-watermark {
    position: absolute;
    font-size: clamp(8rem, 12vw, 12rem);
    font-family: 'head', serif;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 1;
    top: -20px;
    user-select: none;
    pointer-events: none;
}

/* Desktop Alternating Logic */
.msp-item-row:nth-child(even) .msp-content-box {
    grid-column: 2;
    border-left: 5px solid #1D4B67;
}

.msp-item-row:nth-child(odd) .msp-content-box {
    grid-column: 1;
    text-align: right;
    border-right: 5px solid #1D4B67;
}

.msp-item-row:nth-child(odd) .msp-watermark {
    right: -20px;
}

.msp-item-row:nth-child(even) .msp-watermark {
    left: -20px;
}

/* Typography */
.msp-label {
    font-family: 'para', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #1D4B67;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.msp-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-family: 'head', serif;
    font-weight: 800;
    color: #0c1a32;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.msp-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #505e75;
    font-family: 'para', sans-serif;
    max-width: 550px;
}

@media (max-width: 991px) {
    .msp-section-wrapper {
        padding: 80px 5%;
    }

    .msp-main-container::before {
        left: 20px;
    }

    .msp-main-container {
        gap: 80px;
    }

    .msp-item-row {
        grid-template-columns: 1fr;
    }

    .msp-item-row:nth-child(odd) .msp-content-box,
    .msp-item-row:nth-child(even) .msp-content-box {
        grid-column: 1;
        text-align: left;
        border-right: none;
        border-left: 4px solid #1f4778;
        padding: 20px 0 20px 30px;
    }

    .msp-item-row:nth-child(odd) .msp-watermark,
    .msp-item-row:nth-child(even) .msp-watermark {
        left: 0;
        top: -40px;
        font-size: 6rem;
        opacity: 0.5;
    }

    .msp-description {
        max-width: 100%;
        line-height: 1.5;
    }
}




.about-approach-wrapper {
    padding: 100px 5%;
    background-color: #ffffff;
}

.about-approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-approach-header {
    margin-bottom: 60px;
}

.about-approach-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'head', serif;
    font-weight: 800;
    color: #0c1a32;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

/* --- Improved Bento Grid --- */
.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 column grid for better bento control */
    grid-auto-rows: minmax(320px, auto);
    gap: 20px;
}

.about-approach-card {
    background: #f4f7f9;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Card 1: Featured Big Card */
.featured-card {
    grid-column: span 2;
    grid-row: span 2;
    background-image: url('/assets/images/banner/approach-1.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    border: none;
}

.about-approach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 26, 50, 0.9), rgba(12, 26, 50, 0.4));
    z-index: 1;
}

/* Grid Layout Assignments */
.about-approach-card:nth-child(2) {
    grid-column: span 2;
}

.about-approach-card:nth-child(3) {
    grid-column: span 2;
}

.about-approach-card:nth-child(4) {
    grid-column: span 2;
}

.about-approach-card:nth-child(5) {
    grid-column: span 2;
}

/* Hover State */
.about-approach-card:not(.featured-card):hover {
    background: #ffffff;
    border-color: #1D4B67;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.featured-card:hover {
    transform: scale(0.99);
    /* Subtle press effect for the big card */
}

/* Typography */
.about-approach-number {
    font-family: 'para', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #1D4B67;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.featured-card .about-approach-number {
    color: #0056b3;
    /* Lime accent on dark card */
}

.about-approach-title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-family: 'head', serif;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.about-approach-para {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    font-weight: 500;
    color: #505e75;
    font-family: 'para', sans-serif;
    position: relative;
    z-index: 2;
}

.featured-card .about-approach-para {
    color: #e2e8f0;
    font-size: 1.4rem;
    max-width: 90%;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .about-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-approach-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .about-approach-card {
        padding: 30px;
        min-height: 250px;
    }

    .featured-card {
        min-height: 400px;
    }

    .about-approach-heading {
        text-align: center;
    }

    .featured-card .about-approach-para {
        font-size: 1.1rem;
    }

    .about-approach-para {
        font-size: 1.1rem;
    }

    .about-approach-title {
        font-size: 1.4rem;
    }

}



.contact-form-section {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.contact-form-container {
    width: 100%;
    max-width: 1200px;
}

.contact-form-heading {
    font-family: 'head', serif;
    font-size: 3rem;
    color: #0c1a32;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-form-subtext {
    font-family: 'para', sans-serif;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-label {
    font-family: 'para', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1D4B67;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-family: 'para', sans-serif;
    font-size: 1.1rem;
    color: #0c1a32;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-bottom-color: #0056b3;
    /* Brand Accent */
}

.contact-form-error {
    font-family: 'para', sans-serif;
    font-size: 0.8rem;
    color: #ef4444;
    display: none;
    /* Hidden by default */
    margin-top: 5px;
}

.contact-form-button {
    margin-top: 20px;
    padding: 18px 40px;
    background-color: #1D4B67;
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'para', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    transition: all 0.3s ease;
}

.contact-form-button:hover {
    background-color: #0c1a32;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-heading {
        font-size: 2.2rem;
    }

    .contact-form-button {
        width: 100%;
    }
}