/* ========== Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ========== Header ========== */
/* ================= Header ================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f2833;
  padding: 10px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  font-family: Arial, sans-serif;
  z-index: 1000;
  position: relative;
}

/* Logo */
.h-logo img {
  height: 50px;
}

/* Navigation */
.h-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.h-nav ul li {
  position: relative;
}

.h-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  white-space: nowrap;
  border-radius: 4px;
}

.h-nav ul li a:hover {
  background-color: #3f5673;
}

/* Dropdown */
.h-nav ul li ul.dropdown-contnet {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f2833;
  list-style: none;
  padding: 10px 0;
  min-width: 220px;
  border-radius: 4px;
  z-index: 999;
}

.h-nav ul li:hover ul.dropdown-contnet {
  display: block;
}

.dropdown-contnet li a {
  padding: 10px 20px;
  display: block;
  color: #fff;
}

.dropdown-contnet li a:hover {
  background: #4f6788;
}

/* Avatar */
.h-avatar {
  position: relative;
}

.user-dropdown {
  cursor: pointer;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1f2833;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  user-select: none;
}

/* User menu dropdown */
.user-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  background: #1f2833;
  list-style: none;
  padding: 10px 0;
  border-radius: 4px;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.user-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  border-radius: 4px;
}

.user-dropdown:hover .user-menu {
  display: block;
}

.user-menu li a:hover {
  background: #4f6788;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ================= Sidebar ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #1f2833;
  padding: 30px 20px;
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  padding: 12px 15px;
  display: block;
  border-radius: 4px;
  white-space: nowrap;
}

.sidebar ul li a:hover {
  background-color: #3f5673;
}

/* Sidebar nested dropdowns */
.sidebar ul li ul {
  display: none;
  padding-left: 15px;
}

.sidebar ul li.open > ul {
  display: block;
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}

/* ================= Responsive ================= */
@media screen and (max-width: 992px) {
  .h-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* ============= home page ==============================================================*/

/* ========== Video Section ========== */
.h-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Services ========== */
.home-contnet {
  padding: 40px 20px;
  text-align: center;
}

.cont-head h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #4f6788;
}

.osti {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.card h4 {
  color: #333;
}
.extra-img {
  width: 90%;
  max-width: 1200px;
  height: 400px; /* adjust as needed */
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
}

.extra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio */
  flex-shrink: 0;
}

/* ========== Footer ========== */
/* ================= Footer ================= */
.footer {
  background: #1f2833;
  color: #fff;
  padding: 60px 30px 30px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left widget */
.footer .widget {
  flex: 1 1 300px;
  min-width: 250px;
}

.widget-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.widget-logo img {
  height: 50px;
}

.widget-logo h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.footer .widget p {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer .widget h4 {
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 15px;
}

/* Social media */
.social-media {
  display: flex;
  gap: 15px;
}

.social-media a img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
  background-color: white;
  color: #fff;
}

.social-media a:hover img {
  transform: scale(1.2);
}

/* Right widget links */
.widget-links {
  display: flex;
  flex: 2 1 500px;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.widget-links div {
  flex: 1 1 150px;
  min-width: 120px;
}

.widget-links h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.widget-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-links ul li {
  margin-bottom: 10px;
}

.widget-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.widget-links ul li a:hover {
  color: #f0a500;
}

/* ================= Responsive ================= */
@media screen and (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .widget-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  .widget-logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .widget-logo img {
    margin-bottom: 10px;
  }

  .social-media {
    justify-content: flex-start;
  }
}

/* ======================================== about us contnet ========================================*/
/* ================= About Us Page ================= */
.abt-contianer {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #333;
}

.abt-contianer img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* Headings */
.abt-contianer h3 {
  font-size: 24px;
  margin: 20px 0 10px;
  color: #2c3e50;
}

.abt-contianer h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.abt-contianer ul {
  margin: 15px 0 20px 20px;
  padding: 0;
}

.abt-contianer ul li {
  margin-bottom: 10px;
}

/* Vision Section */
.vision-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vis-container {
  flex: 1 1 55%;
}

.vis-container h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
}

.div-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.div-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-section {
    flex-direction: column;
    text-align: center;
  }

  .vis-container {
    flex: 1 1 100%;
  }

  .div-img {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .abt-contianer h3 {
    font-size: 20px;
  }

  .abt-contianer h5,
  .vis-container h4 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .abt-contianer {
    padding: 15px;
  }

  .abt-contianer h3 {
    font-size: 18px;
  }

  .abt-contianer h5,
  .vis-container h4 {
    font-size: 14px;
  }
}
/* ========================== setps =========================*/
/* Overall page */
.registration-page {
  display: flex;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  box-sizing: border-box;
  padding: 50px;
  gap: 40px; /* spacing between left and right */
}

/* Left Section */
.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative; /* ensures proper positioning */
}

.left-section img.logo {
  display: block;
  margin: 0 auto; /* centers horizontally */
  max-width: 180px;
}

.left-section .logo {
  display: block;
  max-width: 180px;
  margin-bottom: 30px;
  justify-content: center;
  justify-items: center;
  padding-bottom: 50px;
}
.require-t{
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.left-section .form-require h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.left-section .form-require ul {
  list-style-type: disc;
  padding-left: 20px;
}

.left-section .form-require ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Right Section */
.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form popup */
.form-popup {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Make page unified */
.registration-page .left-section,
.registration-page .right-section {
  background: transparent;
}

/* Responsive */
@media(max-width: 992px) {
  .registration-page {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .form-popup {
    padding: 30px;
  }
}
/* hide all forms initially */
.step-form {
  display: none;
}

/* only first form visible on page load */
.step-form.active {
  display: block;
}

/* ======================================== forget paswrd ==================================== */
.forgot-password-form {
  width: 350px;
  margin: 80px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  font-family: Arial, sans-serif;
}

.forgot-password-form h2 {
  margin-bottom: 25px;
  color: #333;
}

.forgot-password-form form {
  display: flex;
  flex-direction: column;
}

.forgot-password-form label {
  margin-bottom: 8px;
  text-align: left;
  color: #555;
  font-weight: 500;
}

.forgot-password-form input {
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.forgot-password-form input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

.forgot-password-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.forgot-password-form button:hover {
  background-color: #0056b3;
}

/*============================= tricker menu ===============================*/
.menu-wrap {
  width: 30%;
  background: #0d6efd; /* blue */
  display: flex;
  flex-direction: column; /* makes it vertical */
}

/* ===== MENU ITEM STYLE (UNCHANGED BASE STYLE) ===== */
/* ===== VERTICAL TICKER MENU (LIMITED HEIGHT) ===== */
.menu-wrap {
  background: #0d6efd;
  display: inline-block; /* shrink to content width */
  max-height: 200px; /* adjust as needed */
  overflow: hidden;
  border-radius: 6px;
  padding: 5px 0;
}

/* ===== MENU ITEM ===== */
.menu-item {
  -webkit-text-size-adjust: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding: 12px 20px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  width: 200px; /* fixed width so menu doesn't stretch */
  text-align: left;
  transition: background 0.3s ease;
}
.menu-head{
  font-size: larger;
  font-weight: 600;
  color: #fff;
}

/* Hover effect */
.menu-item:hover {
  background: rgba(255,255,255,0.15);
  cursor: pointer;
}
