
/* :root {
    --color-dark: #1e293b;
    --color-brand: #2563eb;
    --color-brand-light: #3b82f6;
    --color-brand-rgb: 37, 99, 235;
    --color-body: #64748b;
    --font-base: Segoe UI;
    --box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease; 
} */

:root {
    --color-dark: #0f172a;
    --color-brand: #2563eb;
    --color-brand-light: #3b82f6;
    --color-brand-rgb: 37, 99, 235;
    --color-body: #64748b;

    --gradient-brand: linear-gradient(135deg, #2563eb, #7c3aed);
    --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);

    --font-base: Segoe UI;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-base);
    line-height: 1.7;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--color-body);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at 20% 20%,
        rgba(37,99,235,0.15),
        transparent 40%
    ),
    radial-gradient(
        circle at 80% 80%,
        rgba(124,58,237,0.15),
        transparent 40%
    );
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: #fff;
}

h1 {
    font-size: 42px;
    letter-spacing: -1px;
}

h2 {
    font-size: 32px;
}

.section-title p {
    font-size: 16px;
    color: #94a3b8;
}

a {
    text-decoration: none;
    color: var(--color-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--color-brand-light);
}

p {
    color: rgba(255,255,255,0.7);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-normal {
    background: transparent;
}

.section-soft {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(5px);
}

.section-highlight {
    background: linear-gradient(
        135deg,
        rgba(37,99,235,0.08),
        rgba(124,58,237,0.08)
    );
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.section-highlight::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.15), transparent);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.section-soft .service {
    background: rgba(255,255,255,0.06);
}

.section-highlight .service {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

.bg-cover {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat;
}

.service,
.iconBox,
.btn {
    transition: all 0.3s ease;
}

.service:hover .iconBox {
    transform: scale(1.1);
}

section {
    position: relative;
}

.row.g-4 > div {
    display: flex;
}

.service {
    width: 100%;
}

.gradient-text {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* IMAGE-ZOOM */

.image-zoom {
    position: relative;
    overflow: hidden;
}

.image-zoom-wrapper {
    position: relative;
    overflow: hidden;
}

.image-zoom-wrapper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(14px);
    background: rgba(15, 23, 42, 0.7) !important;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-weight: 600;
    font-size: 20px;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #cbd5f5;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* BUTTON */

.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background: var(--gradient-brand);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    color: #fff;
    border: none;
}

.btn-light {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-brand:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

/* .btn-brand:hover {
    background: var(--color-brand-light);
    color: #fff;
    border-color: var(--color-brand-light);
} */

/* HERO */

.slide-one *,
.slide-two *,
.slide-three * {
    position: relative;
    z-index: 2;
}

.slide-one::before,
.slide-two::before,
.slide-three::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15, 23, 42, 0.7),
        rgba(15, 23, 42, 0.7)
    );
}

.slide-one h1,
.slide-two h1,
.slide-three h1 {
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slide-one {
    background: linear-gradient(rgba(9, 32, 50, 0.6), rgba(9, 32, 50, 0.6)),url(../images/Hero_1.jpg);
}

.slide-two {
    background: linear-gradient(rgba(9, 32, 50, 0.6), rgba(9, 32, 50, 0.6)),url(../images/Hero_2.jpg);
}

.slide-three {
    background: linear-gradient(rgba(9, 32, 50, 0.6), rgba(9, 32, 50, 0.6)),url(../images/Hero_3.jpg);
}

/* SECTION-TITLE */

.section-title {
    margin-bottom: 50px;  /* reduce from 60 */
}

.section-title h1,
.section-title h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title .line {
    width: 80px;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 10px;
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}

/* ICONBOX */

.iconBox {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 
        0 10px 20px rgba(37, 99, 235, 0.4),
        inset 0 1px 2px rgba(255,255,255,0.3);
}


/* SERVICE */

.service {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
    padding: 40px 25px;
}

.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.5s;
}

.service:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

.service:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.25),
        0 0 25px rgba(124, 58, 237, 0.2);
}

.service h5 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.service p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
}


/* REVIEW */

.review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background: #fff;
    transform: rotate(45deg)
}

/* TEAM */

.team-member-content {
    background-color: var(--color-brand);
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    padding: 20px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content {
    opacity: 1;
    bottom: 24px;
}

/* CONTACT */

#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.85),
                rgba(37, 99, 235, 0.85)),
            url(../images/Contact.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--color-brand);
}

/* FOOTER */
footer {
    background: linear-gradient(
        to top,
        #020617,
        #0f172a
    );
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #2563eb, transparent);
    margin-bottom: 40px;
}

footer h5 {
    color: #fff;
    font-weight: 600;
}

footer p,
footer a {
    color: #94a3b8;
    font-size: 14px;
}

footer p {
    margin-top: 15px;
    line-height: 1.8;
}

footer ul li {
    margin-bottom: 10px;
}

footer a:hover {
    color: #fff;
}

footer .line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 10px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124,58,237,0.4);
}

.footer-bottom {
    padding-top: 25px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* OWL CAROUSEL */

/* .owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    width: 60px !important;
    height: 60px !important;
    display: grid;
    place-items: center;
    background-color: rgba(255, 255, 255, 0.2) !important;
    margin-top: -30px !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-weight: 700 !important;
    font-size: 12px !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-next:hover, .owl-prev:hover {
    background-color: var(--color-brand) !important;
} */

.owl-nav {
    display: none;
}