    body{
    font-family: 'Poppins', sans-serif;
    margin:0;
    background:#ffffff;
    color:#444;
    }
    /* LOGO STYLE */
    .logo{
    font-size: 24px;
    white-space:nowrap;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    color:#111;   /* ✅ ADD THIS LINE */
    }

    /* Highlight word */
    .logo span{
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    /* Hover effect */
    .logo:hover{
    transform: scale(1.05);
    transition: 0.3s;
    }

    /* WHITE STICKY NAVBAR */
    header{
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s ease;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    }

    /* Shadow on scroll */
    header.scrolled{
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98);
    }

    header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
list-style:none;
display:flex;
gap:35px;
margin:0;
padding:0;
}

nav li{
display:inline-block;
}

    nav a{
    color:#333;                 /* ✅ FIXED */
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    }

    nav a:hover{
    color:#0072ff;              /* ✅ nice blue hover */
    }
    nav a{
    position:relative;
    }

    nav a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-5px;
    background:#0072ff;
    transition:0.3s;
    }

    nav a:hover::after{
    width:100%;
    }
    .overlay h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    }

    .overlay p{
    font-size:20px;
    opacity:0.9;
    line-height:1.6;
    }


    #typing-text{
    font-size:45px;
    font-weight:700;

    /* Gradient */
    background: linear-gradient(90deg, #00c6ff, #0072ff);

    /* Required for gradient text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Optional standard (for future support) */
    background-clip: text;
    color: transparent;

    /* Glow */
    text-shadow: 0 0 10px rgba(0,114,255,0.6);
    }

    /* HERO SLIDER */
    .carousel {
    position: relative;
}
  #mainSlider,
.carousel-inner,
.carousel-item,
.slide {
    height: 450px;
}
    .hero{
    background:#f0f4ff;
    }
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 60px;
    height: 60px;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* left-right */
.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* ICON STYLE */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}   

    .slide{
    
    background-size:cover;
    background-position:center;
    position:relative;
    height:500px;
    }

    .slide::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.3); /* LIGHT */
    z-index:1;
     pointer-events: none;
}

    .overlay{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:white;
    z-index:2;
    max-width:550px;
    }

    .overlay h1{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    }

    .overlay p{
    font-size:20px;
    opacity:0.9;
    }
    .hero-btn {
    margin-top: 20px;
    padding: 10px 25px;
    background: #0072ff;
    color: white;
    border: none;
    border-radius: 25px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #0056d2;
}
.custom-control i {
    color: white;
    font-size: 20px;
}   

    /* typing */
    #typing-text{
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }



    /* ANIMATIONS */
    @keyframes fadeUp{
    0%{
    opacity:0;
    transform:translate(-50%, -30%);
    }
    100%{
    opacity:1;
    transform:translate(-50%, -50%);
    }
    }

    /* ZOOM EFFECT */
    .carousel-item.active .slide{
    animation:zoomEffect 6s ease;
    }

    @keyframes zoomEffect{
    0%{transform:scale(1);}
    100%{transform:scale(1.1);}
    }

    /* SERVICES */
    /* Section spacing (top & bottom) */
    /* SERVICES SECTION */
    .services-section {
        padding: 80px 0;
        background-color: #f9fbff;
    }

    /* CENTER HEADING */
    .section-heading {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #0072ff;
        margin-bottom: 50px;
    }

    /* CARD STYLING */
    .service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* ICON */
    .icon {
        font-size: 30px;
        color: #4f46e5;
        margin-bottom: 15px;
    }

    /* TEXT */
    .service-card h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 14px;
        color: #6b7280;
    }

    /* Hover Effect */
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        background: #ffffff;
    }

    /* Icon */
    .icon {
        font-size: 28px;
        color: #4f46e5;
        margin-bottom: 15px;
    }

    /* Title */
    .service-card h4 {
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 18px;
    }

    /* Text */
    .service-card p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.6;
    }

    .service-card:hover {
        box-shadow: 0 25px 50px rgba(79,70,229,0.15);
    }
    /* INFO STRIP */
    .info-strip{
    display:flex;
    width:100%;
    margin-top:50px;
    }

    .info-box{
    flex:1;
    padding:40px;
    color:white;
    }

    .info-box h3{
    margin-bottom:15px;
    font-weight:700;
    }

    .info-box p{
    font-size:14px;
    margin-bottom:20px;
    }

    /* COLORS (match screenshot style but in blue theme) */
    .info-box.about{
    background:#1e2a78;
    }

    .info-box.why{
    background:#0a4fd6;
    }

    .info-box.future{
    background:#3b5bdb;
    }

    /* BUTTON */
    .info-box button{
    border:1px solid white;
    background:transparent;
    color:white;
    padding:8px 15px;
    cursor:pointer;
    transition:0.3s;
    }

    .info-box button:hover{
    background:white;
    color:#0a4fd6;
    }
/* AI Section*/
.ai-subtext {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 15px;
}
    .ai-section {
    padding: 80px 0;
    background: #ffffff;
}
.ai-section .section-heading {
    color: #4f46e5;
}

.footer-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}
    /* FOOTER */

    .footer{
    background:#1a1a1a;
    color:#ccc;
    padding:50px 10%;
    }

    .footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    }

    .footer-col h3,
    .footer-col h4{
    color:white;
    margin-bottom:15px;
    }

    .footer-col ul{
    list-style:none;
    padding:0;
    }

    .footer-col ul li{
    margin-bottom:10px;
    }

    .footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    }

    .footer-col ul li a:hover{
    color:#0072ff;
    }

    .footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #333;
    padding-top:15px;
    font-size:14px;
    }

    /* RESPONSIVE */
    @media(max-width:768px){

    .info-strip{
    flex-direction:column;
    }

    .footer-container{
    grid-template-columns:1fr 1fr;
    }
    }

   