body {
  font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.navbar-brand .logo-Eurika {
  width: 170px;
  height: auto;
  margin-left: -20px;
}



#navMenu{
  margin-right: 10px;
}


/* ===== 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 */
}



/* ===== 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;
}
/* Mobile: center dropdown items */
@media(max-width:992px){
  .dropdown-menu {
    text-align: center;   /* items center */
    width: auto;          /* fit content */
    margin: 0 auto;       /* center the menu */
  }

  .dropdown-menu li a {
    display: block;
    width: 100%; /* ya chhota kar sakte ho */
  }
}


/* ===== 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;
  }
}

@media (max-width: 992px) {
  .nav-link,
  .dropdown-menu li a {
    display: block;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .dropdown-menu {
    text-align: left;
    padding-left: 15px;
  }
}

@media (max-width: 992px) {
  .dropdown-submenu > a::after {
    content: "▼";
    font-size: 12px;
  }
}






/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}



/* TEXT STYLE */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.2rem;
}

.welcome-text {
  color: #ff4d5a;
  letter-spacing: 2px;
  font-weight: 600;
}



/* BUTTON ANIMATION */
.btn {
  transition: all 0.3s ease;
  font-size: 13px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.btn-danger {
  background: orangered;
  border: none;
  border-radius: 40px;
  align-items: center;
  font-weight: 600;
}

/* ===============================
   Tablets (max-width: 992px)
================================ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 12px;
    padding: 10px 24px;
  }
}

/* ===============================
   Mobile (max-width: 768px)
================================ */
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .welcome-text {
    letter-spacing: 1px;
    font-size: 14px;
  }

  .btn {
    font-size: 12px;
    padding: 10px 22px;
  }
}

/* ===============================
   Small Mobile (max-width: 480px)
================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 11px;
    padding: 8px 20px;
  }
}



/* Additional styles for career.css */
.sk-2 {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    /* same as Elementor default */
}

.container1 {
    max-width: 900px;
    padding: 20px;
}

h3 {
    font-size: 65px;
    font-weight: bold;
    margin-top: 20px;
    color: #333333;
    line-height: 1.3;
}

h3 .highlight {
    color: #fcb900;
    /* Elementor highlight color */
}

.m-1 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555555;
}

.btn9 {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    background-color: #fcb900;
    /* matching highlight */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    /* pill shape like Elementor */
    font-weight: bold;
    transition: 0.3s;
}

.btn9:hover {
    background-color: #fcb90081;
}

.image-container {
    margin-top: 40px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}




.sk-0 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #5d5955;
}

.ht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ht-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.ht-subtitle {
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #555;
    text-align: center;
}

.ht-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ht-card {
    display: flex;
    align-items: center;
    border: 2px solid #fff;
    padding: 20px;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
    overflow: hidden;
    background: #939193;
    /* Yellow background */
}


.ht-card:hover {
    transform: scale(1.03);
}

/* Animated borders */
.ht-card:before,
.ht-card:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid #000;
    z-index: 2;
    transition: all 0.8s ease-in-out;
    visibility: hidden;
}

.ht-card:before {
    bottom: 0;
    right: 0;
}

.ht-card:after {
    top: 0;
    left: 0;
}

.ht-card:hover:before,
.ht-card:hover:after {
    width: 100%;
    height: 100%;
    visibility: visible;
}

.ht-icon {
    font-size: 40px;
    color: #ff5722;
    margin-right: 20px;
    flex-shrink: 0;
}

.ht-text {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

@media(max-width: 992px) {
    .ht-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .ht-grid {
        grid-template-columns: 1fr;
    }

    .ht-icon {
        margin-right: 15px;
        font-size: 35px;
    }

    .ht-text {
        font-size: 16px;
    }
}



.office-tour-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #9b9b9bfc;
}

.office-tour-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.office-tour-heading h3 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0;
}

/* Video responsive */
.office-tour-video {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.office-tour-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateX(-50px);
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

.fadeInLeft {
    animation-name: fadeInLeftAnim;
    animation-delay: 0.2s;
}

@keyframes fadeInLeftAnim {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ////////////////////////////////////// carasole section card  */

.carousel-section {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.carousel-header .subtitle {
    font-size: 60px;
    font-weight: 700;
    color: #f39c12;
    display: block;
    margin-bottom: 10px;
}

.carousel-header .title {
    font-size: 60px;
    margin-bottom: 10px;
}

.carousel-header .description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-card {
    background: #fdf2b2;
    border-radius: 10px;
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 50px;
    color: #f39c12;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #555;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow i {
    color: #f39c12;
    font-size: 18px;
}

@media(max-width:1024px) {
    .carousel-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media(max-width:600px) {
    .carousel-card {
        flex: 0 0 calc(100% - 20px);
    }
}




  .main {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f9f9f9;
  }

  .elementor-element {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 40px 20px; */
  }

  .elementor-heading-title {
    font-size: 60px;
    font-weight: 700;
    /* margin: 10px 0; */
    animation: fadeInUp 1s ease forwards;
  }

  .elementor-element  p {
    font-size: 1.1rem;
    color: #555;
    /* margin: 20px 0 40px; */
    animation: fadeInUp 1.2s ease forwards;
  }

  .elementor-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .elementor-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    animation: fadeInUp 1.4s ease forwards;
  }

  .elementor-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
  }

  .elementor-gallery-item:hover img {
    transform: scale(1.1);
  }

  .elementor-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .elementor-gallery-item:hover::after {
    opacity: 1;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }






    .eee {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
  }

  .elementor-element {
    max-width: 1200px;
    width: 100%;
    padding: 50px 20px;
    text-align: center;
  }

  .pxl-heading--inner h3 {
    font-size: 2rem;
    margin: 10px 0 30px;
    color: #222;
    font-weight: 600;
    animation: fadeInUp 1s ease forwards;
  }

  .pxl-item--subtext {
    font-size: 1.1rem;
    color: #777;
    display: block;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease forwards;
  }

  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .process-step {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease forwards;
  }

  .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }

  .process-step i {
    font-size: 60px;
    color: #f39c12;
    margin-bottom: 15px;
    display: block;
  }

  .process-step h2 {
    font-size: 20px;
    margin: 5px 0;
    color: #333;
  }


  .process-step p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* Fade in animation */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .process-step { width: 45%; }
  }
  @media (max-width: 600px) {
    .process-step { width: 90%; }
  }





  /* ////////////////////////////////////////////////////////////FOOTER  */






.main-2 {
  background: #0b0f1a;
}

/* footer */
.modern-footer {
  background: linear-gradient(180deg, #0b0f1a, #111827);
  color: #fff;
  overflow: hidden;
}

/* top call to action */
.footer-top {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at center, #1f2933, transparent 70%);
  animation: fadeUp 1.2s ease;
}

.footer-top h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.footer-top p {
  opacity: .8;
  margin-bottom: 25px;
}

.sk-3 {
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: .4s;
}

.sk-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, .5);
}

/* content */
.footer-content {
  max-width: 1300px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

/* responsive */
@media(max-width:900px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-box img{
  width: 170px;
  height: auto;
}


.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  opacity: .8;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #c7c7c7;
  text-decoration: none;
  transition: .3s;
}

.footer-box ul li a:hover {
  color: #ff6a00;
  padding-left: 6px;
}

/* social */
.social {
  display: flex;
  gap: 15px;
}

.social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: .4s;
}

.social a:hover {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  transform: translateY(-6px);
}

/* bottom */
.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 13px;
  background: #020617;
  opacity: .7;
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
