 /* Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, Helvetica, sans-serif;
 }

 body {
     background-color: #f8f8f8;
     color: #fff;
 }

 /* Navbar */
 .navbar {
     width: 100%;
     background: #000;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 15px 8%;
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1000;
 }

 .navbar .logo {
     display: flex;
     align-items: center;
     font-size: 22px;
     font-weight: bold;
     color: #fff;
 }

 .navbar .logo span {
     color: #ff9900;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 25px;
 }

 .nav-links a {
     text-decoration: none;
     color: #fff;
     font-weight: 500;
     transition: 0.3s;
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: #ff9900;
 }

 .buy-btn {
     background: #ff9900;
     padding: 10px 18px;
     border-radius: 6px;
     font-weight: 600;
     color: #fff !important;
     margin-left: 10px;
     transition: 0.3s;
     text-decoration: none;
 }

 .buy-btn:hover {
     background: #cc7a00;
 }

 .contact {
     color: #fff;
     font-size: 14px;
 }

 /* Hamburger Menu */
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .hamburger span {
     height: 3px;
     width: 25px;
     background: #fff;
     margin: 4px 0;
     border-radius: 5px;
 }

 /* Hero Section */
 .hero {
     position: relative;
     height: 100vh;
     background: url('images/ant-rozetsky-SLIFI67jv5k-unsplash.jpg') center/cover no-repeat;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 0 8%;
     color: #fff;
     overflow: hidden;
 }

 .hero .overlay {
     position: absolute;
     inset: 0;
     background: rgba(10, 42, 102, 0.85);
     /* deep blue */
     clip-path: polygon(0 0, 70% 0, 50% 100%, 0% 100%);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 650px;
 }

 .hero-content h1 {
     font-size: 48px;
     font-weight: 300;
     margin-bottom: 20px;
     line-height: 1.3;
 }

 .hero-content h1 span {
     font-weight: 800;
     display: block;
 }

 .hero-content p {
     font-size: 18px;
     margin-bottom: 30px;
     line-height: 1.6;
     color: #f1f1f1;
 }

 .hero-content .btn {
     display: inline-block;
     background: #ff9900;
     color: #fff;
     padding: 14px 26px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: 0.3s;
 }

 .hero-content .btn:hover {
     background: #e68a00;
 }

 /* Stats Section */
 .hero-stats {
     margin-top: 30px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .hero-stats .users {
     display: flex;
 }

 .hero-stats .users img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 2px solid #fff;
     margin-left: -10px;
 }

 .hero-stats .rating {
     font-size: 22px;
     font-weight: 700;
     color: #ffcc00;
 }

 .hero-stats .trusted {
     font-size: 14px;
     opacity: 0.9;
 }

 /* Bottom Features */
 .hero-features {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 40px;
     z-index: 2;
     font-size: 16px;
     font-weight: 500;
 }

 .hero-features .feature {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 /* Responsive */
 @media (max-width: 900px) {
     .hero-content h1 {
         font-size: 36px;
     }

     .hero-features {
         flex-direction: column;
         gap: 15px;
         bottom: 20px;
     }
 }

 /* Responsive */
 @media (max-width: 900px) {
     .hero-content h1 {
         font-size: 36px;
     }

     .hero-features {
         flex-direction: column;
         gap: 15px;
         bottom: 20px;
     }
 }

 /* Responsive */
 @media (max-width: 900px) {
     .nav-links {
         position: fixed;
         top: 70px;
         right: -100%;
         background: #000;
         flex-direction: column;
         align-items: flex-start;
         width: 250px;
         height: 100vh;
         padding: 30px;
         gap: 20px;
         transition: 0.3s ease;
     }

     .nav-links.show {
         right: 0;
     }

     .hamburger {
         display: flex;
     }
 }

 /* About Section */
 .about {
     background: #f9f9f9;
     padding: 100px 8%;
 }

 .about-container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 50px;
     flex-wrap: wrap;
 }

 .about-text {
     flex: 1;
     min-width: 300px;
 }

 .about-text h2 {
     font-size: 28px;
     margin-bottom: 20px;
     font-weight: 700;
     color: #111;
     position: relative;
     display: flex;
     align-items: center;
 }

 .about-text h2 .line {
     display: inline-block;
     width: 50px;
     height: 2px;
     background: #0a2a66;
     margin-right: 15px;
 }

 .about-text h2 span {
     color: #0a2a66;
     /* dark navy blue */
 }

 .about-text p {
     color: #333;
     font-size: 16px;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .about-btn {
     display: inline-block;
     background: #0a2a66;
     color: #fff;
     padding: 14px 22px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     transition: 0.3s;
 }

 .about-btn:hover {
     background: #081c47;
 }

 /* Right Image with Background */
 .about-image {
     position: relative;
     flex: 1;
     min-width: 320px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .about-image .image-bg {
     width: 100%;
     height: 100%;
     background: #0a2a66;
     position: absolute;
     top: -30px;
     right: -30px;
     border-radius: 12px;
     z-index: 1;
 }

 .about-image img {
     width: 100%;
     max-width: 450px;
     border-radius: 8px;
     position: relative;
     z-index: 2;
 }

 /* Responsive */
 @media (max-width: 900px) {
     .about-container {
         flex-direction: column;
         text-align: center;
     }

     .about-image .image-bg {
         top: -20px;
         right: -20px;
     }
 }

 /* what we do  */

 .what1 {
     color: #001246;
     font-weight: 10;
 }

 .what-we-do {
     padding: 60px 10%;
 }

 .section-title {
     font-size: 28px;
     font-weight: 600;
     margin-bottom: 30px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .section-title span {
     color: #0a1a4f;
 }

 .line {
     width: 50px;
     height: 2px;
     background: #0a1a4f;
     display: inline-block;
 }

 .what-we-do .content {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 30px;
     align-items: center;
 }

 .what-we-do .cards {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
 }

 .what-we-do .card {
     background: #001246;
     color: #fff;
     padding: 25px;
     border-radius: 12px;
     transition: transform 0.3s ease;
 }

 .what-we-do .card:hover {
     transform: translateY(-5px);
 }

 .what-we-do .card i {
     font-size: 32px;
     color: #ff9d00;
     margin-bottom: 15px;
     display: inline-block;
 }

 .what-we-do .card h3 {
     margin: 0 0 10px;
     font-size: 18px;
     font-weight: 600;
 }

 .what-we-do .card p {
     font-size: 14px;
     color: #ddd;
     line-height: 1.5;
 }

 .what-we-do .image-box img {
     width: 100%;
     height: auto;
     border-radius: 12px;
     object-fit: cover;
 }

 @media (max-width: 992px) {
     .what-we-do .content {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 600px) {
     .what-we-do .cards {
         grid-template-columns: 1fr;
     }
 }

 /* mission and vision */

 /* Replace the URL below with your large background image */
.mission-vision {
    --mv-bg: url('images/mission1.png');
}

/* layout */
.mission-vision {
    padding: 50px 6%;
    box-sizing: border-box;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    /* left is just as wide as needed (478px), right fills remaining */
    gap: 50px;
    align-items: center;
}

/* left container */
.mv-left {
    position: relative;
    width: 478px;
    height: 447px;
}

/* big background block */
.mv-bg {
    width: 478px;
    height: 447px;
    background-image: var(--mv-bg);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* small overlay card image */
.mv-card {
    position: absolute;
    top: 50%;
    right: -36px;
    transform: translateY(-50%);
    width: 393px;
    height: 361px;
    border-radius: 12px;
    border: 6px solid #fff;
    box-shadow: 0 18px 40px rgba(6, 18, 40, 0.35);
    object-fit: cover;
    z-index: 5;
    background: #fff;
    display: block;
}

/* right column text */
.mv-right p {
    margin: 0 0 18px;
    color: #222;
    line-height: 1.7;
    font-size: 15.5px;
}

.mv-right strong {
    color: #0a1a4f;
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .mv-left {
        width: 100%;
        height: 380px;
        position: relative;
    }

    .mv-bg {
        width: 100%;
        height: 100%;
        background-image: var(--mv-bg);
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        display: block;
    }

    .mv-card {
        position: absolute;
        top: 55%;
        left: 10%;
        transform: translateY(-50%);
        width: 65%;
        max-width: 360px;
        height: auto;
        border-radius: 12px;
        border: 6px solid #fff;
        box-shadow: 0 18px 40px rgba(6, 18, 40, 0.35);
        z-index: 5;
    }

    .mv-right {
        text-align: center;
        padding-top: 28px;
        padding-inline: 6%;
    }

    .mv-right p {
        font-size: 15px;
    }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
    .mission-vision {
        padding: 30px 0;
    }

    .mv-container {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
        overflow: hidden;
    }

    .mv-left {
        width: 100%;
        height: 300px;
        position: relative;
    }

    /* large background, centered */
    .mv-bg {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        background-image: var(--mv-bg);
        background-size: cover;
        background-position: center;
        border-radius: 0;
        z-index: 1;
    }

    /* small photo overlay */
    .mv-card {
        position: absolute;
        top: 55%;
        left: 5%;
        transform: translateY(-50%);
        width: 70%;
        max-width: 340px;
        height: auto;
        border-radius: 12px;
        border: 6px solid #fff;
        box-shadow: 0 18px 40px rgba(6, 18, 40, 0.35);
        z-index: 5;
    }

    .mv-right {
        text-align: center;
        padding-top: 30px;
        padding-inline: 6%;
    }

    .mv-right p {
        font-size: 14px;
        line-height: 1.6;
    }
}



 /* our team */
.team {
  text-align: center;
  padding: 80px 8%;
  background: #f9f9f9;
  padding-bottom: 10px 1%; 
}

.team h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

.team h2 span {
  font-weight: 700;
  color: #0a2a66; /* dark blue */
}

.team p {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #555;
}

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
    color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: 0.3s;
}

.team-info p {
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}

/* Hover Effect */
.team-card:hover {
  background: #0a2a66;
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.team-card:hover h3,
.team-card:hover p {
  color: #fff;
}
/* Floating button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a144a;
    color: #fff;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.floating-btn:hover {
    background: #ff6600;
}

.padding150{
    padding-left: 150px;
}
