/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#f8f9fa;
    color:#191c1d;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

/* ================= COLORS ================= */

:root{
    --orange:#ff6b00;
    --orange-dark:#a04100;
    --navy:#001A33;
    --blue:#005bc0;
    --white:#ffffff;
    --gray:#5a607c;
    --light:#f8f9fa;
}

/* ================= HEADER ================= */

header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(248,249,250,.85);
    backdrop-filter:blur(10px);
    box-shadow:0 5px 20px rgb(246 249 255);
}

.navbar{
    max-width:1280px;
    height:90px;
    margin:auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:100px;
    height:auto;
    object-fit:contain;
}

.logo-area h2{
    color:var(--navy);
    font-size:26px;
    font-weight:900;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    font-weight:700;
    color:var(--gray);
}

.nav-links a:hover{
    color:var(--orange);
}

/* ================= BUTTONS ================= */

.primary-btn {
    background: linear-gradient(
        90deg,
        #ff6b00,
        #ff9500
    );
    color:white;
    padding:14px 28px;
    border-radius:999px;
    font-weight:800;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    line-height:1;
}
.primary-btn:hover{
    transform:translateY(-3px);
}
.outline-btn{
    background:transparent;
    border:2px solid var(--navy);
    color:var(--navy);
    padding:14px 28px;
    border-radius:999px;
    font-weight:800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.outline-btn:hover{
    background:var(--navy);
    color:white;
}

/* ================= HERO ================= */

.hero{
    min-height:90vh;
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    background:
    linear-gradient(
    135deg,
    white,
    #e6f0ff
    );
}

.tagline{
    color:var(--blue);
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero h1{
    font-size:70px;
    line-height:1.1;
    color:var(--navy);
    font-weight:900;
}

.hero h1 span{
    background:
    linear-gradient(
    90deg,
    #ff6b00,
    #ff9500
    );
    -webkit-background-clip:text;
    color:transparent;
}

.description{
    margin:25px 0;
    color:var(--gray);
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.hero{
    min-height:90vh;
    padding:80px 8%;
    display:flex;
    align-items:center;
    background-image:url("../assets/images/1.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    width:50%;
    z-index:2;
}

/* ================= FEATURES ================= */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:30px 0;
}

.feature-card{
    background:white;
    padding:20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.feature-card span{
    color:var(--orange);
    font-size:35px;
}

/* ================= ABOUT SECTION ================= */

.about-section{
    padding:90px 8%;
    background:white;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:70px;
    align-items:stretch;   /* important */
}

.about-image{
    display:flex;
}

.about-image img{
    width:100%;
    height:100%;      
    object-fit:cover;
    border-radius:30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT SIDE */

.about-content{
    padding-left:20px;
}

.section-tag{
    color:#ff6b00 !important;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:48px;
    color:#001a33;
    font-weight:900;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#ff6b00;
}

.about-content p{
    color:#5a607c;
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

@media(max-width:900px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-image{
        text-align:center;
    }

    .about-content{
        padding-left:0;
    }
}



/* ================= SECTIONS ================= */

.menu-section,
.why-section,
.vision-section{
    padding:80px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title p{
    color:var(--orange);
    font-weight:800;
    letter-spacing:2px;
}

.section-title h2{
    color:var(--navy);
    font-size:45px;
}

.section-title span{
    color:var(--orange);
}

/* ================= MENU ================= */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.menu-card{
    background:#f3f4f5;
    padding:25px;
    text-align:center;
    border-radius:30px;
    transition:.3s;
}

.menu-card:hover{
    transform:translateY(-10px);
    background:white;
    box-shadow:0 20px 30px #0001;
}

.menu-card img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    margin:auto auto 20px;
}

.menu-card h3{
    color:var(--navy);
    font-size:16px;
}

.menu-card p{
    color:var(--gray);
}

/* ================= HOW WORKS ================= */

.works-section{
    background:var(--navy);
    color:white;
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.works-section h2{
    font-size:45px;
}

.works-section h2 span{
    color:var(--orange);
}

.steps{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
}

.icon{
    width:70px;
    height:70px;
    background:#ffffff20;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.icon span{
    color:var(--orange);
    font-size:35px;
}

.works-image img{
    height:100%;
    object-fit:cover;
    border-radius:30px;
}

/* STEP NUMBER STYLE */

.step h3{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:15px;
}



.step-number{
    font-size:34px;
    font-weight:900;
    color:var(--orange);
    letter-spacing:2px;
    line-height:1;
}

.step h3:not(.step-number){
    color:white;
}

.step p{
    margin-top:10px;
    line-height:1.6;
    color:#d6dbe8;
}

/* ================= WHY SECTION ================= */


.why-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:35px;
    margin-top:50px;
}

.why-card{
    text-align:left;
}

/* IMAGE ICON STYLE */

.why-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    background:white;
    box-shadow:0 12px 25px rgba(0,0,0,0.12);
    overflow:hidden;
    transition:.3s;
}

.why-icon:hover{
    transform:translateY(-6px);
}

.why-icon img{
    width:90px;
    height:100%;
    object-fit:contain;
}

.why-card h4{
    font-size:18px;
    color:#001a33;
    margin-bottom:10px;
}

.why-card p{
    color:#667085;
    line-height:1.5;
}

@media(max-width:900px){
.why-grid{
    grid-template-columns:1fr 1fr;
    }

}

@media(max-width:500px){

.why-grid{
    grid-template-columns:1fr;
    }
}
/* ================= VISION ================= */

.vision-box{
    background:#f0f0f0;
    padding:50px;
    border-radius:35px;
    display:flex;
    gap:50px;
    align-items:center;
}

.vision-text{
    flex:1;
}

.vision-text p:first-child{
    color:var(--orange);
    font-weight:800;
}

.vision-text h2{
    color:var(--navy);
    font-size:45px;
    margin:20px 0;
}

.vision-image img{
    width:400px;
    border-radius:30px;
}

/* ================= FOOTER ================= */

footer{
    background:var(--navy);
    color:white;
    padding:70px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

footer h3{
    color:var(--orange);
    margin-bottom:20px;
}

footer p{
    color:#ddd;
}

/* FOOTER UPDATE */

.footer-logo{
    width:125px;
    height:125px;
    object-fit:contain;
    margin-bottom:15px;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.social-icons{
    display:flex;
    gap:18px;
    margin-top:25px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ffffff20;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:18px;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--orange);
    transform:translateY(-5px);
}

.footer-column p{
    margin-bottom:18px;
    line-height:1.8;
}

.footer-gallery p{
    line-height:1.8;
}

.footer-gallery img{
    border-radius:20px;
}

.footer-bottom{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #ffffff33;
    display:flex;
    justify-content:space-between;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    color:#94a3b8;
    font-size:14px;
}

/* Right */
.footer-copyrights .mb-0 {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
}

.powered-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.id-color{
    color: #94a3b8;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-copyrights .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-copyrights .mb-0 {
    text-align: center;
  }
}




/* ================= RESPONSIVE ================= */

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .hero,
    .works-section,
    .vision-box{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:45px;
    }

    .features,
    .menu-grid,
    .why-grid,
    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .features,
    .menu-grid,
    .why-grid,
    .footer-container,
    .steps{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
    }
}

/* Transparent sticky header effect */


header{
    position:sticky;
    top:0;
    z-index:1000;
    background:transparent;
    transition:0.3s ease;
}

header.scrolled{
    background:rgba(255,255,255,0.65);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}