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;
}


/* ===== 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;
  }
}





/* 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;
  }
}


/* ////////////////////////////////////////////////////about section  */



.about-us-section {
  background-color: #f8f9fa; /* light background */
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #1f2937;
}

/* Paragraph text */
.section-text p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Rounded and shadowed image */
.about-us-section img {
    height: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Simple slide-up animation */
.animate-slide-up {
    font-size: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-slide-up.delay-1 {
  transition-delay: 0.3s;
}

.animate-slide-up.delay-2 {
  transition-delay: 0.6s;
}

.animate-slide-up.delay-3 {
  transition-delay: 0.9s;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.partners {
  background-color: #1a1a1a; /* dark background */
}

.partner-item {
  background-color: #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.partner-item img {
  max-width: 70%;
  height: auto;
}

/* Simple slide-up animation */
.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-slide-up.delay-1 { transition-delay: 0.2s; }
.animate-slide-up.delay-2 { transition-delay: 0.4s; }
.animate-slide-up.delay-3 { transition-delay: 0.6s; }

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}











/* Floating shapes animations */
@keyframes float1{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(40px) translateX(30px);}}
@keyframes float2{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(-50px) translateX(-40px);}}
@keyframes float3{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(30px) translateX(-20px);}}

.brand-section .sub-item:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  background:rgba(255,255,255,0.2);
}

@media(max-width:900px){
  .brand-container{flex-direction:column;}
}






/* //////////////////////////////////////////////////////   */




.services-section {
  padding: 90px 20px;
  background: #f7f9fc;
  position: relative;
}



/* .services-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #f8f9ff, #eef2ff, #fdfbff);
  background-size: 300% 300%;
  animation: bgMove 10s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */


.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT SIDE */
.services-left {
  width: 50%;
}

.tagline {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

/* SERVICES GRID */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* Clean hover */
.service-item:hover {
  transform: translateY(-6px);
  border-color: #6366f1;
  box-shadow:
    0 10px 30px rgba(99,102,241,0.15),
    inset 0 0 0 1px rgba(99,102,241,0.4);
}



/* Smooth underline glow */
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e9f2 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.35;
  pointer-events: none;
}


.service-item:hover::after {
  width: 60%;
}


/* RIGHT IMAGE */
.services-right {
  width: 50%;
}

.services-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Floating shapes animations */
@keyframes float1{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(40px) translateX(30px);}}
@keyframes float2{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(-50px) translateX(-40px);}}
@keyframes float3{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(30px) translateX(-20px);}}

.brand-section .sub-item:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  background:rgba(255,255,255,0.2);
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .services-container {
    flex-direction: column;
  }

  .services-left,
  .services-right {
    width: 100%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}















/* =========================
   SECTION BACKGROUND
========================= */
.app-section {
  position: relative;
  padding: 130px 20px;
  background: #f9fafb;
  overflow: hidden;
}

/* animated background waves */
.app-section::before,
.app-section::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at center,
    rgba(99,102,241,0.15),
    rgba(14,165,233,0.10),
    transparent 65%
  );
  animation: bgExpand 18s ease-in-out infinite;
}

.app-section::after {
  animation-delay: 8s;
  opacity: 0.6;
}

@keyframes bgExpand {
  0%   { transform: scale(1) translateY(0); }
  50%  { transform: scale(1.4) translateY(-60px); }
  100% { transform: scale(1) translateY(0); }
}

/* =========================
   CONTAINER
========================= */
.app-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* =========================
   IMAGE
========================= */
.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  width: 90%;
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* =========================
   CONTENT
========================= */
.app-content {
  flex: 1;
}

.tagline {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f172a;
}

.title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  color: #020617;
}

.desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 36px;
}

/* =========================
   PLATFORMS GRID
========================= */
.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.platform {
  padding: 20px 26px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
  animation: breathe 5s infinite ease-in-out;
}

@keyframes breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* hover expand */
.platform:hover {
  transform: scale(1.18);
  z-index: 2;
  box-shadow:
    0 25px 60px rgba(99,102,241,0.35),
    inset 0 0 0 1px rgba(99,102,241,0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .app-container {
    flex-direction: column;
  }

  .app-image img {
    width: 85%;
  }

  .platforms {
    grid-template-columns: 1fr;
  }

  .platform:hover {
    transform: scale(1.08);
  }
}












/* <!-- //////////////////////////////////////////////////////////carasole card  --> */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

/* =====================
   SECTION BACKGROUND
===================== */
.mv-section {
  position: relative;
  padding: 160px 0 100px 0;
  background: #f9fafb;
  overflow: hidden;
}

.mv-section::before,
.mv-section::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at center,
    rgba(99,102,241,0.12),
    rgba(14,165,233,0.08),
    transparent 75%
  );
  animation: bgWave 25s ease-in-out infinite alternate;
}

.mv-section::after {
  animation-delay: 12s;
  opacity: 0.6;
}

@keyframes bgWave {
  0% { transform: scale(1) translateY(0) rotate(0deg); }
  50% { transform: scale(1.45) translateY(-70px) rotate(3deg); }
  100% { transform: scale(1) translateY(0) rotate(0deg); }
}

/* =====================
   SECTION HEADING
===================== */
.mv-container {
  position: relative;
  max-width: 1250px;
  margin: auto;
  z-index: 1;
  padding: 0 20px;
}

.mv-section-title {
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

/* =====================
   CAROUSEL
===================== */
.mv-wrapper {
  position: relative;
  overflow: hidden;
}

.mv-track {
  display: flex;
  gap: 35px;
  width: max-content;
  animation: scrollSlow 35s linear infinite;
  padding-left: 60px;
}

.mv-wrapper:hover .mv-track {
  animation-play-state: paused;
}

@keyframes scrollSlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   CARD STYLE
===================== */
.mv-card {
  min-width: 320px;
  max-width: 320px;
  padding: 36px 28px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
  animation: breatheCard 6s ease-in-out infinite;
}

/* subtle card breathing */
@keyframes breatheCard {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* hover effect */
.mv-card:hover {
  transform: scale(1.18);
  z-index: 5;
  box-shadow:
    0 35px 70px rgba(99,102,241,0.38),
    inset 0 0 0 1px rgba(99,102,241,0.65);
}

/* =====================
   CARD TEXT
===================== */
.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #020617;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.mv-card ul {
  list-style: none;
}

.mv-card ul li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #475569;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .mv-card {
    min-width: 260px;
    max-width: 260px;
  }

  .mv-card:hover {
    transform: scale(1.08);
  }

  .mv-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* //////////////////////////////////////////////////////////////// card hover  */


.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center → space-between */
  gap: 15px;
  padding: 50px 20px;
  background: #f2f2f2;
}

.hover-card {
  width: 20%; /* fixed width 23% → 4 cards horizontal with gap */
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(-45deg, #ff6b6b, #f7d794, #6a89cc, #78e08f, #ff9ff3, #55efc4);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Card hover effect */
.hover-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Header */
.card-header {
  padding: 20px;
  font-weight: bold;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Content */
.card-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #000;
  background: #fff;
  border-top: 1px solid #ddd;
  transition: max-height 0.5s ease, padding 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Expand content on hover */
.hover-card:hover .card-content {
  max-height: 250px;
  padding: 15px 20px;
}

/* Button */
.card-btn {
  padding: 10px 15px;
  background-color: #6c63ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.card-btn:hover {
  background-color: #5751d4;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Gradient Animation */
@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Responsive */
@media (max-width: 1024px) {
  .hover-card { width: 45%; }
}
@media (max-width: 768px) {
  .hover-card { 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);
  }
}
















