@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  color:#333;
  background:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

.topbar{
  background:#0b2c4d;
  color:#fff;
  padding:10px 7%;
  display:flex;
  justify-content:space-between;
  font-size:14px;
}

.topbar i{
  margin-right:7px;
  color:#f4b400;
}

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 7%;
  position:relative;
}

.brand img{
  width:135px;
  display:block;
}

.menu-toggle{
  display:none;
  font-size:28px;
  color:#0b2c4d;
  cursor:pointer;
}

/* NAVBAR */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  background:#f7f9fc;
  padding:15px 25px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  width:140px;
  height:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:40px;
}

.navbar a,
.nav a{
  color:#0c0c0c;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  transition:.3s;
}

.navbar a:hover,
.nav a:hover{
  color:#f7c948;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-content{
  position:absolute;
  top:100%;
  left:0;
  background:#0b2c4d;
  min-width:220px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  z-index:1000;

  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s ease;
}

.dropdown-content a{
  display:block;
  color:#fff;
  padding:12px 18px;
  font-size:16px;
}

.dropdown-content a:hover{
  background:#123f6b;
  color:#fff;
}

.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
/* HERO */
.hero{
  min-height:85vh;
  background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600');
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:80px 8%;
}

.hero-content{
  max-width:950px;
}

.hero-content h1{
  font-size:75px;
  margin-bottom:25px;
  line-height:1.2;
}

.hero-content p{
  font-size:24px;
  max-width:850px;
  margin:auto;
  line-height:1.9;
}

.menu-btn{
  display:none;
  border:none;
  background:#06264d;
  color:#fff;
  font-size:24px;
  padding:8px 14px;
  border-radius:6px;
  cursor:pointer;
}

@media(max-width:768px){
  .menu-btn{
    display:block;
  }

  .nav{
    display:none;
    flex-direction:column;
    width:100%;
    text-align:center;
    gap:15px;
  }

  .nav.show{
    display:flex;
  }
}

/* COMPANY PHOTOS SECTION */

.company-photos-section{
  padding:80px 8%;
  background:#f8fbff;
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 45px;
}

.section-title span{
  display:inline-block;
  color:#ffb703;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:10px;
}

.section-title h2{
  font-size:42px;
  color:#07294d;
  margin-bottom:15px;
  font-weight:700;
}

.section-title h1{
  font-size:48px;
  color:#07294d;
  margin-bottom:15px;
  font-weight:700;
}

.section-title p{
  max-width:700px;
  margin:0 auto;
  color:#555;
  line-height:1.8;
  font-size:16px;
}
/* DIRECTOR SECTION */
.director-section {
    padding: 80px 8%;
    background: #f8f9fa;
}

.director-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* DIRECTOR IMAGE */
.director-image {
    flex: 0 0 300px;
}

.director-image img {
    width: 100%;
    max-width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: block;
}

/* DIRECTOR CONTENT */
.director-content {
    flex: 1;
}

.director-content h3 {
    color: #ffb703;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.director-content h1 {
    color: #07294d;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.director-content p {
    color: #444;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.director-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: #07294d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.director-btn:hover {
    background: #ffb703;
    color: #07294d;
    transform: translateY(-3px);
}


/* TABLET */

@media(max-width:1024px){

    .director-content h1{
        font-size: 36px;
    }

    .director-content p{
        font-size: 16px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .director-content{
        text-align: center;
        min-width: 100%;
        padding: 10px;
    }

    .director-content h3{
        font-size: 18px;
    }

    .director-content h1{
        font-size: 30px;
    }

    .director-content p{
        font-size: 15px;
        text-align: center;
        line-height: 1.8;
    }

    .director-content .director-btn{
        padding: 12px 25px;
        font-size: 15px;
    }
}
/* MOBILE */

@media(max-width:768px){

    .director-container{
        flex-direction: column;
        text-align: center;
    }

    .director-image img{
        width: 220px;
        height: 280px;
    }

    .director-content h1{
        font-size: 28px;
    }
}

/* BUTTON */
.director-btn{
  display:inline-block;
  background:#07294d;
  color:white;
  padding:15px 35px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.4s;
}

.director-btn:hover{
  background:#ffb703;
  color:#07294d;
}

/* ACHIEVEMENTS */
.achievement-section{
  padding:100px 8%;
  background:white;
}

.achievement-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:35px;
}

.achievement-card{
  background:#f5f9ff;
  padding:40px;
  border-radius:25px;
  text-align:center;
  transition:.4s;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.achievement-card:hover{
  transform:translateY(-10px);
}

.achievement-card i{
  font-size:55px;
  color:#ffb703;
  margin-bottom:25px;
}

.achievement-card h2{
  color:#07294d;
  margin-bottom:15px;
}

.achievement-card p{
  color:#070707;
  line-height:1.8;
}

/* QUOTE */
.quote-section{
  background:#07294d;
  padding:100px 8%;
  text-align:center;
}

.quote-content h1{
  color:#ffb703;
  font-size:50px;
  margin-bottom:25px;
}

.quote-content p{
  color:white;
  font-size:22px;
  line-height:1.8;
  max-width:900px;
  margin:auto;
}

/* FOOTER */
.footer{
  background:linear-gradient(135deg,#07294d,#021c35);
  color:white;
  padding:70px 8% 25px;
  margin-top:80px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer-box h3{
  color:#ffb703;
  font-size:24px;
  margin-bottom:25px;
  position:relative;
}

.footer-box h3::after{
  content:"";
  width:60px;
  height:3px;
  background:#ffb703;
  position:absolute;
  left:0;
  bottom:-8px;
  border-radius:10px;
}

.footer-box p{
  line-height:2;
  color:#d6d6d6;
  font-size:16px;
}

.footer-box a{
  display:block;
  color:#d6d6d6;
  text-decoration:none;
  margin-bottom:14px;
  transition:.3s;
  font-size:16px;
}

.footer-box a:hover{
  color:#ffb703;
  transform:translateX(6px);
}

.footer-box i{
  margin-right:10px;
  font-size:18px;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:50px;
  padding-top:20px;
  color:#cfcfcf;
  font-size:15px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

  .topbar{
    flex-direction:column;
    text-align:center;
    padding:10px 5%;
    gap:6px;
    font-size:13px;
  }

  .navbar{
    padding:12px 5%;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .brand img{
    width:105px;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
  }

  .nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b2c4d;
    padding:12px 0;
    text-align:center;
    gap:0;
    z-index:999;
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    color:#fff;
    padding:12px 0;
    font-size:16px;
  }

  @media(max-width:768px){

  .dropdown{
    width:100%;
    text-align:center;
  }

  .dropdown > a{
    display:block;
    width:100%;
    color:#fff;
    padding:12px 0;
    font-size:16px;
    cursor:pointer;
  }

  .dropdown-content{
    position:static;
    width:100%;
    background:#123f6b;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
  }

  .dropdown-content a{
    display:block;
    color:#fff;
    padding:12px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  .dropdown.active .dropdown-content{
    display:block;
  }

  
}
  .hero{
    min-height:auto;
    padding:65px 6%;
    grid-template-columns:1fr;
    text-align:center;
    background:linear-gradient(135deg,#0b2c4d,#0d5e9c);
  }

  .hero h2{
    font-size:31px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:100%;
    max-width:270px;
    text-align:center;
  }

  .hero-card{
    padding:28px;
  }

  .features{
    width:90%;
    margin:35px auto;
    grid-template-columns:1fr;
  }

  .director-container {
        flex-direction: column;
        text-align: center;
    }

    .director-image {
        flex: 0 0 auto;
    }

    .director-image img {
        max-width: 250px;
        height: 320px;
        margin: 0 auto;
    }

    .director-content {
        width: 100%;
    }

    .director-content h1 {
        font-size: 28px;
    }

    .director-content p {
        text-align: center;
        font-size: 15px;
        line-height: 1.8;
    }

  .stats-card{
    padding:30px;
  }

  .stat-item strong{
    font-size:34px;
  }

  .section{
    padding:65px 6%;
  }

  .service-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .contact-section{
    padding:70px 6%;
  }

  .contact-card{
    padding:32px 20px;
  }

  .contact-card h2{
    font-size:25px;
  }

  .contact-details{
    grid-template-columns:1fr;
  }

  .footer{
    padding:60px 6% 22px;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-box h3::after{
    left:50%;
    transform:translateX(-50%);
  }
}