html {
  width: 100%;
  overflow-x: hidden;
}
body {

  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
  position: relative;
    width: 100%;
    min-width: 100%;
  
}

section {
  padding: 60px 10%;
}

h1, h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-navy { color: #2c599d; }
.text-orange { color: #f98125; }

.cta-button {
  background: #f98125;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
}


/* banner */
.banner {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(rgba(22, 22, 22, 0.8), rgba(19, 44, 79, 0.9)),
        url('/img/TEAM.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    padding-bottom: 30px;
}
:root {
    
    --card-color-1:  var(--primary);
    --card-color-2: var(--accent);
    --card-color-3: white;
    --card-color-4: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);;
    
}



.section {
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 5vw, 2rem);
}

.light-bg {
  background-color: #f0f8ff;
}

.container {
  display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.container.reverse {
  flex-direction: row-reverse;
}

.text,
.image {
  flex: 1 1 300px;
}

.image img {
  width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

h1, h2 {
  color: #2c599d;
  margin-bottom: 20px;
}

p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.btn-orange {
  background: #f98125;
  color:black;
  text-decoration: none;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #2c599d;
  color: #2c599d;
}

.btn-outline:hover {
  background-color: #2c599d;
  color: #fff;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  

  .container {
    flex-direction: column;
  }

  .container.reverse {
    flex-direction: column;
  }

  .text,
  .image {
    flex: 1 1 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2rem 1rem;
  }

  .btn-orange,
  .btn-outline {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
