body {
    font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.navbar-brand .logo-Eurika {
    width: 170px;
    height: auto;
    margin-left: -20px;
}



#navMenu {
    margin-right: -20px;
}


/* ===== NAVBAR ===== */
.main-nav {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 4px solid orangered;
}

/* ===== NAV LINKS ===== */
.nav-link {
    position: relative;
    transition: 0.3s;
    font-weight: 600;
    font-size: 17px;
    color: orangered;
    display: inline-block;
}

.nav-item:hover {
    cursor: pointer;
}

/* TOP LINE ON HOVER */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #0272b3;
    transition: 0.3s;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #0272b3;
}

/* ===== DROPDOWN MENU ===== */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    display: none;
    margin-top: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.dropdown-menu li a {
    color: orangered;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    transition: 0.3s;
}

/* TOP LINE ON DROPDOWN ITEMS */
.dropdown-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #0272b3;
    transition: 0.3s;
}

.dropdown-menu li a:hover::before {
    width: 100%;
}

.dropdown-menu li a:hover {
    color: #0272b3;
    background: rgba(255, 255, 255, 0.2);
}

/* REMOVE DROPDOWN ICON */
.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* SHOW DROPDOWN ON MOBILE WHEN .show CLASS ADDED */
.nav-item.dropdown.show>.dropdown-menu {
    display: block !important;
}

/* REMOVE BOTTOM LINE ON DROPDOWN ITEMS */
.dropdown-menu li a {
    text-decoration: none;
    /* remove underline */
    border-bottom: none;
    /* remove any bottom border */
}

.dropdown-menu li a:hover::before {
    width: 100%;
    /* only top line will show */
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #0272b3;
}

/* SHOW DROPDOWN ON HOVER */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.nav-item.dropdown.show>.dropdown-menu {
    display: block !important;
    /* mobile pe JS toggle ke liye */
}


.btn-danger {
  background: orangered;
  border: none;
  border-radius: 40px;
  align-items: center;
  font-weight: 500;
}



/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        display: none;
        /* disable hover on mobile */
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: none;
    }
}

@media(max-width:768px) {
    .navbar-brand .logo-Eurika {
        margin-left: 0;
        width: 140px;
    }

    #navMenu {
        margin-right: 0;
    }
}

@media(max-width:992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: none;
        /* disable hover on mobile */
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: none;
    }
}

.nav-item.dropdown.show>.dropdown-menu {
    display: block !important;
}


/* ===== SUB DROPDOWN ===== */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    display: none;
}

/* Hover show */
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Arrow spacing fix */
.dropdown-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile fix */
@media (max-width: 992px) {
    .dropdown-submenu>.dropdown-menu {
        position: static;
        display: none;
    }

    .dropdown-submenu.show>.dropdown-menu {
        display: block;
    }
}















/* Reset */
/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
} */

.form-sk{
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container1000 {
  display: flex;
  width: 1000px;
  max-width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section2 {
  flex: 1;
  padding: 40px;
  position: relative;
}

.form-section h2 {
  color: #007BFF;
  margin-bottom: 20px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

/* Progress bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  counter-reset: step;
}

.progressbar li {
  list-style: none;
  width: 25%;
  position: relative;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.progressbar li:before {
  counter-increment: step;
  content: counter(step);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid #aaa;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: white;
}

.progressbar li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #aaa;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: #007BFF;
}

.progressbar li.active:before {
  border-color: #007BFF;
  background: #007BFF;
  color: white;
}

.progressbar li.completed {
  color: green;
}

.progressbar li.completed:before {
  content: '✔';
  border-color: green;
  background: green;
  color: white;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
}

.half {
  width: 48%;
  display: inline-block;
}

.half:first-child {
  margin-right: 4%;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.buttons button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.next {
  background: #007BFF;
  color: white;
}

.back {
  background: #ccc;
  color: black;
}

/* Right image */
/* .image-section { flex: 1; background: url('https://cdn.dribbble.com/userupload/38918092/file/original-9788bb3de022af9a90a952a413a2af93.png') center/cover no-repeat; } */

@media(max-width: 900px) {
  .container1 {
    flex-direction: column;
  }

  .half {
    width: 100%;
    margin-right: 0;
  }

  .image-section {
    height: 300px;
  }
}



















/* ////////////////////////////////////////////////////////////FOOTER  */





.footer{
  /* background:#f5f5f5; */
  padding:60px 80px;
  position:relative;
  overflow:hidden;
}


.footer{
  max-width:1450px;   /* 👈 width kam */
  margin:40px auto;   /* 👈 center + top/bottom space */
  border-radius:10px; /* 👈 optional (nice look) */
}



/* watermark */
.footer::after{
  content:"";
  position:absolute;
  right: 60px;
  top:  50px;
  width:500px;
  height:500px;
  background:url('img/favicon.jpg.png') no-repeat center;
  background-size:contain;
  opacity:0.05;

  pointer-events: none; /* ✅ IMPORTANT FIX */
}

/* LOGO */
.logo{
  margin-bottom:40px;
  margin-left: -14px;
}
.logo img{
  width:220px;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:40px;
}

/* LINKS */
.footer a{
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

.footer a:hover{
  color:orangered;
}

/* HEADINGS */
.footer h3{
  font-size:24px;
  margin-bottom:15px;
}

.footer h3::after{
  content:"";
  display:block;
  width:30px;
  height:3px;
  background:orangered;
  margin-top:8px;
}

/* LIST */
.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin:10px 0;
  font-size:14px;
}

/* NEWSLETTER */
.newsletter p{
  margin-bottom:15px;
}

.input-box{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  border:1px solid #ddd;
}

.input-box input{
  border:none;
  padding: 8px;
  flex:1;
  outline:none;
}

.input-box button{
  background:orangered;
  border:none;
  color:#fff;
  padding:12px 12px;
  cursor:pointer;
  border-radius:0 30px 30px 0;
}


/* SOCIAL */
.social-icons i{
  margin-right:15px;
  font-size: 25px;
  cursor:pointer;
  transition:0.3s;
}

.social-icons i:hover{
  color: orangered;
}

/* TABLET */
@media(max-width:1024px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
  }
}

/* MOBILE */
@media(max-width:600px){
  .footer{
    padding:40px 20px;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}

