body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f1523;
}

/* Hero section */
.hero-section {
    /* background: url('img/banner.jpg') no-repeat center center/cover; */
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(15, 21, 35, 0.7); */
    z-index: 0;
}

/* Ensure content stays on top of overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Logo in banner */
.logo-banner {
    position: absolute !important;
    top: 20px;
    /* distance from the top edge */
    left: 20px;
    /* distance from the left edge */
    vertical-align: top;
}

.logo-banner img {
    width: 200px;
    height: auto;
    margin-top: -100px;
}

/* //about */
.display-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.display-row>div {
    padding: 0.25em 1em;
    width: 20%;
}
 .display-row>div>div {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
       align-items: center;
    }
@media (max-width: 720px) {
    .display-row {
        flex-direction: column;
    }

    .display-row>div {
        padding: 1em;
        width: 100%;
    }

    .display-row>div>div {
        display: flex;
        flex-direction: row;
        gap: 0.5em;
        text-align: left;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .logo-banner img {
        width: 400px;
        height: auto;
        margin-top: -100px;
        margin-right: 150px;
    }

}



/* Text styles */
.hero-title {
    font-size: 2.75rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: white;
}

.hero-subtitle span {
    font-weight: 900;
}

/* Responsive typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

.about-section {
    background: #fff;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.about-title span {
    color: #ff0000;
    /* red highlight */
    font-weight: 700;
}

.about-text {
    font-size: 1rem;
    color: #555;
    max-width: 100%;
    margin: 0 auto;
}

.about-icon {
    width: auto;
    height: 50px;
}

.about-item h5 {
    font-size: 1.1rem;
}

/* Desktop adjustments */
@media (min-width: 992px) {
    .about-title {
        font-size: 2rem;
    }

    .about-item h5 {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .about-item {
        display: flex;
        align-items: center;
        justify-content: center;
        /* centers the whole block */
        text-align: left;
        gap: 10px;
    }

    /* Create fixed width for icon column */
    .about-item img.about-icon {
        width: 55px;
        height: auto;
        margin: 0;
        flex-shrink: 0;
        /* prevents shrinking */
    }

    /* Text always starts at same point */
    .about-item h5 {
        margin: 0;
        font-size: 1rem;
        line-height: 1.3;
        min-width: 150px;
        /* ensures consistent text start */
    }
}


.strategy-section {
    background-color: #ff0000;
    /* red background */
}

.strategy-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-highlight {
    font-size: 1.2rem;
}

@media (min-width: 992px) {
    .strategy-text {
        font-size: 1.1rem;
    }

    .strategy-highlight {
        font-size: 1.4rem;
    }
}

.video-section {
    background-color: #ffffff;
    /* white background for contrast */
}

.ratio {
    border-radius: 12px;
    /* rounded corners */
    overflow: hidden;
    /* hide overflow so corners look clean */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
}

.form-section {
    background-color: #ff0000;
}

.form-card {
    background-color: #e60000;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-control,
.form-select {
    color: white !important;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
    border-color: white;
}

.form-select option {
    color: black;
    /* dropdown items readable */
}

.btn-light {
    background-color: #fff;
    color: #ff0000;
}

.form-section {
    background-color: #ff0000;
}

.form-card {
    background-color: #f83e3e;
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 1px solid #efefef;
}

/* White text in placeholders */
::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Input styling */
.form-control,
.form-select {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
    border-color: #ffffff;
}

/* Dropdown options color */
.form-select option {
    color: black;
}

.btn-light {
    background-color: #fff;
    color: #ff0000;
}

.services-section {
    background-color: #fff;
}

.services-section img {
    width: 100px;
    height: auto;
}

.services-section h6 {
    font-size: 1rem;
}

.services-section p {
    margin-bottom: 0.3rem;
}

.services-section hr {
    width: 50%;
    margin: 0.7rem auto;
    border: 0;
    border-top: 1px solid #000000;
}

@media (max-width: 767px) {
    .services-section .service-item {
        display: flex;
        align-items: center;
        /* center vertically */
        gap: 12px;
        max-width: 350px;
        margin: 0 auto 1.5rem;
        text-align: left;
    }

    .services-section .service-item img {
        flex-shrink: 0;
        width: 36px;
    }

    .services-section .service-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* center text with icon */
        line-height: 1.3;
    }

    .services-section .service-item h6 {
        margin: 0 0 3px;
    }

    .services-section .service-item p {
        margin: 0;
    }

    .services-section .service-item hr {
        width: 100%;
        margin: 4px 0 0;
    }

    .service-row {
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-item {
        padding-bottom: 25px;
        border-bottom: 1px solid black;
    }
}

.about-item {
    display: flex;
    align-items: center;
    text-align: left;
    /* align text beside icon */
    gap: 10px;
    /* space between icon and text */
}

/* Section background and title */
.why-choose {
    background-color: #e30613;
    /* exact red */
}

.section-title {
    font-weight: bold;
    color: #fff;
}

/* White stat cards */
.why-box {
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Text colors */
.red-text {
    color: #e30613;
    font-weight: bold;
}

.black-text {
    color: #000;
    font-weight: bold;
}

/* Paragraph style */
.why-box p {
    font-size: 18px;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .why-box {
        padding: 15px 10px;
    }

    .why-box p {
        font-size: 15px;
    }

    .whatsapp-float {
        display: none;
    }

    .phone-float {
        display: none;
    }

    #strategy-form {
        margin-bottom: 20px;
    }
}

body {
    background: #ffffff;
    /* Ensures white background */
    margin: 0;
}

.our-customers {
    text-align: center;
    padding: 40px 0;
}

.our-customers h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.customer-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* boxes touching */
    width: 100%;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    /* keep boxes square */
}

/* 1. Full red background */
.logo-box.red {
    background-color: red;
}

/* 2. Red background with white inner box */
.logo-box.red-bg-white {
    background-color: red;
}

.logo-box.red-bg-white .inner-box {
    background-color: white;
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* 3. Full white background with red inner box */
.logo-box.white-bg-red {
    background-color: white;
}

.logo-box.white-bg-red .inner-box {
    background-color: red;
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.logo-box img {
    max-width: 60%;
    max-height: 60%;
}

/* Always keep 3 columns on all screens */
@media (max-width: 768px) {
    .customer-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Top Text Section - White Background */
.cta-text-section {
    background: white;
    text-align: center;
    padding: 40px 20px;
}

.cta-text-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: black;
}

.cta-text-section h2 span {
    color: red;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    background: red;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* Red Section */
.cta-form-section {
    background: red;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Container */
.form-container {
    background: #ff3b3b;
    padding: 25px;
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
    border: 1px solid #efefef;
}

/* Heading inside form */
.form-container h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: white;
}

.form-container p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: white;
}

/* Labels */
.form-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
    color: white;
}

/* Input and select styles */
.form-container input,
.form-container select {
    width: 100%;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.form-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.form-container select {
    background: transparent;
    color: white;
}

/* Equal spacing between fields */
.form-group {
    margin-bottom: 18px;
}

/* Two-column name fields */
.name-fields {
    display: flex;
    gap: 12px;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: white;
    color: red;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

/* Fix desktop form alignment */
@media (min-width: 900px) {

    .cta-text-section,
    .cta-form-section {
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        box-sizing: border-box;
        padding: 60px;
    }

    .cta-text-section {
        text-align: left;
    }

    .cta-form-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .services-section hr {
        display: none;
    }

    /* Hero section */
    .hero-section {
        min-height: 100vh;
        /* background: url('img/banner.jpg') no-repeat center center/cover; */
        position: relative;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

}

/* Name fields: label under the input line */
.name-fields input {
    margin-bottom: 2px;
}

.name-fields small {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 13px;
    right: 40px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 40px;
    background-color: red;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.mobile-contact-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.call-btn {
    background-color: #ff493b;
    /* Red */
}

.whatsapp-btn {
    background-color: #ffffff;
    color: #ff493b;
    /* Red text */
    border-left: 1px solid #ddd;
}

.whatsapp-btn i {
    color: #ff493b;
}

.mobile-contact-bar i {
    margin-right: 6px;
}

@media (min-width: 768px) {
    .mobile-contact-bar {
        display: none;
        /* Hide on desktop */
    }
}

/* overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* box */
.popup-box {
    position: relative;
    width: 340px;
    background: #fff;
    border-radius: 14px;
    /* overflow: hidden; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* red header */
.popup-header {
    background: #d60000;
    padding: 16px;
    text-align: center;
    border-top-left-radius: 14px;
}

.popup-header h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

/* CORNER CLOSE (round, on corner) */
.popup-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #d60000;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

/* form */
.popup-form {
    padding: 16px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 26px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.icon {
    color: #d60000;
    font-size: 16px;
}

/* make input text + placeholders RED and readable */
.input-group input,
.input-group textarea {
    flex: 1;
    border: 0;
    background: transparent;
    outline: 0;
    font-size: 14px;
    color: #d60000;
    /* typed text red */
}

.input-group textarea {
    resize: none;
    height: 68px;
}

/* placeholder red */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #d60000;
    opacity: .9;
}

/* button */
.send-btn {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: #d60000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 0;
    cursor: pointer;
}

.send-btn:hover {
    background: #b80000;
}

/* Close Button - inside corner */
.popup-close {
    position: absolute;
    top: -12px;
    right: -9px;
    background-color: white;
    /* remove red circle background */
    border: none;
    color: #b80000;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

/* Input Group - align icon center */
.input-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.icon {
    color: #d60000;
    font-size: 16px;
    display: flex;
    align-items: center;
    /* ensures icon is vertically centered */
}

.input-group-textarea {
    resize: none;
    min-height: 40px;
    /* enough space */
    padding: 0px 0 0 13px;
    /* less padding so placeholder sits mid */
    line-height: 61px;
}