    :root {
      --dark-blue: #0b1f3a;
      --accent-blue: #1e3a8a;
      --light-bg: #f5f8ff;
      --text-light: #e5e7eb;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--light-bg);
      color: #111827;
    }

    .hero-logo-card { 
        color: #ffffff;
        background: white;
        /*padding: 20px;*/
        width: 256px;
        border-radius: 20px;
        margin-bottom: 30px;
        margin-left: 118px; 
        
    }
    
    
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero p {
      width: 100%;
      font-size: 14px;
      line-height: 1.8;
      color: #082A5E;
      /*margin-bottom: 30px;*/
      text-align: justify;
    }

    .cta-btn {
      display: inline-block;
      padding: 14px 32px;
      background-color:var(--dark-blue); 
      color: var(--white);
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-left: 156px;
    }

    .cta-btn:hover {
      background-color: #e0e7ff;
      transform: translateY(-2px);
    }

    .container {
      max-width: 1200px;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--white), white );
      color: #082A5E;
      padding: 80px 0;
    }
    
    .hero-content{
      width: 130%;
    }

    /* Image */
    .hero-image img {
      width: 70%;
    }

    .hero-image {
      width: 90%;
      margin-bottom: 23%;
      margin-left: 30%;
    }

    /* Locations Section */
    .locations {
      background-color: var(--white);
      padding: 60px 0;
    }

    /* Default stays as you have it */

    /* Tablet (≤ 992px) */
    @media (max-width: 992px) {

      .hero {
        padding: 60px 0;
      }

      .hero-content {
        width: 100%;
      }

      .hero-image {
        width: 100%;    
        margin:0 auto;

      }

      .hero-image img {
        width: 80%;
      }
    }

    /* Mobile (≤ 768px) */
    @media (max-width: 768px) {

      .container {
        max-width: 100%;
        padding: 0 20px;
      }

      .hero {
        padding: 40px 0;
        text-align: center;
      }

      .hero-content {
        width: 100%;
      }

      .hero-image {
        width: 90%;
        margin:0 auto;
      }

      .hero-image img {
        width: 95%;
      }

      .locations {
        padding: 40px 0;
      }
    }

    /* Small Mobile (≤ 480px) */
    @media (max-width: 480px) {

      .hero {
        padding: 30px 0;
      }

      .hero-image img {
        width: 100%;
      }
    }

    .locations h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 40px;
      color: var(--dark-blue);
    }

    .location-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .location-card {
      padding: 20px;
      border-radius: 14px;
      background-color: var(--light-bg);
      font-weight: 500;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero h1 {
        font-size: 34px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 60px 0;
      }

      .hero h1 {
        font-size: 28px;
      }
      
      .hero-logo-card{
          margin:auto;
          margin-bottom:30px;
      }
      
       .cta-btn {
           margin:auto;
       }
       
       .hero p {
          font-size: 14px;
       }
    
      
      
    }


/* Container */
.who-we-are-section {
    background: linear-gradient(135deg, #f4f9f9, #ffffff);
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Card */
.who-we-are-box {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
}

/* Title */
.who-we-are-box h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f3d3e;
    margin-bottom: 20px;
    position: relative;
}

.who-we-are-box h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #72c3bf;
    display: block;
    margin-top: 10px;
    border-radius: 4px;
}

/* Content */
.who-we-are-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* Highlight */
.highlight {
    color: #0f3d3e;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .who-we-are-box {
        padding: 30px;
    }

    .who-we-are-box h2 {
        font-size: 28px;
    }

    .who-we-are-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .who-we-are-box h2 {
        font-size: 24px;
    }
}



/* Section Styling */
.partners-section {
    padding: 10px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.partners-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 600;
}

/* Grid Layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Partner Column */
.partner-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-column:hover {
    transform: translateY(-5px);
}

.partner-column h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 500;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

/* Logo Cards */
.logo-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-card {
    height: 60px;
    border: 1.5px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.logo-card:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
    background: #f0f9ff;
}

/* Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

