/* ====== Base Styles ====== */
body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #2B3694;
  margin: 0;
}

.logo {
  height: 150px;
}

/* ====== Navbar ====== */
.navbar {
  background-color: #E1F5FE;
}
.navbar-nav .nav-link {
  color: #2B3694;
  margin-right: 15px;
  position: relative;
}
.navbar-nav .nav-link.active {
  color: #D4AF37;
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #59D2FE;
  bottom: -5px;
  left: 0;
  border-radius: 2px;
  animation: slide-in 0.4s ease forwards;
}
.navbar .btn-warning {
  background-color: #D4AF37;
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.navbar .btn-warning:hover {
  background-color: #c49e2f;
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .navbar-collapse {
    position: absolute; 
    background-color: #E1F5FE;
    top: 100%;               
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;         
  }
 
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.show {
    display: block !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 1.5rem; 
  }

  .navbar .btn-warning {
    margin: 0.5rem 1.5rem;
  }
}


@keyframes slide-in {
  from { width: 0; }
  to { width: 100%; }
}

/* ====== Hero Section ====== */
.hero_Main{
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.carousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 100%;
  width: 100%;
}
.carousel-item img {
  object-fit: cover;
  filter: brightness(50%);
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.carousel-caption h1 {
  font-size: 4rem;
  color: #D4AF37;
}
.carousel-caption p {
  font-size: 1.25rem;
  color: #ffffff;
}
/* ============headers========*/
.pages {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.aboutUs_img{
  background: url('../images/pexels-divinetechygirl-1181346.jpg') no-repeat center center/cover;
}
.services_img{
  background: url('../images/pexels-fauxels-3184291.jpg') no-repeat center center/cover;
}
.contact_img{
  background: url('../images/pexels-khwanchai-12885861.jpg') no-repeat center center/cover;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

header h1 {
  position: relative;
  color: #D4AF37;
  font-size: 3rem;
  z-index: 1;
}


/* ====== Sections ====== */
.section {
  padding: 80px 0;
}
.section h2 {
  font-weight: 600;
  margin-bottom: 30px;
  color: #2B3694;
}


/* ====== Core Item (Legacy Style) ====== */
.core-item {
  background-color: #fff;
  border-left: 5px solid #D4AF37;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.core-item strong {
  display: block;
  margin-bottom: 5px;
  color: #2B3694;
}
.core-item ul {
  padding-left: 0;
}
.core-item ul li {
  margin-bottom: 5px;
}

/* ====== approach  ====== */

.flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.step {
  padding: 2em;
  background-color: #03486E;
  color: white;
  border: 4px solid #FFD700;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.step:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #FFD700;
  animation: bounce 0.6s;
}

@keyframes bounce {
  0%   { transform: scale(1.1) translateY(0); }
  30%  { transform: scale(1.1) translateY(-8px); }
  60%  { transform: scale(1.1) translateY(4px); }
  100% { transform: scale(1.1) translateY(0); }
}


.arrow {
  font-size: 2rem;
  color: #FFD700;
  font-weight: bold;
}

/* ===== Responsive Fixes (DO NOT CHANGE EXISTING DESIGN) ===== */

/* Tablets & medium screens */
@media (max-width: 992px) {
  .flow-wrapper {
    gap: 15px;
  }
  .step {
    width: 140px;
    height: 140px;
    font-size: 0.9rem;
    padding: 1.5em;
  }
  .arrow {
    font-size: 1.8rem;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .flow-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .arrow {
    font-size: 2rem;
    transform: rotate(90deg);
  }
}

/* Extra small screens (small phones) */
@media (max-width: 480px) {
  .step {
    width: 120px;
    height: 120px;
    font-size: 0.85rem;
    padding: 1.2em;
  }
  .arrow {
    font-size: 1.6rem;
  }
}





/* ====== Cards & Info Boxes ====== */
.card {
  border: none;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}
.card-img-top {
  /* height: 400px; */
  object-fit:fill;
  border-bottom: 1px solid #eee;
}
.card-title {
  color: #2B3694;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
}
.card-text {
  font-size: 0.95rem;
  color: #5f6ace;
}


/* Desktop: show all normally */
.cert-scroll-wrapper {
  position: relative;
}

/* Scrollable container (only active on small screens) */
.cert-scroll {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Card sizing */
.cert-scroll .card {
  min-width: 250px;
}

.cert-scroll .card-img-top {
  width: 80%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Scroll buttons */
/* .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #03486E;
  color: #FFD700;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 10;
}

.cert-scroll-wrapper:hover .scroll-btn {
  opacity: 1;
}

.scroll-btn.prev { left: -20px; }
.scroll-btn.next { right: -20px; } */

/* Enable scroll on mid + small screens */
@media (max-width: 992px) {
  .cert-scroll {
    overflow-x: auto;
    scrollbar-width: none;  
  }
  .cert-scroll::-webkit-scrollbar {
    display: none;
  }
}






.info-box {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.info-box:hover {
  transform: translateY(-5px);
}

/* ====== About Us Layout ====== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.grid-2 {
  display: grid;
  /* display: flex; */
  /* display:; */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.about-box,
.about-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}
.card-title {

}
.icon-box {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 15px;
}

/* ====== Core Values Section ====== */
.core-values h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.value-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2B3694;
}
.value-item i {
  font-size: 1.5rem;
  color: #D4AF37;
}
.value-item p {
  font-size: 0.95rem;
  color: #555;
}
.value-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-item:hover i {
  color: #59D2FE;
  transform: scale(1.2);
  transition: color 0.3s ease, transform 0.3s ease;
}


/* ====== Core Item (Legacy Style) ====== */
.our-approach h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2B3694;
}

.our-approach p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.approach-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}




/* ====== Services ====== */
/* .services-hero {
  background: url('../images/pexels-fauxels-3184291.jpg') center center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
} */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-top: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
}
.icon-service {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2B3694;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.cta-section {
  background-color: #E1F5FE;
  padding: 60px 20px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.btn-primary {
  background-color: #D4AF37;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #c49e2f;
}

/* ====== Pricing ====== */
.pricing h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2B3694;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.pricing-table thead {
  background-color: #2B3694;
  color: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pricing-table tbody tr:hover {
  background-color: #f9f9f9;
}

.pricing-table td:nth-child(3) {
  color: #D4AF37;
  font-weight: 600;
}




/* ====== Contact ====== */
.contact-hero {
  background: url('../images/pexels-divinetechygirl-1181346.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.contact-section .grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.icon-contact {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #D4AF37;
}
.map-section iframe {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}



/* ====== Animations ====== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Footer ====== */
footer {
  background: #E1F5FE;
  color: #2B3694;
  padding: 20px 0;
}

/* ====== Email sent/Fail ====== */
.alert-success {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}




waqs xnrv qvyq jatv