/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Topbar */
.topbar {
  background: #333;
  color: #fff;
  font-size: 14px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.hamburger {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 15px 0;
}

.logo img {
  height: 100px;
  width:100px;
}

.header-inner {
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.contact-info div p {
  font-weight: bold;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

/* Navbar */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.navbar .has-submenu {
  position: relative;
}

.navbar .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar .has-submenu:hover .submenu {
  display: flex;
}

.navbar .submenu li {
  padding: 10px 15px;
  white-space: nowrap;
}

.navbar .submenu li a {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info {
    display: none;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 10px 20px;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
}



/* slider */



.slider {
  position: relative;
  width: 100%;
  max-height: 70vh;  /* 👈 Adjust this for smaller height */
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 👈 Ensures image fits the container */
  display: block;
  object-fit: fill;

}

/* Optional max height for picture */
.slide picture {
  display: block;
  height: 70vh; /* 👈 or any value like 400px */
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}


/* slider end */




.stats-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  color: #1f2c56;
}

.stats-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.stat-box {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-box i {
  font-size: 40px;
  color: #0b1b53;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
}

.stat-box .currency {
  font-size: 26px;
  vertical-align: top;
}

.stat-box .unit {
  font-size: 18px;
  color: #999;
}

.stat-box .line {
  width: 40px;
  height: 1px;
  background: #ccc;
  margin: 12px auto;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.as-on {
  margin-top: 40px;
  font-size: 13px;
  color: #999;
}


/* end */






.about-section {
  background-color: #fff;
  padding: 60px 20px;
  color: #1f2c56;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: right; /* right align for list */
}

.about-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: #1f2c56;
  font-weight: 600;
  text-transform: uppercase;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-points li {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
  text-align: left;
  margin-bottom: 15px;
}

.about-points i {
  color: #0b1b53;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
}

/* end */

.note-section {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 20px 25px;
  background-color: #f5f8ff;
  border-left: 5px solid #0b1b53;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2c56;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.note-section strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
  color: #0b1b53;
}

.note-section .highlight {
  font-weight: bold;
  color: #e63946;
}


/* end */


.footer {
  background-color: #272e70;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 30px;
}
.footer-top {
  background-color: #0d1f53;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.contact-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 250px;
  margin: 10px;
  color: #fff;
}
.contact-item .icon i {
  font-size: 24px;
  margin-top: 5px;
  color: #fff;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
}
.footer-logo img {
  width: 150px;
  height: auto;
}
.footer-links h4,
.callback-form h4 {
  margin-bottom: 15px;
  font-size: 18px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 6px 0;
}
.callback-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.callback-form input,
.callback-form textarea {
  padding: 8px;
  border: none;
  border-radius: 4px;
  background-color: #2e3a80;
  color: white;
}
.callback-form textarea {
  resize: vertical;
  height: 100px;
}
.radio-group {
  display: flex;
  gap: 15px;
  font-size: 14px;
  margin-bottom: 10px;
}
.captcha-box {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
}
.callback-form button {
  padding: 10px;
  background-color: #cbd9ef;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
.footer-note {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #ccc;
}
.copyright {
  background-color: #1a1a3d;
  color: #aaa;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
}
.copyright a {
  color: #ccc;
  text-decoration: none;
}