/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.section {
    padding: 90px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

h1,
h2,
h3,
h4 {
    color: #10233e;
}

h2 {
    font-size: 44px;
    line-height: 1.2;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #2563eb,
        #10233e
    );
    color: #ffffff;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    color: #10233e;
    font-size: 18px;
}

.logo-text small {
    margin-top: 4px;
    color: #6b7280;
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-button {
    padding: 11px 18px;
    border-radius: 10px;
    background: #10233e;
    color: #ffffff !important;
}

.menu-button {
    display: none;
    border: none;
    background: transparent;
    color: #10233e;
    font-size: 28px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(37, 99, 235, 0.14),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f7faff
        );
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.hero-content h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #10233e;
    font-size: 64px;
    line-height: 1.08;
}

.hero-content p {
    max-width: 680px;
    color: #64748b;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 32px 0 25px;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.button:hover {
    transform: translateY(-2px);
}

.primary-button {
    background: #2563eb;
    color: #ffffff;
}

.primary-button:hover {
    background: #1d4ed8;
}

.secondary-button {
    border: 1px solid #dbe3ec;
    background: #ffffff;
    color: #10233e;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}

.hero-card {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #10233e,
        #1b3f6c
    );
    box-shadow: 0 25px 70px rgba(16, 35, 62, 0.25);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #54d98c;
}

.hero-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
    color: #bcd2ff;
    font-weight: 700;
}

.hero-step small {
    color: #94a3b8;
    font-size: 11px;
}

.hero-step h3 {
    margin-top: 3px;
    color: #ffffff;
    font-size: 15px;
}

.hero-card-link {
    display: inline-block;
    margin-top: 24px;
    color: #dbeafe;
    font-weight: 700;
}


/* =========================
   BUSINESS FEATURES
========================= */

.business-features {
    background: #10233e;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item strong,
.feature-item span {
    display: block;
}

.feature-item strong {
    color: #ffffff;
    font-size: 15px;
}

.feature-item span {
    margin-top: 5px;
    color: #a9b8cb;
    font-size: 12px;
}


/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
}

.about-content p {
    color: #64748b;
}

.about-content p + p {
    margin-top: 20px;
}


/* =========================
   SECTION HEADING
========================= */

.light-section {
    background: #f7f9fc;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-heading p {
    margin-top: 16px;
    color: #64748b;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 270px;
    padding: 28px;
    border: 1px solid #e1e8f0;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(16, 35, 62, 0.1);
}

.service-number {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf4ff;
    color: #2563eb;
    font-weight: 700;
}

.service-card h3 {
    font-size: 19px;
}

.service-card p {
    margin-top: 12px;
    color: #64748b;
    font-size: 14px;
}


/* =========================
   PRODUCT CATEGORIES
========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    min-height: 150px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e1e8f0;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #f8fbff
    );
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(16, 35, 62, 0.08);
}

.category-card span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
}

.category-card h3 {
    max-width: 250px;
    font-size: 19px;
}


/* =========================
   PROCESS
========================= */

.process-section {
    background: #10233e;
}

.process-heading h2 {
    color: #ffffff;
}

.process-heading .section-label {
    color: #8db5ff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.process-number {
    display: inline-block;
    margin-bottom: 55px;
    color: #8db5ff;
    font-size: 13px;
    font-weight: 700;
}

.process-card h3 {
    color: #ffffff;
}

.process-card p {
    margin-top: 12px;
    color: #afbed1;
    font-size: 14px;
}


/* =========================
   ENQUIRY
========================= */

.enquiry-section {
    background: linear-gradient(
        135deg,
        #17375f,
        #10233e
    );
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.enquiry-content .section-label {
    color: #8db5ff;
}

.enquiry-content h2 {
    color: #ffffff;
}

.enquiry-content > p {
    margin-top: 18px;
    color: #b5c3d6;
}

.important-note {
    margin-top: 30px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.important-note strong {
    color: #ffffff;
}

.important-note p {
    margin-top: 5px;
    color: #b5c3d6;
    font-size: 13px;
}

.form-wrapper {
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.success-message {
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid #b7e4cb;
    border-radius: 11px;
    background: #eaf8f1;
    color: #116b43;
}

.success-message strong {
    display: block;
}

.success-message p {
    margin-top: 4px;
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: #26364d;
    font-size: 13px;
    font-weight: 700;
}

.form-group label span {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dce4ed;
    border-radius: 11px;
    outline: none;
    background: #fbfcfe;
    color: #1f2937;
    transition: 0.25s;
}

.form-group input,
.form-group select {
    height: 50px;
    padding: 0 14px;
}

.form-group textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    margin-top: 22px;
    background: #2563eb;
    color: #ffffff;
}

.submit-button:hover {
    background: #1d4ed8;
}

.form-note {
    margin-top: 14px;
    color: #7b8797;
    text-align: center;
    font-size: 11px;
}


/* =========================
   FOOTER
========================= */

.footer{
    padding:70px 0 24px;
    background:#0b1a2f;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.8fr 1fr 1.3fr 1.2fr;
    gap:45px;
}

.footer-logo{
    display:inline-flex;
    margin-bottom:18px;
}

.footer-main-logo{
    width:220px;
    height:auto;
    display:block;
}

.footer-about p,
.footer-contact p,
.footer-info p,
.footer-links a{
    color:#9fb0c5;
    font-size:14px;
    line-height:1.8;
}

.footer h4{
    color:#fff;
    margin-bottom:18px;
    font-size:15px;
}

.footer-links a{
    display:block;
    margin-bottom:10px;
    text-decoration:none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover{
    color:#fff;
}

.footer-contact a,
.footer-bottom a{
    color:#9fb0c5;
    text-decoration:none;
}

.footer-bottom{
    margin-top:45px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#8fa0b6;
    font-size:13px;
}

@media(max-width:1024px){
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:620px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
        width:100%;
    }

    .footer-main-logo{
        width:190px;
        margin:0 auto;
    }

    .footer-links a{
        margin-left:auto;
        margin-right:auto;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}


/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 1024px) {

    .hero-container {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   RESPONSIVE - MOBILE NAV
========================= */

@media (max-width: 850px) {

    .menu-button {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
    }

    .nav-button {
        text-align: center;
    }

    .hero-container,
    .about-grid,
    .enquiry-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */

@media (max-width: 620px) {

    .container {
        width: calc(100% - 28px);
    }

    .section {
        padding: 70px 0;
    }

    h2 {
        font-size: 34px;
    }

    .navbar {
        min-height: 70px;
    }

    .nav-menu {
        top: 70px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .feature-grid,
    .services-grid,
    .category-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-wrapper {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

.reference-box {
    margin-top: 15px;
    padding: 14px;
    border-radius: 10px;
    background: #dff3e8;
}

.reference-box span {
    display: block;
    color: #4b6b59;
    font-size: 12px;
}

.reference-box strong {
    display: block;
    margin-top: 4px;
    color: #0f5132;
    font-size: 18px;
}
.main-logo {
    display: block;
    width: 245px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
}

/* =========================
   FAQ SECTION
========================= */

.faq{
    max-width:900px;
    margin:50px auto 0;
}

.faq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    outline:none;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#1f2937;
    transition:.3s;
}

.faq-question:hover{
    background:#f8fafc;
}

.faq-question i{
    color:#2563eb;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 22px;
    line-height:1.8;
    color:#555;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
}

@media(max-width:768px){

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-answer p{
        padding:0 18px 18px;
    }

}

@media (max-width: 620px) {
    .main-logo {
        width: 190px;
        max-height: 50px;
    }
}


.footer-contact .fa-whatsapp{
    color:#25D366;
    margin-right:8px;
    font-size:17px;
}

.footer-contact .fa-phone{
    color:#4da3ff;
    margin-right:8px;
}

.footer-contact .fa-envelope{
    color:#ffb347;
    margin-right:8px;
}



/* ==========================
   INDUSTRIES
========================== */

.industries-section{
    background:#ffffff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin:50px 0;
}

.industry-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.08);
}

.industry-card i{
    font-size:40px;
    color:#2563eb;
    margin-bottom:20px;
}

.industry-card h3{
    margin-bottom:15px;
    color:#1f2937;
}

.industry-card p{
    color:#6b7280;
    line-height:1.7;
}

.industry-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.industry-content h3{
    margin-bottom:20px;
    color:#1f2937;
}

.industry-content p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:20px;
}

