 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f7f9fc;
      color: #222;
      line-height: 1.6;
    }

    :root {
      --primary: #0c4a6e;
      --secondary: #0284c7;
      --dark: #082f49;
      --light: #ffffff;
      --gray: #f1f5f9;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    .float-whatsapp,
    .float-call {
      position: fixed;
      width: 60px;
      height: 60px;
      right: 20px;
      border-radius: 50%;
      color: #fff;
      text-align: center;
      font-size: 28px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;

      display: flex;
      align-items: center;
      justify-content: center;

      transition: 0.3s ease;
    }

    .float-whatsapp {
      bottom: 90px;
      background: #25D366;
    }

    .float-call {
      bottom: 20px;
      background: #007bff;
    }

    .float-whatsapp:hover,
    .float-call:hover {
      transform: scale(1.1);
    }

    @media(max-width:768px) {

      .float-whatsapp,
      .float-call {
        width: 55px;
        height: 55px;
        font-size: 24px;
        right: 15px;
      }

      .float-whatsapp {
        bottom: 85px;
      }

      .float-call {
        bottom: 15px;
      }
    }

    /* Navbar */

    header {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      background: rgba(8, 47, 73, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
    }

    .logo img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 50%;
      background: #fff;
      padding: 4px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #38bdf8;
    }

    .menu-toggle {
      display: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
    }

    /* Hero Banner */

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      margin-top: 0px;
    }

    .slides {
      width: 300%;
      height: 100%;
      display: flex;
      animation: slide 15s infinite;
    }

    .slide {
      width: 100%;
      height: 100vh;
      position: relative;
      background-size: cover;
      background-position: center;
    }

    .slide::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 2;
      width: 90%;
    }

    .slide-content h1 {
      font-size: 55px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .slide-content p {
      font-size: 18px;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      padding: 14px 30px;
      background: var(--secondary);
      color: white;
      text-decoration: none;
      border-radius: 40px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #0369a1;
      transform: translateY(-2px);
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }

      30% {
        transform: translateX(0);
      }

      33% {
        transform: translateX(-33.33%);
      }

      63% {
        transform: translateX(-33.33%);
      }

      66% {
        transform: translateX(-66.66%);
      }

      96% {
        transform: translateX(-66.66%);
      }

      100% {
        transform: translateX(0);
      }
    }

    /* Sections */

    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .section-title p {
      color: #555;
    }

    /* About */

    .about-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      align-items: center;
    }

    .about-content img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .about-text h3 {
      color: var(--primary);
      font-size: 32px;
      margin-bottom: 20px;
    }

    .about-text p {
      margin-bottom: 15px;
      color: #444;
    }

    /* Services */

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .service-card {
      background: #fff;
      padding: 25px;
      border-radius: 18px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
      border-top: 5px solid var(--secondary);
    }

    .service-card:hover {
      transform: translateY(-8px);
    }

    .service-card h3 {
      color: var(--primary);
      margin-bottom: 15px;
      font-size: 24px;
    }

    .service-card ul {
      padding-left: 18px;
    }

    .service-card ul li {
      margin-bottom: 8px;
      color: #444;
    }

    /* Testimonials */

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .testimonial-card {
      background: white;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card h4 {
      color: var(--primary);
      margin-top: 15px;
    }

    .stars {
      color: #facc15;
      font-size: 20px;
      margin-bottom: 10px;
    }

    /* Contact */

    .contact-box {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 50px;
      border-radius: 20px;
      text-align: center;
    }

    .contact-box h3 {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .contact-box p {
      margin-bottom: 12px;
    }

    /* Footer */

    footer {
      background: var(--dark);
      color: white;
      padding: 30px 0;
      text-align: center;
    }

    footer p {
      margin-bottom: 10px;
    }

    .footer-logo {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
    }


    /*================ TEAM =================*/

#team{
    background:#f8fbff;
}

.team-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:45px;
    align-items:center;
}

.team-profile{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:2px solid rgba(2,132,199,.15);
}

.team-profile img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:20px;
    border:5px solid #0284c7;
}

.team-profile h3{
    margin-top:20px;
    color:#0c4a6e;
    font-size:28px;
}

.team-profile span{
    display:block;
    color:#0284c7;
    font-weight:600;
    margin:8px 0 18px;
}

.team-profile p{
    color:#555;
    line-height:1.8;
}

.team-contact{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.team-contact a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#0c4a6e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    text-decoration:none;
}

.team-contact a:hover{
    background:#0284c7;
    transform:translateY(-4px);
}

.team-members{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.member{
    background:#fff;
    padding:15px;
    text-align:center;
    border-radius:18px;
    cursor:pointer;
    transition:.35s;
    border:2px solid transparent;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.member:hover{
    transform:translateY(-6px);
    border-color:#0284c7;
}

.member.active{
    border-color:#0284c7;
    background:#eef8fd;
}

.member img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:18px;
}

.member h4{
    margin-top:12px;
    color:#0c4a6e;
    font-size:18px;
}

/* Responsive */

@media(max-width:992px){

.team-wrapper{
grid-template-columns:1fr;
}

.team-profile{
max-width:500px;
margin:auto;
}

}

@media(max-width:768px){

.team-members{
grid-template-columns:repeat(2,1fr);
}

.team-profile img{
width:170px;
height:170px;
}

}

@media(max-width:500px){

.team-members{
grid-template-columns:1fr;
}

.member img{
width:100%;
height:220px;
}

.team-profile{
padding:25px;
}

}

    /* Responsive */

    @media(max-width: 900px) {
      .about-content {
        grid-template-columns: 1fr;
      }

      .slide-content h1 {
        font-size: 38px;
      }
    }

    @media(max-width: 768px) {
      nav ul {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
      }

      nav ul.active {
        left: 0;
      }

      .menu-toggle {
        display: block;
      }

      .slide-content h1 {
        font-size: 30px;
      }

      .slide-content p {
        font-size: 16px;
      }

      .section-title h2 {
        font-size: 30px;
      }

      .contact-box {
        padding: 30px 20px;
      }
    }