/* FONT */
 
/* BODY FONT */
body {
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
}

/* HEADINGS */
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

/* HERO TITLE */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
}

/* SUBTEXT */
.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* BUTTON IMPROVEMENT */
.btn-warning {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,193,7,0.3);
}
/* NAVBAR BASE */
.navbar {
    padding: 18px 0;
    background: transparent !important;
    transition: all 0.4s ease;
    z-index: 999;
}

/* SCROLL EFFECT (GLASS + SHADOW) */
.navbar.scrolled {
    background: rgba(11, 15, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 12px 0;
}

/* LOGO */
.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* MENU ITEMS */
.navbar-nav .nav-link {
    color: #fff !important;
    margin-left: 25px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE HOVER EFFECT */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ffc107;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

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

/* ACTIVE LINK */
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
}

/* REMOVE MOBILE MENU */
@media (max-width: 991px) {

    /* Hide hamburger icon */
    .navbar-toggler {
        display: none !important;
    }

    /* Hide menu completely */
    .navbar-collapse {
        display: none !important;
    }

    /* Center logo */
    .navbar {
        justify-content: center;
    }

    .navbar-brand {
        margin: auto;
    }
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    color: white;
}

/* SLIDER BACKGROUND */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slide 15s infinite;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
}
.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692');
    animation-delay: 5s;
}
.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c');
    animation-delay: 10s;
}

@keyframes slide {
    0% {opacity: 0;}
    10% {opacity: 1;}
    30% {opacity: 1;}
    40% {opacity: 0;}
    100% {opacity: 0;}
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(11,15,42,0.7);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
}

/* RUNNING TEXT */
/* HERO TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

/* MULTI-COLOR ANIMATED GRADIENT TEXT */
.dynamic-text {
    display: inline-block;
    font-weight: 800;
    background: linear-gradient(
        270deg,
        #ff6a00,
        #ffc107,
        #00d4ff,
        #7b61ff,
        #ff6a00
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease infinite;
    position: relative;
    padding-right: 10px;
}

/* GRADIENT ANIMATION */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CURSOR */
.dynamic-text::after {
    content: "|";
    position: absolute;
    right: -8px;
    color: #fff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
/* SHINE OVER TEXT */
.dynamic-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}
/* SUBTEXT */
.hero-sub {
    font-size: 18px;
    color: #ddd;
    max-width: 500px;
}

/* MOBILE */
@media(max-width:768px){
    .hero-title {
        font-size: 34px;
    }
}
/* FORM */
/* FORM CONTAINER */
.lead-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.lead-form h5{
    color: #000 !important;
}

/* INPUT STYLE */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* FOCUS EFFECT */
.form-control:focus, .form-select:focus {
    border-color: #ffc107;
    box-shadow: none;
}

/* BUTTON */
.lead-form button {
    padding: 12px;
    font-size: 16px;
}

/* ERROR TEXT */
.error {
    font-size: 12px;
}

/* MOBILE */
@media(max-width:768px){
    .typing {
        font-size: 28px;
    }
}

 
.navbar.scrolled {
    background: rgba(11, 15, 42, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    padding: 12px 0;
}

/* SECTION */
.trust-modern {
    padding: 100px 0;
    background: #0b0f2a;
    color: #fff;
}

/* TAG */
.tag {
    color: #ffc107;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* HEADING */
.main-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.main-heading span {
    background: linear-gradient(90deg, #ffc107, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.description {
    margin-top: 15px;
    color: #cfcfcf;
    line-height: 1.7;
}

/* BULLETS */
.points {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.points li {
    margin-bottom: 10px;
    color: #ddd;
}

/* RIGHT STATS */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

/* EACH STAT */
.stat-item {
    position: relative;
    padding-left: 20px;
}

/* LEFT BORDER LINE */
.stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 40px;
    width: 3px;
    background: linear-gradient(#ffc107, #ff5722);
}

/* NUMBER */
.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffc107;
}

/* TEXT */
.stat-item p {
    color: #bbb;
}

/* MOBILE */
@media(max-width:768px){
    .main-heading {
        font-size: 30px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }
}




/* SECTION */
.ps-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b0f2a, #111a44);
    color: #fff;
}

/* TAG */
.ps-modern .tag {
    color: #ffc107;
    font-size: 13px;
    letter-spacing: 2px;
}

/* HEADING */
.ps-modern .heading {
    font-size: 42px;
    font-weight: 800;
}

.ps-modern .heading span {
    background: linear-gradient(90deg, #ffc107, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* WRAPPER */
.ps-wrapper {
    display: flex;
    position: relative;
    margin-top: 50px;
}

/* SIDES */
.ps-side {
    width: 50%;
    padding: 0 40px;
}

/* ITEMS */
.ps-item {
    margin-bottom: 40px;
    position: relative;
    transition: 0.3s;
}

.ps-item h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.ps-item p {
    color: #bbb;
    font-size: 15px;
}

/* LEFT STYLE */
.ps-side.left .ps-item h5 {
    color: #ff6b6b;
}

/* RIGHT STYLE */
.ps-side.right .ps-item h5 {
    color: #00e5a8;
}

/* CENTER LINE */
.ps-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(#ffc107, #ff5722);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255,193,7,0.6);
}

/* HOVER EFFECT */
.ps-item:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:768px){

    .ps-wrapper {
        flex-direction: column;
    }

    .ps-side {
        width: 100%;
        padding: 0;
    }

    .ps-line {
        display: none;
    }
}


/* CARD */
.service-card {
    min-width: 500px;
    height: 250px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
    display: flex;
    align-items: center;
}

/* TITLE */
.service-card h4 {
    font-weight: 700;
}

/* TEXT */
.service-card p {
    color: #ccc;
    font-size: 14px;
    margin-top: 5px;
}

/* IMAGE */
.service-card img {
    max-height: 150px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid #ffc107;
}

/* BUTTON */
.service-card .btn {
    margin-top: 10px;
}

/* GAP */
.horizontal-track {
    display: flex;
    gap: 30px;
}