/* ========================= */
/* GLOBAL */
/* ========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    padding-top: 65px;
    background:#0f172a;
    color:white;
}

img{
    max-width: 100%;
    display: block;
}

a{
    text-decoration: none;
}





/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 0 2rem;

    height: 65px;

    background-color: white;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    border-bottom: #00082b solid 1px;
}

.nav-inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT NAV */

.nav-left{
    width: 60%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.company-logo{
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-name{
    font-size: 30px;
    color: #555;
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
}

/* RIGHT NAV */

.nav-right{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.nav-link{
    font-size: 18px;
    color: #666;
    padding: 7px 14px;
    border-radius: 8px;
    font-family: "Google Sans", sans-serif;
    transition: 0.3s;
}

.nav-link:hover{
    /* background: #00082b;
    color: white; */
    /* background-color: #ddd; */
    /* color: #444; */
    color: black;
}




.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding: 50px;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
  font-size: 70px;
}

.section-title span{
  color:#38bdf8;
  font-size:14px;
  letter-spacing:2px;
}

.section-title h2{
  font-size:42px;
  margin-top:10px;
}


/* HERO */

.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:
  linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
  url('./hero-bg.avif');
  background-size:cover;
  background-position:center;

}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
}


/* STORY */


.story-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.story-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(10px);
  transition:0.4s;
}

.story-card:hover{
  transform:translateY(-10px);
}

.story-card h3{
  margin-bottom:15px;
}

.story-about{
    text-align:justify;
    padding-top: 70px;
    font-size: 20px;
}

/* STATS */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.stat-box{
  text-align:center;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(10px);
}

.stat-box h2{
  font-size:50px;
  color:#38bdf8;
  padding-bottom: 10px;
}


/* TEAM */

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.team-card{
  background: rgba(255,255,255,0.05);
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  padding-bottom:30px;
}

.team-card img{
  width:100%;
  height:350px;
  object-fit:cover;
}

.team-card h3{
  margin-top:20px;
}


/* VALUES */

.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.value-card{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:20px;
}


/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:20px;
}





/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    width: 100%;

    padding: 40px 80px;

    background: #111;
}

/* SOCIAL SECTION */

.social-grid{
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #222;
}

.social-box{
    padding: 25px 30px;

    border-right: 1px solid #222;

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    transition: 0.3s;
}

.social-link{
    color: white;
}

.social-box:last-child{
    border-right: none;
}

.social-box:hover{
    background: #333;
}



/* FOOTER LINKS */

.footer-content{
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-left: 1px solid #222;

    border-right: 1px solid #222;
}

.footer-column{
    padding: 50px 30px;

    border-right: 1px solid #222;
}

.footer-column:last-child{
    border-right: none;
}

.footer-column h4{
    color: #666;

    font-size: 14px;

    margin-bottom: 25px;
}

.footer-column a{
    display: block;

    color: white;

    margin-bottom: 15px;

    font-size: 18px;

    transition: 0.3s;
}

.footer-column a:hover{
    color: #999;
}



/* FOOTER BOTTOM */

.footer-bottom{
    margin-top: 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    flex-wrap: wrap;
}

.brand h1{
    font-size: 60px;

    margin-bottom: 20px;

    color: #f4f4f4;
}

.brand p{
    max-width: 400px;

    color: #999;

    line-height: 1.8;

    font-size: 18px;
}

.subscribe-box{
    display: flex;

    gap: 15px;
}

.subscribe-box input{
    width: 400px;

    padding: 20px;

    background: #fff;

    border: none;

    outline: none;

    font-size: 16px;
}

.subscribe-box button{
    padding: 20px 35px;

    background: transparent;

    border: 1px solid #222;

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.subscribe-box button:hover{
    background: white;

    color: black;
}



/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .navbar{
        height: auto;
        padding: 15px 20px;
    }

    .nav-inner{
        flex-direction: column;
        gap: 18px;
    }

    .nav-left{
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .logo-name{
        font-size: 24px;
        text-align: center;
    }

    .company-logo{
        height: 38px;
    }

    .nav-right{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-link{
        font-size: 18px;
        padding: 8px 14px;
    }

    body{
        padding-top: 130px;
    }
}



@media(max-width:768px){

    .sec-one{
        height: 600px;
    }

    .secOne-text{
        font-size: 55px;
    }

    .s2-hero{
        font-size: 45px;
    }

    .s2-childHero1,
    .s2-childHero2{
        font-size: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .card-container{
        grid-template-columns: 1fr;
    }

    .testimonial-container{
        grid-template-columns: 1fr;
    }

    .sec3-card-box{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-content{
        grid-template-columns: repeat(2,1fr);
    }

    .social-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-box{
        width: 100%;
        flex-direction: column;
    }

    .subscribe-box input{
        width: 100%;
    }

    .brand h1{
        font-size: 45px;
    }
}



@media(max-width:480px){

    .navbar{
        padding: 0 1rem;
    }

    .logo-name{
        font-size: 22px;
    }

    .company-logo{
        height: 35px;
    }

    .nav-link{
        font-size: 16px;
        padding: 6px 10px;
    }

    .sec-one{
        height: 500px;
    }

    .secOne-text{
        font-size: 40px;
        line-height: 1.3;
    }

    .s2-hero{
        font-size: 35px;
    }

    .s2-childHero1,
    .s2-childHero2{
        font-size: 17px;
    }

    .card{
        padding: 30px 22px;
    }

    .testimonial-card{
        padding: 25px;
    }

    .client-info{
        flex-direction: column;
        align-items: flex-start;
    }

    .sec3-card-box{
        grid-template-columns: 1fr;
    }

    .footer-content{
        grid-template-columns: 1fr;
    }

    .social-grid{
        grid-template-columns: 1fr;
    }

    .brand h1{
        font-size: 34px;
    }

    .brand p{
        font-size: 16px;
    }

    .logo-name{
    font-size: 20px;
    }

    .nav-link{
    font-size: 15px;
    padding: 6px 10px;
    }
}

/* RESPONSIVE */

@media(max-width:768px){

  .hero h1{
    font-size:42px;
  }

  .section-title h2{
    font-size:30px;
  }

}
