/* ---------------- THEME COLORS ---------------- */
:root {
    --primary: #03aa38;      /* Neon Green */
    --secondary: #0B16AB;    /* Blue */
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    background: #000;
    color: var(--white);
}

/* ---------------- NAVBAR ---------------- */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}


.navbar {
    width: 95%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.logo img {
    height: 55px;
    width: auto;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    transition: 0.3s;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.login {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
}

.btn-download {
    background: var(--primary);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

/* Mobile Menu Icon */
.menu-icon {
    color: white;
    font-size: 30px;
    display: none;
    cursor: pointer;
}

/* ---------------- HERO SECTION ---------------- */

.hero {
    width: 100%;
    height: 100vh;
    background: url('../images/banner4.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 80%;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.3;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
}

.subtext {
    margin-top: 20px;
    font-size: 22px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

/* Green Button */
.btn-primary {
    background: var(--primary);
    color: #000;
}

/* Blue Button */
.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .subtext {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Container */
.features-section {
    width: 100%;
    padding: 100px 10%;
    background-image: url("../images/banner3.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Main box */
.feature-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 70px 0;
    gap: 60px;

    opacity: 0;
    transition: all 1.4s ease;   /* ⭐ slower animation */
}

/* Left Box → content enters from left */
.feature-box:not(.reverse) {
    transform: translateX(-120px);
}

/* Right Box → content enters from right */
.feature-box.reverse {
    transform: translateX(120px);
}

/* When active */
.feature-box.active {
    opacity: 1;
    transform: translateX(0);
}

/* Text box */
.feature-text {
    max-width: 50%;
}

.feature-text .tag {
    color: #2fe7c9;
    font-size: 14px;
}

.feature-text h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: white;
}

.feature-text p {
    color: #b3b9c9;
    line-height: 1.6;
}

/* Image */
.feature-img img {
    width: 439px;
    border-radius: 14px;
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.22);
    height: 261px;
}
.center-glow-line {
    width: 2px;
    height: 130px;
    background: linear-gradient(
        to bottom,
        rgba(0, 255, 255, 0),
        rgba(0, 255, 255, 0.5),
        rgba(0, 255, 255, 0)
    );

    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.7),
        0 0 25px rgba(0, 255, 255, 0.5);

    margin: auto 40px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: 1.2s ease;
}

.reveal.active .center-glow-line {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------
      RESPONSIVE DESIGN
---------------------------- */

@media (max-width: 992px) {
    .features-section {
        width: 112%;
    }
    .feature-box {
        width: 90%;
        gap: 20px;
    }

    .feature-text h2 {
        font-size: 26px;
    }

    .feature-img img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .features-section {
        width: 112%;
    }
    .feature-box,
    .feature-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text,
    .feature-img {
        width: 100%;
    }

    /* Hide glow line on mobile */
    .center-glow-line {
        display: none;
    }

    .feature-text h2 {
        font-size: 24px;
    }

    .feature-img img {
        max-width: 300px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .feature-text h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .feature-text p {
        font-size: 14px;
    }

    .feature-img img {
        max-width: 260px;
    }
}

.ppt-section {
    width: 100%;
    padding: 100px 0;
    background: url("../images/banner5.avif") center/cover no-repeat fixed;
    position: relative;
    color: #fff;
}

.ppt-overlay {
    width: 90%;
    margin: auto;
    text-align: center;
}

/* Heading */
.ppt-title {
    font-size: 38px;
    color: #03aa38;
    font-weight: 700;
    margin-bottom: 10px;
}

.ppt-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 50px;
}

/* Horizontal PPT Scroll */
.ppt-scroll {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.ppt-scroll::-webkit-scrollbar {
    height: 6px;
}

.ppt-scroll::-webkit-scrollbar-thumb {
    background: #03aa38;
    border-radius: 10px;
}

.ppt-item {
    min-width: 32%;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
}

.ppt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(153,255,9,0.3);
}

.ppt-item iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.ppt-item span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .ppt-item {
        min-width: 280px;
    }

    .ppt-title {
        font-size: 28px;
    }
}


/* --------------------- industry section 2 ------------------------ */

body {
    margin: 0;
    background: #000;
  }
  
  /* Big scroll area */
  .scroll-section {
    height: 450vh;
    position: relative;
  }
  
  .scroll-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Images centered horizontally */
  .img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    opacity: 0;
  }
  
  /* Final perfect exact positions */
  .img1 { top: 50%; transform: translate(-50%, -50%); } /* center */
  .img2 { top: calc(50% - 350px); } /* above image 1 */
  .img3 { top: calc(50% + 350px); } /* below image 1 */
  
  /* Boxes */
  .box {
    position: absolute;
    width: 180px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
  }
  
  .b1 { top: 10%; left: 10%; }
  .b2 { top: 10%; right: 10%; }
  .b3 { bottom: 10%; left: 10%; }
  .b4 { bottom: 10%; right: 10%; }
  
/* --------------------- industry section 2 end   ------------------------ */


.achievements-section{
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background: url('../images/banner3.jpg') center/cover no-repeat;
  }
  
  .achievements-container{
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .achievement-box{
    background: var(--box-bg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--text-light);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    cursor: pointer;
  }
  
  .achievement-box:hover{
    background: var(--primary);
    transform: translateY(-5px);
  }
  
  .achievement-box h2{
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .achievement-box p{
    font-size: 18px;
    opacity: 0.8;
  }

  .blogs-section{
    width: 100%;
    padding: 60px 0 100px;
    color: #fff;
     justify-content: center;
    background: url('../images/banner5.avif') center/cover no-repeat;
  }
  
  .blogs-heading{
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
  }
  
  .blogs-container{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
  }
  
  /* DEFAULT CARD */
  .blog-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    transition: 0.4s;
    position: relative;
  }
  
  /* HOVER EFFECT */
  .blog-card:hover{
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary);
    transform: translateY(-6px);
  }
  .blog-card p{
    padding-bottom: 20px;
  }
  
  .blog-date{
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 15px;
  }
  
  .blog-title{
    font-size: 20px;
    margin-bottom: 7px;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .blog-image{
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  /* ARROW BUTTON */
  .blog-arrow{
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: transparent;
    color: #fff;
    font-size: 18px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
  }
  .blog-arrow a{
    color: white;
  }
  .blog-card:hover a{
    color: black;
  }
  
  /* Arrow changes when card is hovered */
  .blog-card:hover .blog-arrow{
    background: #00000020;
    border-color: #000;
    color: #000;
    transform: scale(1.1);
  }
  
  /* FOOTER */
.footer {
    background: #0a0f1f;
    padding: 60px 10%;
    color: #d8d8d8;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #bfc6d4;
}

/* Quick Links */
.footer-col h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Contact Section */
.footer-col p {
    margin-bottom: 12px;
    font-size: 15px;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #a5a5a5;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0px;
    }
}


/* ================= HERO SECTION ================= */

.about-hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url("img/about-bg.jpg") no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.about-container {
    width: 50%;
    padding: 40px;
}

/* Text & Image Block */
.about-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.about-text p {
    color: #eaeaea;
    margin-top: 15px;
    font-size: 18px;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(255,255,255,0.2);
}

/* ================= BOTTOM CONTENT ================= */

.about-content {
    padding: 30px 0;
    background: #fff;
}

.about-content .wrapper {
    width: 80%;
    margin: auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* ================= ANIMATIONS ================= */

.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
        padding-top: 120px;
    }

    .about-container {
        width: 90%;
        padding: 20px;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-img img {
        width: 100%;
    }
}
/* ================= HERO SECTION ================= */

/* ================= HERO SECTION WITH GRADIENT ================= */

.about-hero {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url("") no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}
.about-hero1 {
    width: 100%;
    margin: auto;
    min-height: 100vh;
    background: url("../images/banner5.avif") no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

/* Gradient overlay */
.about-hero1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Beautiful left-to-right dark gradient */
    background: linear-gradient(
        to right, 
        rgba(0, 0, 0, 0.765), 
        rgba(0,0,0,0.4), 
        rgba(0,0,0,0.2)
    );
    
    z-index: 1;
}

 
/* ==========================  projects list ================= */

.about-hero1  .projects-list {
    width: 100%;
    padding: 50px 5%;
    position: relative;
    z-index: 2;
}

.projects-list h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary);
}

.projects-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 12px;
    list-style: none;
    counter-reset: proj-counter;
    padding: 0;
}

.projects-columns li {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    padding-left: 35px;
    counter-increment: proj-counter;
}

/* Auto numbering */
.projects-columns li::before {
    content: counter(proj-counter) ". ";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

/* Responsive for mobile (1 column) */
@media (max-width: 768px) {
    .projects-columns {
        grid-template-columns: 1fr;
    }
}






/* Content containers must stay above gradient */
.about-container {
    width: 50%;
    padding: 40px;
    position: relative;
    z-index: 2;
}



/* Text & Image Block */
.about-text h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
}

.about-text p {
    color: #eaeaea;
    margin-top: 15px;
    font-size: 20px;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(255,255,255,0.2);
}

/* ================= BOTTOM CONTENT ================= */

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-content .wrapper {
    width: 80%;
    margin: auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* ================= ANIMATIONS ================= */

.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
        padding-top: 120px;
    }

    .about-container {
        width: 90%;
        padding: 20px;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-img img {
        width: 100%;
    }
}


.trusted-section {
    text-align: center;
    /* padding: 25px 0; */
    padding-top: 20px;
    padding-bottom: 50px;
    color: #fff;
    /* background: url("../images/banner5.avif") no-repeat center center/cover; */
    background-attachment: fixed;
    background-color: white;
    border-top: 1px solid rgb(69, 68, 68);
    border-bottom: 1px solid rgb(59, 58, 58);
}

.trusted-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #03aa38;
}

.trusted-section p {
    font-size:16px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(200%); /* for duplicate loop */
    animation: scroll 18s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused; /* Pause on hover */
}

.logo-track img {
    height: 80px;
    width: auto;
    margin: 0 50px;
    opacity: 0.9;
    transition: 0.3s;
}

.logo-track img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-track img {
        height: 60px;
        margin: 0 25px;
    }
}



.trusted-section1 {
    text-align: center;
    /* padding: 25px 0; */
    padding-bottom: 50px;
    color: #fff;
    /* background: url("../images/banner5.avif") no-repeat center center/cover; */
    background-attachment: fixed;
    background-color: white;
    padding-top: 20px;
}

.trusted-section1 h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #03aa38;
}
.trusted-section1 p {
    font-size:16px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
}


.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trusted-section1 .logo-track {
    display: flex;
    width: calc(200%); /* for duplicate loop */
    animation: scroll1 18s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused; /* Pause on hover */
}

.logo-track img {
    height: 80px;
    width: auto;
    margin: 0 50px;
    opacity: 0.9;
    transition: 0.3s;
}

.logo-track img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes scroll1 {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

@media (max-width: 768px) {
    .logo-track img {
        height: 60px;
        margin: 0 25px;
    }
}

 /* ============ contact ================= */

 .contact_div {
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    margin: 0;
    padding: 2px;
}

.container1 {
    max-width: 1100px;
    width: 90%;
    margin: 40px auto;
    display: flex;
    background: white;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}

.left-box {
    background: #1f2937;
    color: white;
    padding: 40px;
    width: 45%;
    min-width: 300px;
}

.left-box h2 {
    margin-bottom: 20px;
    font-size: 28px;
    border-bottom: 2px solid #4b5563;
    padding-bottom: 10px;
}

.left-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
}

.right-box {
    padding: 40px;
    width: 54%;
    min-width: 300px;
}

.right-box h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.right-box form input,
.right-box form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

.right-box button {
    padding: 12px 20px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.right-box button:hover {
    background: #1d4ed8;
}

.success,
.error {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: none;
}

.success {
    background: #d1fae5;
    color: #065f46;
}

.error {
    background: #fee2e2;
    color: #991b1b;
}