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;
    }
}





.android-app-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
  overflow: hidden;
}

.android-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.android-text {
  flex: 1;
}

.android-text .tag {
  display: inline-block;
  background: #22c55e;
  color: #000;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.android-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.android-text p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.android-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.android-features li {
  margin-bottom: 12px;
  font-size: 16px;
}

.android-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 14px 35px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34,197,94,0.4);
}

.btn-outline {
  border: 2px solid #22c55e;
  padding: 12px 35px;
  border-radius: 50px;
  color: #22c55e;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #22c55e;
  color: #000;
}

.android-image {
  flex: 1;
  text-align: center;
}

.android-image img {
  max-width: 350px;
  animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Responsive */

@media (max-width: 992px) {
  .android-content {
    flex-direction: column;
    text-align: center;
  }

  .android-text h2 {
    font-size: 32px;
  }

  .android-buttons {
    justify-content: center;
  }

  .android-image img {
    max-width: 250px;
    margin-top: 40px;
  }
}












.app-showcase-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #111827, #0f172a);
  color: #fff;
}

.showcase-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* Phone Mockup */
.phone-mockup {
  background: #000;
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0 0 40px rgba(34,197,94,0.4);
  animation: float 4s ease-in-out infinite;
}

.phone-mockup img {
  width: 280px;
  border-radius: 20px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Content */
.showcase-content {
  flex: 1;
}

.showcase-content .tag {
  background: #22c55e;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: inline-block;
  margin-bottom: 20px;
}

.showcase-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-box:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
}

.feature-box h4 {
  margin-bottom: 10px;
}

/* Responsive */

@media (max-width: 992px) {
  .showcase-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup img {
    width: 220px;
  }

  .showcase-content h2 {
    font-size: 28px;
  }
}








.app-process-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
}

.section-header .tag {
  background: #22c55e;
  color: #000;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto 70px;
  opacity: 0.85;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.process-step {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 20px;
  flex: 1;
  min-width: 220px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
}

.process-step:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
}

.step-number {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #22c55e;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.process-cta {
  margin-top: 70px;
}

.process-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 15px 40px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.process-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

/* Responsive */

@media (max-width: 992px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 400px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}








.app-testimonial-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #111827, #0f172a);
  color: #fff;
  text-align: center;
}

.testimonial-header .tag {
  background: #22c55e;
  color: #000;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.testimonial-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.testimonial-header p {
  max-width: 700px;
  margin: 0 auto 70px;
  opacity: 0.85;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
}

.stars {
  font-size: 20px;
  margin-bottom: 20px;
  color: #22c55e;
}

.testimonial-card p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.client-info h4 {
  margin: 0;
  font-size: 18px;
}

.client-info span {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }
}














/* ////////////////////////////////////////////////////////////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);
    }
}