/*header*/


/*about*/
.about-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #071a24, #0b2c3a);
    color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h1,
.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    opacity: 0.85;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-highlights div {
    margin-bottom: 10px;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* TRUST BAR */
.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 60px 10%;
    background: #0b1c24;
    color: #fff;
}

.trust-item h3 {
    color: #ff8c00;
}
.logo img {
    height: 70px;   /* 👈 bigger */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255,140,0,0.4));
}
.logo {
    display: flex;
    align-items: center;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}




/*whatsapp*/


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}






/* WHY CHOOSE US */
.why-section {
    padding: 80px 10%;
    background: #071a24;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    opacity: 0.7;
    margin-bottom: 40px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-box {
    background: #0b2c3a;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.why-box:hover {
    transform: translateY(-10px);
    background: #0f3a4d;
    border: 1px solid rgba(255,140,0,0.4);
    box-shadow: 0 10px 30px rgba(255,140,0,0.2);
}

.why-box h3 {
    margin-bottom: 10px;
    color: #ff8c00;
}

.why-box p {
    font-size: 14px;
    opacity: 0.8;
}

/* HOVER EFFECT */
.why-box:hover .icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 12px rgba(255,140,0,0.8);
}
.icon {
    font-size: 30px;
    margin-bottom: 12px;
    display: inline-block;
    transition: 0.3s ease;
}
.why-box {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.why-box.show {
    opacity: 1;
    transform: translateY(0);
}
.why-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,140,0,0.2), transparent);
    transition: 0.5s;
}

.why-box:hover::before {
    left: 100%;
}


/* our process */

.process-section {
    padding: 80px 10%;
    background: #0b1c24;
    text-align: center;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-step {
    background: #0b2c3a;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}
@media(max-width: 992px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .process-container {
        grid-template-columns: 1fr;
    }
}
.step-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    transition: 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 12px rgba(255,140,0,0.8);
}
.process-step:hover {
    transform: translateY(-10px);
    background: #0f3a4d;
    border: 1px solid rgba(255,140,0,0.4);
    box-shadow: 0 10px 30px rgba(255,140,0,0.2);
}
.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,140,0,0.2),
        transparent
    );
    transition: 0.5s;
}

.process-step:hover::before {
    left: 100%;
}






/* SOCIAL RIGHT */
.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    font-size: 14px;
}

/* COLORS */
.social a:nth-child(1) { background: #E1306C; }
.social a:nth-child(2) { background: #1877F2; }
.social a:nth-child(3) { background: #0A66C2; }
.social a:nth-child(4) { background: #FF0000; }



/*mobile responsiveness*/
/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 992px){

    /* HEADER */
    .header{
        padding: 12px 5%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo{
        width: 100%;
        justify-content: center;
    }

    .nav-menu{
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .social{
        width: 100%;
        justify-content: center;
    }

    /* ABOUT SECTION */
    .about-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-highlights{
        text-align: left;
        display: inline-block;
    }

    /* WHY SECTION */
    .why-container{
        grid-template-columns: repeat(2,1fr);
    }

    /* PROCESS */
    .process-container{
        grid-template-columns: repeat(2,1fr);
    }

    /* TRUST BAR */
    .trust-bar{
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
    }

    /* PRODUCT GRID */
    .image-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width: 600px){

    /* HEADER */
    .logo{
        flex-direction: column;
        text-align: center;
    }

    .logo img{
        height: 55px;
    }

    .logo-text h2{
        font-size: 20px;
    }

    .logo-text p{
        font-size: 10px;
    }

    .nav-menu{
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-menu a{
        font-size: 14px;
    }

    /* ABOUT */
    .about-section{
        padding: 60px 5%;
    }

    .about-text h1,
    .about-text h2{
        font-size: 28px;
    }

    /* WHY */
    .why-container{
        grid-template-columns: 1fr;
    }

    /* PROCESS */
    .process-container{
        grid-template-columns: 1fr;
    }

    /* PRODUCTS */
    .image-grid{
        grid-template-columns: 1fr;
    }

    /* TRUST */
    .trust-bar{
        flex-direction: column;
    }

    /* FLOATING BUTTONS */
    .whatsapp-float{
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media(max-width: 768px) {
    .header {
        padding: 12px 16px;
        align-items: center;
    }

    .about-section,
    .why-section,
    .process-section {
        padding: 58px 16px;
    }

    .about-container {
        gap: 26px;
    }

    .about-text h1,
    .about-text h2,
    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .about-text p,
    .section-subtitle {
        line-height: 1.65;
    }

    .about-image img {
        border-radius: 8px;
    }

    .trust-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 44px 16px;
    }

    .trust-item h3 {
        margin-bottom: 4px;
    }

    .why-box,
    .process-step {
        padding: 22px;
        border-radius: 8px;
        text-align: center;
    }
}

@media(max-width: 420px) {
    .trust-bar {
        grid-template-columns: 1fr;
    }
}


/* ===== LIGHT PREMIUM ABOUT PAGE ===== */
.about-page {
    background: #f5fafc;
    color: #173243;
}

.about-page .header {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(24, 92, 120, 0.12);
    box-shadow: 0 12px 34px rgba(20, 67, 88, 0.1);
}

.about-page .logo img {
    filter: drop-shadow(0 6px 12px rgba(20, 67, 88, 0.14));
}

.about-section,
.why-section,
.process-section,
.trust-bar {
    color: #173243;
    background:
        linear-gradient(135deg, #ffffff 0%, #edf8fc 52%, #fff6e7 100%);
}

.why-section,
.process-section {
    border-top: 1px solid rgba(24, 92, 120, 0.1);
}

.about-text h1,
.about-text h2,
.section-title {
    color: #123348;
}

.about-text p,
.section-subtitle,
.why-box p,
.process-step p,
.trust-item p {
    color: #617786;
    opacity: 1;
}

.about-highlights div {
    color: #173243;
}

.about-image img {
    box-shadow: 0 20px 45px rgba(20, 67, 88, 0.16);
}

.trust-bar {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.trust-item h3,
.why-box h3,
.process-step h3 {
    color: #1678b8;
}

.why-box,
.process-step {
    color: #173243;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,252,254,0.96));
    border: 1px solid rgba(26, 122, 160, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.92),
        0 18px 42px rgba(25, 74, 96, 0.13);
}

.why-box::before,
.process-step::before {
    background: linear-gradient(120deg, transparent, rgba(244,166,47,0.18), rgba(37,184,215,0.14), transparent);
}

.why-box:hover,
.process-step:hover {
    background:
        linear-gradient(180deg, #ffffff, #effaff);
    border-color: rgba(244, 166, 47, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 24px 52px rgba(24, 86, 116, 0.18),
        0 0 0 1px rgba(37,184,215,0.12);
}

.icon,
.step-icon {
    color: #f4a62f;
}
