body {
    font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.navbar-brand .logo-Eurika {
    width: 170px;
    height: auto;
    margin-left: -18px;
}



#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;
    }
}






/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* VIDEO */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* DARK OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-left: 140px;
    max-width: 700px;
}

/* TEXT STYLING */
.welcome-text,
.hero-title,
.hero-text,
.hero-buttons {
    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 1s ease forwards;
}

/* STAGGER ANIMATION DELAYS */
.animate-1 {
    animation-delay: 0.2s;
}

.animate-2 {
    animation-delay: 0.5s;
}

.animate-3 {
    animation-delay: 0.8s;
}

.animate-4 {
    animation-delay: 1.1s;
}

/* KEYFRAMES */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTONS */
.hero-buttons .btn {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 15px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: orangered;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* TABLET */
@media (max-width: 992px) {
    .hero-content {
        padding-left: 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
        margin: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
}







.ios-app-section1 {
    /* background: white; */
    background-color: white;
    padding: 90px 8%;
}

.ios-app-container1 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */

.ios-app-image {
    flex: 1;
}

.ios-app-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.ios-app-image img:hover {
    transform: scale(1.05);
}

/* CONTENT */

.ios-app-content {
    flex: 1;
}

.ios-app-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: black;
}

.ios-app-content p {
    color: black;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 16px;
}

.ios-app-btn {
    display: inline-block;
    padding: 12px 26px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.ios-app-btn:hover {
    background: #ddd;
    color: black;
}

/* TABLET */
@media(max-width:900px) {
    .ios-app-container1 {
        flex-direction: column;
        text-align: center;
    }

    .ios-app-content h2 {
        font-size: 28px;
    }
}

/* MOBILE */
@media(max-width:500px) {
    .ios-app-section1 {
        padding: 70px 6%;
    }

    .ios-app-content p {
        font-size: 14px;
    }
}

.ios-app-section1 {
    /* background:#0f0f0f; */
    padding: 90px 8%;
    background-color: white;
}

.ios-app-container1 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */

.ios-app-image {
    flex: 1;
}

.ios-app-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.ios-app-image img:hover {
    transform: scale(1.05);
}

/* CONTENT */

.ios-app-content {
    flex: 1;
}

.ios-app-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: black;
}

.ios-app-content p {
    color: black;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 16px;
}

.ios-app-btn {
    display: inline-block;
    padding: 12px 26px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.ios-app-btn:hover {
    background: #ddd;
    color: black;
}

/* TABLET */
@media(max-width:900px) {
    .ios-app-container1 {
        flex-direction: column;
        text-align: center;
    }

    .ios-app-content h2 {
        font-size: 28px;
    }
}

/* MOBILE */
@media(max-width:500px) {
    .ios-app-section1 {
        padding: 70px 6%;
    }

    .ios-app-content p {
        font-size: 14px;
    }
}




















.app-feature-section {
    background-color: black;
    padding: 90px 8%;
}

.app-feature-container2 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* TEXT */
.app-feature-text {
    flex: 1;
}

.app-feature-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.app-feature-text p {
    color: #bfbfbf;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 16px;
}

.app-feature-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.app-feature-btn:hover {
    background: #ddd;
}

/* IMAGE */
.app-feature-image {
    flex: 1;
}

.app-feature-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.app-feature-image img:hover {
    transform: scale(1.05);
}

/* TABLET */
@media(max-width:900px) {
    .app-feature-container2 {
        flex-direction: column;
        text-align: center;
    }

    .app-feature-text h2 {
        font-size: 28px;
    }
}

/* MOBILE */
@media(max-width:500px) {
    .app-feature-section {
        padding: 70px 6%;
    }

    .app-feature-text p {
        font-size: 14px;
    }
}







.app-showcase-section {
    background-color: white;
    padding: 90px 8%;
}

.app-showcase-container3 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.app-showcase-image {
    flex: 1;
}

.app-showcase-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.app-showcase-image img:hover {
    transform: scale(1.05);
}

/* CONTENT */
.app-showcase-content {
    flex: 1;
}

.app-showcase-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: black;
}

.app-showcase-content p {
    color: black;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 16px;
}

.app-showcase-btn {
    display: inline-block;
    padding: 12px 26px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.app-showcase-btn:hover {
    background: #ddd;
    color: black;
}

/* TABLET */
@media(max-width:900px) {
    .app-showcase-container3 {
        flex-direction: column;
        text-align: center;
    }

    .app-showcase-content h2 {
        font-size: 28px;
    }
}

/* MOBILE */
@media(max-width:500px) {
    .app-showcase-section {
        padding: 70px 6%;
    }

    .app-showcase-content p {
        font-size: 14px;
    }
}








.feature-cards-section {
    background: #0f0f0f;
    padding: 90px 8%;
}

.container4 {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.section-title p {
    color: #bfbfbf;
    max-width: 600px;
    margin: auto;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD STYLING */
.feature-card {
    background: #151515;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: 0.4s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #fff;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    color: #bfbfbf;
    line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:1100px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }
}



























/* ////////////////////////////////////////////////////////////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;
    list-style: none;
    text-decoration: none;
}

.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);
    }
}