@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0c0535;
    color: #fff;
    padding-top: 20px;
}


/* Navbar */
.navbar {
    position: fixed;
    /* Keeps navbar visible */
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(2, 11, 43, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid #222;

    z-index: 9999;
    /* Keeps navbar above everything */

    padding: 10px 0;
}

/* Container */
.navbar-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo-img {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 90px;
    filter:
        drop-shadow(0 0 10px rgba(9, 37, 61, 0.5)) drop-shadow(0 0 20px rgba(31, 9, 90, 0.4));

}

.logo-img:hover {
    transform: scale(1.05);
}

/* Nav Links */
.navbar-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

/* Remove underline from links */
.navbar-links a {
    text-decoration: none;
    color: inherit;
}

/* Link Items */
.navbar-links li {
    position: relative;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #e5e5e5;
    transition: color 0.3s ease;
}

/* Underline Animation */
.navbar-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar-links li:hover {
    color: #fff;
}

.navbar-links li:hover::after {
    width: 100%;
}

/* Active Link */
.navbar-links a.active {
    color: #fff;
}


.navbar-links .active::after {
    width: 100%;
}

/* Burger */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .navbar-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 220px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #333;

        display: none;
    }

    /* Show menu */
    .navbar-links.show {
        display: flex;
    }
}

.navbar-links {
    transition: all 0.3s ease;
}

.hero {

    min-height: 460px;
    /* reduce this */
    padding: 60px 0;
    /* reduce top & bottom padding */



    background-image: url("/components/service_asset/hero-ser.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: left;

    color: white;
    text-align: left;
    overflow: hidden;
    min-height: 100vh;
}


.hero-container {
    width: 90%;
    height: 100px;

    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
    flex-wrap: wrap;

}

/* Left Content */
.hero-left {
    max-width: 50%;
}

.tag {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-left h1 {
    font-size: 35px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;

}

.hero-left h1 {
    color: #fff;
    margin-bottom: 15px;
}

.hero-left h2 {
    color: #e7e3e3;
    font-family: "monsterrat", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;

}

.hero-left p {
    color: #bbb;
    margin-bottom: 20px;
    margin-top: 5px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ccc;
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Right Image */
.hero-right {
    position: relative;
    max-width: 50%;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
}

.hero-right {
    overflow: hidden;
    border-radius: 10px;
}

.hero-image {
    width: 100%;
    transition: transform 0.5s ease;
}

.hero-right:hover .hero-image {
    transform: scale(1.05);
}

/* Badges */
.badge {
    position: absolute;
    background: #111;
    color: #fff;
    padding: 8px 12px;
    border: 1px solid #444;
    font-size: 12px;
    border-radius: 5px;
}

.top-right {
    top: 10px;
    right: 10px;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 20px;
        border: 1px solid #333;
    }

    .burger {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;

    }
}

.services-section {
    width: 100%;
    min-height: 100vh;
    padding: 40px 8%;
    background: #eee7ae;
    background: linear-gradient(355deg, rgba(238, 231, 174, 1) 21%, rgba(183, 201, 213, 1) 88%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000000;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
}

/* GRID */

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;

}

/* CARD */

.service-card {
    background: #020b2b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /****** Gradient Overlay glace effect *******/
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    transition: 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #3da5ff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #0f5fcf;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(61, 165, 255, 0.3);
}

.icon-box i {
    font-size: 28px;
    color: white;
}

.service-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #d7e4f5;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: #edf5ff;
    font-size: 15px;
}

.service-list li i {
    color: #3da5ff;
    margin-right: 12px;
    font-size: 14px;
}

/* BUTTON */

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #EDC001;
    color: rgb(0, 0, 0);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s ease;
}

.service-btn:hover {
    background: #3da5ff;
    transform: scale(1.04);
}

/* RESPONSIVE */

@media(max-width:900px) {

    .services-container {
        grid-template-columns: 1fr;
    }

    .section-title h1 {
        font-size: 38px;
    }

}