

body{
  margin:0;
  font-family:Arial, sans-serif;
}

/* HERO */
.about-hero{
  height:400px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overlay-box{
  background:#0e4b43;
  color:#fff;
  padding:50px;
  text-align:center;
  width:70%;
}

.overlay-box h1{
  font-size:40px;
}

/* ABOUT */
.about-section{
  display:flex;
  padding:80px;
  gap:40px;
}

.about-text{
  flex:1;
}

.about-image img{
  width:100%;
}

/* VISION */
.vision{
  text-align:center;
  padding:80px;
  background:#f5f5f5;
}

.vision-grid{
  display:flex;
  gap:30px;
  justify-content:center;
}

.card{
  background:#fff;
  padding:20px;
  width:250px;
}

/* TEAM */
.team{
  text-align:center;
  padding:80px;
}

.team-grid{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items: flex-start;
  flex-wrap: nowrap; /*🔥 IMPORTANT */
}

.agent{
  flex: 1;
  width:30%;
  text-align: center;
}

.agent img{
  width:100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin:0 auto;
}

/* DRIVE */
.drive{
  display:flex;
  padding:80px;
  gap:40px;
}

.drive-img img{
  width:100%;
}

.drive-text{
  max-width:400px;
}

/* HEADER BACKGROUND */
.header{
  background:url('../images/hero.jpg') center/cover no-repeat;
  height: 500px;
  position: relative;
}

/* DARK OVERLAY */
.header::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 1;
}


/* NAVBAR */
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: relative;
  z-index: 2;
}

/* LOGO */
.logo img{
  height: 40px;
}

/* NAV LINKS */
.nav-links{
  display: flex;
  gap: 30px;
  list-style: none;
  color: #fff;
  align-items: center;
}

.nav-links li{
  cursor: pointer;
  font-size: 14px;
}

.nav-links a{
  text-decoration: none;
  color:#bbb;
  font-size: 14px;
}

.nav-links a:hover{
  color: #f4b400;
}

/* BUTTON  */
.nav-btn{
  background: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color:#000;
}

/* HAMBURGER */
.menu-toggle{
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* FIX NAV */

/* BUTTON */
.nav-btn{
  background: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: #000;
}


/* HERO SECTION */
.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* GREEN BOX  */
.hero-box{
  background: #0e4b43;
  padding:50px 60px;
  text-align: center;
  color:#fff;
  width: 65%;
}

/* TEXT  */
.hero-box span{
  font-size: 12px;
  background: #ffffff20;
  padding:4px 10px;
  border-radius: 20px;
}

.hero-box h1{
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.2;
}

.hero-box p{
  font-size: 14px;
  color: #ddd;
}


  /* GLOBAL CONTAINER (IMPORTANT FOR CONSISTENCY) */
  .container{
    width:90%;
    max-width: 1100px;
    margin: 0 auto;
  }

  /*SECTION SPACING*/
  .about{
    padding: 100px 0;
  }

  /*GRID LAYOUT (BETTER THAN FLEX FOR THIS CASE)*/
  .about_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    align-items: center; /* 🔥 THIS FIXES ALIGNMENT */
  }

  /* TEXT SIDE */
  .about_content{
    display: flex;
    flex-direction:column;
    justify-content: center;
  }

  /* TAG */
  .about_tag{
    font-size: 12px;
    color:#ff5a5f;
    margin-bottom: 10px;
  }

  /*TITLE*/
  .about_title{
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20PX;
  }

  /*TEXT*/
  .about_text{
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  /* IMAGE */
  .about_image img{
    width:100%;
    height: 100%;
    object-fit: cover;  /* 🔥 VERY IMPORTANT */
    border-radius: 8PX;
  }



  /*SECTION BACKGROUND*/
  .vmv{
    background: #f5f5f6;
    padding: 100px 0;
    text-align: center;
  }

  /*HEADER*/
  .vmv_header{
    margin-bottom: 50px;
  }

  .vmv_tag{
    font-size: 11px;
    letter-spacing: 1px;
    color: #888;
    display: block;
    margin-bottom: 10px;
  }

  .vmv_title{
    font-size: 32px;
    font-weight: 700;
  }

  /* GRID */
  .vmv_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* CARD */
  .vmv_card{
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
  }

  .vmv_card:hover{
    transform: translateY(-5px);
  }

  /* ICON */
  .vmv_icon{
    width: 60px;
    height: 60px;
    background: #0e2a1f;
    border-radius:50%;
    display:flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }

  .vmv_icon img{
    width: 28px;
  }

  /* TEXT */
  .vmv_card h3{
    font-size: 18px;
    margin-bottom: 10px;
  }

  .vmv_card p{
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: left;
  }

  .vmv_list{
    padding:0;
    margin: 10px 0 0;
    list-style: none;
  }

  .vmv_list li{
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    text-align: left;
  }

.icon-list{
  list-style: none;
  padding: 0;
}

.icon-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.icon-list i {
  color: #f4b400;
  margin-right: 10px;
}

  .agent .depart{
    color: #0D33B3;
  }

    /* SECTION */
  .drive{
    padding: 120px 0;
  }

  /* LAYOUT */
  .drive-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* IMAGE BIGGER */
    gap: 80px;
    align-items: center; /* 🔥 CRITICAL - PERFECT ALIGNMENT */
    max-width: 1100px;
    margin: 0 auto;
  }

  /* IMAGE */
  .drive-image img{
    width: 100%;
    height: 460px; /*🔥 Taller like template */
    object-fit: cover; /*🔥 prevent stretching*/
    border-radius:2px; /*🔥 minimal rounding*/
  }

  /* CONTENT */
  .drive_content{
    max-width: 420px;
    margin-top: -20px;
  }

  /* TAG */
  .drive_tag{
    font-size: 11px;
    letter-spacing: 1px;
    color: #9aa0a6; /*🔥 light gray like template*/
    margin-bottom: 8px;
    
  }



  /* TITLE */
  .drive_title{
    font-size:30px;
    font-weight: 700;
    margin-bottom:12px;

  }

  /*TEXT*/
  .drive-text{
    font-size: 14px;
    color: #6b7280; /*🔥 softer gray */
    line-height: 1.6;
    margin-bottom: 18px;
  }

  /* LIST */
  .drive_list{
    list-style: none;
    padding: 0;
  }

/*LIST ITEMS*/
  .drive_list li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size:14x;
    margin-bottom:10px;
   
  }

/* CHECK ICON (CIRCLE STYLE - EXACT TEMPLATE FEEL) */
.check{
  width: 20px;
  height: 20px;
  border:1.5px solid #0e2a1f;
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}

.check::after{
  content:"✔";
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}




  /* FOOTER */
  .footer{
    background: #0e2a1f;
    color: #fff;
    padding-top: 60px;
  }

  .footer a{
    text-decoration: none;
    color: #bbb;
  }

  .footer a:hover{
    color: #f4b400;
  }

  a{
    text-decoration: none;
  }

  /* GRID */
  .footer_container{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap:40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* TEXT */
  .footer_logo{
    margin-bottom: 10px;
  }

  .footer_text{
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
  }

  .footer_col h4{
    margin-bottom: 10px;
  }

  .footer_col ul{
    list-style: none;
    padding: 0;
  }

  .footer_col ul li{
    margin-bottom:8px;
    font-size: 14px;
    color:#ccc;
  }

  /* BOTTOM */
  .footer_bottom{
    border-top:1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
  }

.footer_socials{
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.footer_socials a{
  width:35px;
  height: 35px;
  background: #173c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer_socials img{
  width: 16px;
}
