
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #fff;
color: #003366;
}
.navbar {
padding:1rem;
background: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 999;
}
.navbar-brand {
font-size: 1.6rem;
font-weight: 700;
color: #003366;
display: flex;
align-items: center;
gap: 8px;
margin-left: 5%;
}
.navbar-toggler {
padding: 4px 8px;
border: none;
align-self: center;
}
.navbar-toggler:focus {
box-shadow: none;
}
.nav-link {
color: #003366 !important;
margin: 0 12px;
font-weight: 500;
position: relative;
}
.nav-link:hover {
color: #004aad !important;
}
.dropdown-menu {
border-radius: 10px;
border: none;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
color: #003366;
padding: 10px 18px;
font-weight: 500;
}
.dropdown-item:hover {
background-color: #004aad;
color: #fff;
}
.btn-login {
background-color: #004aad;
color: #fff;
border-radius: 30px;
padding: 8px 22px;
font-weight: 600;
transition: 0.3s;
}
.btn-login:hover {
background-color: #003366;
}
.hero-section {
position: relative;
display: flex;
align-items: center;
min-height: 90vh;
background: url('/image/profile.jpeg') no-repeat center center/cover;
color: #003366;
width: 100%;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.85);
}
.hero-content {
position: relative;
z-index: 2;
max-width: 700px;
margin-left: 6%;
}
.hero-content h1 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.3;
}
.hero-content p {
font-size: 1.1rem;
margin-bottom: 30px;
color: #444;
}
.btn-primary-custom {
background-color: #004aad;
border: none;
color: #fff;
padding: 12px 26px;
border-radius: 30px;
font-weight: 600;
margin-right: 10px;
transition: 0.3s;
}
.btn-primary-custom:hover {
background-color: #003366;
}
.btn-warning-custom {
background-color: #f7b731;
color: #003366;
border: none;
padding: 12px 26px;
border-radius: 30px;
font-weight: 600;
transition: 0.3s;
}
.btn-warning-custom:hover {
background-color: #f5a623;
color: #fff;
}
@media (max-width: 768px) {
.hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 2rem;
}
}

.philosophy-section {
  background-color: #eaf4ff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #004aad;
}

.philosophy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.philosophy-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.6;
}

.philosophy-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px; 
}

.card-box {
  background-color: #004aad;
  color: #fff;
  border-radius: 14px;
  padding: 40px 25px;
  width: 300px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-box .icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.card-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.card-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}


.card-box:hover {
  background-color: #fff;
  color: #004aad;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-box:hover .icon {
  color: #004aad;
}


@media (max-width: 768px) {
  .philosophy-container {
    flex-direction: column;
    align-items: center;
  }
}


.about-section {
  background-color: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 850px;
  text-align: left;
}

.about-container h2 {
  color: #004aad;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

/* ===== About Us Button ===== */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #004aad;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #00388f;
  transform: translateY(-2px);
}

.plan-section {
  background-color: #004aad;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.plan-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan-section p {
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.6;
  color: #e3e8ff;
}


.plan-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}


.plan-row {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.plan-card {
  background-color: #0056cc;
  color: #fff;
  padding: 75px 50px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.plan-card:hover {
  background-color: #fff;
  color: #004aad;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.plan-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: black;
}


.plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffc107;
  color: #004aad;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .plan-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .plan-card {
    width: 90%;
  }
}

.solution-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  background-color: #fff;
}

.solution-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 85%;
  gap: 50px;
}

.solution-image {
  flex: 1;
  /* background-color: #c8ecf5; */
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;          
  object-fit: cover;     
  border-radius: 10px;
  margin-top: -20%;
}

.solution-content {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.solution-content h2 {
  color: #004aad;
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: -15%;
}

.solution-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.solution-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-content li {
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
}

.solution-content li strong {
  color: #004aad;
  font-size: 18px;
}
@media (max-width: 900px) {
  .solution-container {
    flex-direction: column;
  }

  .solution-image,
  .solution-content {
    width: 100%;
  }
}



