* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        /* =========loader============ */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }

        /* Logo animation */
        .logo-container {
            position: relative;
            width: 250px; /* Increased size */
            height: 250px; /* Increased size */
            overflow: hidden;
        }

         .logo {
            width: 100%;
            height: 100%;
            background: url('images/logo.webp') no-repeat center center;
            background-size: contain;
            position: relative;
            transform: translateY(100%);
            animation: slideUpBounce 2s ease-out forwards;
        }

        /* Enhanced animation with bounce effect */
        @keyframes slideUpBounce {
            0% {
                transform: translateY(100%);
            }
            60% {
                transform: translateY(-15%);
            }
            75% {
                transform: translateY(5%);
            }
            85% {
                transform: translateY(-5%);
            }
            92% {
                transform: translateY(2%);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Main content */
        .content {
            opacity: 0;
            animation: fadeIn 1s ease-out 3s forwards; 
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #555;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .logo-container {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .logo-container {
                width: 150px;
                height: 150px;
            }
        }

        /* ======= NAVBAR ======= */
        .custom-navbar {
            background: transparent !important;
            padding: 1rem 1rem;
            transition: all 0.3s ease;
        }

        /* Brand logo */
        .brand {
            height: 50px;
            filter: brightness(0) invert(1);
        }

        /* AI Solutions Button - Right side */
        .ai-solutions-btn {
            background: linear-gradient(90deg, #00ff88, #00cc6a);
            border: none;
            border-radius: 50px;
            padding: 0.6rem 1.8rem;
            color: #000;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
        }

        .ai-solutions-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
            background: linear-gradient(90deg, #00ff88, #00cc6a);
        }

        /* Glassmorphism nav container */
        .glass-nav {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-radius: 50px;
            padding: 0.4rem 1rem;
            list-style: none;
            display: flex;
            gap: 0.5rem;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        /* Nav links */
        .glass-nav .nav-link {
            color: #fff;
            font-weight: 500;
            padding: 0.6rem 1.2rem;
            position: relative;
            z-index: 2;
            transition: color 0.3s;
            border-radius: 50px;
        }

        .glass-nav .nav-link:hover {
            color: #00ff88;
        }

        /* Fixed moving indicator */
        .active-indicator {
            position: absolute;
            top: 4px;
            left: 0;
            height: calc(100% - 8px);
            background: rgba(0, 255, 136, 0.2);
            border-radius: 50px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            transition: all 0.3s ease;
            z-index: 1;
        }

        /* Active link text color */
        .glass-nav .nav-link.active {
            color: #00ff88;
        }

        /* Custom Bootstrap Toggler - NO BOX SHADOW */
        .navbar-toggler {
            border: none !important;
            padding: 4px 6px !important;
            box-shadow: none !important;
            outline: none !important;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent !important;
            z-index: 1036 !important;
        }

        .navbar-toggler:focus {
            box-shadow: none !important;
            outline: none !important;
        }

        /* Custom toggler icon color */
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
            width: 24px;
            height: 24px;
            transition: all 0.3s ease;
        }

        /* Optional: Add hover effect */
        .navbar-toggler:hover .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 255, 136, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 991px) {
            .glass-nav {
                background: rgba(0, 0, 0, 0.8);
                backdrop-filter: blur(15px) saturate(180%);
                -webkit-backdrop-filter: blur(15px) saturate(180%);
                border-radius: 15px;
                padding: 1rem;
                flex-direction: column;
                margin-top: 1rem;
                border: 1px solid rgba(0, 255, 136, 0.2);
            }
            
            .glass-nav .nav-link {
                text-align: center;
                padding: 0.8rem 1.5rem;
            }
            
            .active-indicator {
                display: none;
            }
            
            .d-lg-flex {
                display: none !important;
            }
            
            .d-lg-none {
                display: block !important;
                text-align: center;
                margin-top: 1rem;
            }
        }

        @media (min-width: 992px) {
            .d-lg-none {
                display: none !important;
            }
        }



/* ======= HERO SECTION ======= */
.hero-section {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 150px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 80, 40, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 150, 80, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 200, 100, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #001a0d 0%, #000 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    line-height: 1.2;
}

.hero-content p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Thunder effect */
.thunder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(0, 255, 136, 0.1) 50%, transparent 52%),
        linear-gradient(180deg, transparent 48%, rgba(0, 255, 136, 0.1) 50%, transparent 52%);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: thunderPulse 3s infinite alternate;
}

@keyframes thunderPulse {
    0% { opacity: 0.1; }
    100% { opacity: 0.3; }
}

.custom-shape-divider-bottom-1759299090 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.custom-shape-divider-bottom-1759299090 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 123px;
}

.custom-shape-divider-bottom-1759299090 .shape-fill {
    fill: #060606;
}

/* Responsive Typography */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: 5.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 0.15em;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
    
    .hero-section {
        padding: 80px 15px 120px;
        min-height: 70vh;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .ai-solutions-btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 60px 15px 100px;
    }
    
    .custom-shape-divider-bottom-1759299090 svg {
        height: 80px;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Demo sections for testing */
.demo-section {
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-content {
    max-width: 800px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
}

/* ------------------------------------------------- */
/* MAIN WRAPPER */
.about-block h1 {
  font-family: 'Orbitron', sans-serif;
  line-height: 1.2;
}

/* BUBBLE BADGE */
.bubble-heading {
  background-color: #001f10;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  width: fit-content;
  box-shadow:
    inset 0 4px 8px rgba(0, 255, 136, 0.6),
    inset 0 -4px 8px rgba(0, 255, 136, 0.3),
    0 0 15px rgba(0, 255, 136, 0.5);
  font-size: 0.9rem;
}

/* GRADIENT TEXT */
.gradient {
  background: linear-gradient(135deg, #00ffcc 0%, #00ff88 50%, #00cc6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LOGO SLIDER WRAPPER */
.logo-slider {
  position: relative;
}

/* Side fade effect */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.owl-carousel .item img {
  width: 140px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  opacity: 0.8;
}

.owl-carousel .item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* RESPONSIVE FIXES */
@media (max-width: 991px) {
  .about-block h1 {
    font-size: 2rem;
  }
  .bubble-heading {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .about-block h1 {
    font-size: 1.7rem;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 40px;
  }

  .owl-carousel .item img {
    width: 110px;
  }
}

/* ==========================services===================== */

 .custom-card {
  position: relative;
  background: #0a0a0a;
  border-radius: 0;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;                /* responsive height */
  min-height: 280px;           /* safe minimum height */
}

/* Card image wrapper */
.card-img {
  width: 100%;
  height: 250px;               
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 576px) {
  .card-img {
    height: 140px;             /* smaller images on mobile */
  }
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-card:hover .card-img img {
  transform: scale(1.1);
}

/* Top-right triangle accent */
.custom-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #00ff88 transparent transparent;
  opacity: 0;
  transition: all 0.4s ease;
}

.custom-card:hover {
  box-shadow: 0 0 20px 4px rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.3);
}

.custom-card:hover::before {
  opacity: 1;
  top: 0;
  right: 0;
}

.custom-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.custom-card:hover h3 {
  color: #00ff88;
}

.custom-card p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* =========================animation===================== */

.scale-sticky-heading-container {
  position: sticky;
  top: 0;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.scale-animation-heading {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #00ffcc, #00ff88, #00cc6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 0 20px;
}

/* Scrollable section */
.scale-scroll-container {
  position: relative;
  z-index: -1;
  padding-top: 10vh;
  padding-bottom: 130vh;
}

/* Cards */
.scale-scroll-card {
  position: relative;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.scale-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}

.scale-card-content {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  padding: 20px 40px;
  line-height: 1.4;
}

.scale-card-content::before,
.scale-card-content::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #00ffcc;
}

.scale-card-content::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.scale-card-content::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.scale-scroll-card.scale-blur {
  filter: blur(8px);
  opacity: 0.3;
  transform: scale(0.97);
}

/* Large screens: keep left-right alternation */
@media (min-width: 992px) {
  .scale-scroll-container .row:nth-child(odd) .col-5 {
    order: 1;
  }
  .scale-scroll-container .row:nth-child(odd) .col-7 {
    order: 2;
  }
  .scale-scroll-container .row:nth-child(even) .col-5 {
    order: 2;
  }
  .scale-scroll-container .row:nth-child(even) .col-7 {
    order: 1;
  }
}

/* Medium screens: stack cards vertically */
@media (max-width: 991px) {
  .scale-animation-heading {
    font-size: 3rem;
  }
  .scale-scroll-container {
    padding-top: 60vh;
    padding-bottom: 90vh;
  }
  .scale-scroll-card {
    margin: 30px auto !important;
    padding: 30px;
  }
  .scale-card-content {
    font-size: 1.3rem;
    padding: 18px 30px;
  }
  .scale-scroll-container .col-5,
  .scale-scroll-container .col-7 {
    order: unset !important;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .scale-animation-heading {
    font-size: 2.5rem;
  }
  .scale-scroll-card {
    margin: 25px auto !important;
    padding: 25px;
  }
  .scale-card-content {
    font-size: 1.2rem;
    padding: 15px 25px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .scale-animation-heading {
    font-size: 2rem;
  }
  .scale-scroll-card {
    margin: 20px auto !important;
    padding: 20px;
  }
  .scale-card-content {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* ---------------work------------------- */
.sticky-heading-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.animation-heading {
    font-size: clamp(2.5rem, 8vw, 4rem); /* Responsive font size */
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, #00ffcc 0%, #00ff88 50%, #00cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.1s linear, opacity 0.3s ease;
    transform-origin: center;
    margin: 0;
    padding: 0 20px;
    width: 100%; /* Ensure it doesn't overflow */
    max-width: 100%; /* Prevent overflow */
}

.scroll-container {
    position: relative;
    z-index: 20;
    padding-top: 100vh;
    padding-bottom: 100px;
    width: 100%;
    overflow: hidden; /* Prevent horizontal scroll */
}

.scroll-card {
    background: #111;
    border-radius: 15px;
    padding: clamp(20px, 4vw, 30px); /* Responsive padding */
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    border: 1px solid rgba(0, 255, 136, 0.2);
    overflow: hidden; /* Prevent content overflow */
}

.scroll-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.35);
}

.scroll-card:nth-child(even) {
    background: #141414;
}

/* --- Text & Image proportions on large screens --- */
@media (min-width: 992px) {
    .scroll-card {
        align-items: center;
    }

    .card-content {
        flex: 0 0 60%;
        max-width: 60%;
        padding-right: 30px; /* Add spacing between content and image */
    }

    .card-image {
        flex: 0 0 40%;
        max-width: 40%;
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
}

.card-content {
    flex: 1 1 auto;
    max-width: 100%; /* Changed from 65% to prevent overflow */
    width: 100%;
    padding: 10px 0;
}

.card-number {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.5rem); /* Responsive font size */
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
}

.card-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Responsive font size */
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 10px;
    line-height: 1.2;
    word-wrap: break-word; /* Prevent long titles from breaking layout */
}

.card-qualification {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
    color: #d8d8d8;
    margin-bottom: 5px;
}

.card-company {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Responsive font size */
    color: #d8d8d8;
    margin-bottom: 20px;
}

.card-scope {
    color: #d8d8d8;
    font-size: clamp(0.9rem, 2.5vw, 1rem); /* Responsive font size */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Transparent bordered buttons --- */
.card-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.card-buttons button {
    background-color: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 1rem); /* Responsive font size */
    white-space: nowrap; /* Prevent button text from wrapping */
}

.card-buttons button:hover {
    background-color: #00ff88;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* --- Card image styling --- */
.card-image {
    flex-shrink: 0;
    width: 100%; /* Full width on mobile */
    max-width: 100%;
    height: auto; /* Let height adjust naturally */
    aspect-ratio: 16/9; /* Maintain aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0 0 0; /* Reset margins for mobile */
    transition: transform 0.3s ease;
    padding: 5px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.scroll-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* --- Responsive adjustments --- */
@media (max-width: 991px) {
    .scroll-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-content {
        max-width: 100%;
        padding-right: 0; /* Remove right padding on mobile */
    }
    
    .card-image {
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0 0; /* Add top margin only */
    }
    
    .animation-heading {
        font-size: clamp(2rem, 6vw, 3rem); /* Adjusted for medium screens */
    }
}

@media (max-width: 768px) {
    .scroll-container {
        padding-top: 80vh; /* Reduced padding for smaller screens */
        padding-bottom: 50px;
    }
    
    .sticky-heading-container {
        height: 80vh; /* Reduced height for smaller screens */
    }
    
    .scroll-card {
        margin: 15px auto;
        padding: 15px;
    }
    
    .card-image {
        height: auto; /* Let height adjust naturally */
        aspect-ratio: 16/9; /* Maintain aspect ratio */
    }
    
    .card-buttons {
        justify-content: center; /* Center buttons on mobile */
    }
}

@media (max-width: 480px) {
    .scroll-container {
        padding-top: 70vh; /* Further reduced for very small screens */
        padding-bottom: 30px;
    }
    
    .sticky-heading-container {
        height: 70vh; /* Further reduced for very small screens */
    }
    
    .scroll-card {
        margin: 10px auto;
        padding: 12px;
    }
    
    .card-buttons button {
        padding: 6px 12px; /* Smaller buttons on very small screens */
    }
}

/* --- Scroll indicator (optional aesthetic) --- */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff88;
    font-size: clamp(0.9rem, 2vw, 1.2rem); /* Responsive font size */
    z-index: 100;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: bounce 2s infinite;
    max-width: 90%; /* Prevent overflow on small screens */
    white-space: nowrap;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}



/* ==================================faq====================== */

.faq-title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ffcc, #00ff88, #00cc6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-desc {
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 10px;
}

/* FAQ Card Item */
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0;
  border-radius: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 18px 22px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #00ff88;
}

/* Rotating Icon */
.faq-icon {
  font-size: 1.6rem;
  display: inline-block;
  transition: transform 0.5s ease;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 22px;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* Active Open State */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 22px 18px 22px;
}



/* Mobile responsiveness */
@media (max-width: 576px) {
  .faq-title {
    font-size: 2.4rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* Rotating Icon */
.faq-icon {
  font-size: 1.6rem;
  display: inline-block;
  transition: transform 0.45s ease;
}

/* Rotate 45deg so + becomes × */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =====================testimonial======================== */

.test {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 40px;
}

.test button {
  background: none;
  color: #00ff88;
  border: 1px solid #00ff88;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
  margin: 0 6px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.test button:hover {
  background: #00ff88;
  color: black;
  box-shadow: 0 0 10px #00ff88;
}

.test h1{
    text-align: left;
}

/* Testimonial Text */
.testimonial-item {
  padding: 30px 10px;
}

.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
  font-style: italic;
}

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid #00ff88;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.client-details p {
  margin: 0;
  color: #00ff88;
  font-size: 0.9rem;
}

/* Carousel Container Spacing */
.testimonial-carousel {
  margin-top: 40px;
}

/* Tablets & below */
@media (max-width: 992px) {
  .testimonial-text {
    font-size: 1.4rem;
  }

  .test button {
    width: 42px;
    height: 42px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {

  /* Center heading and buttons */
  .test .row > div {
    text-align: center !important;
  }

  .test button {
    margin-top: 20px;
  }

  .testimonial-text {
    font-size: 1.25rem;
  }

  /* Slightly increase left/right spacing */
  #testimonialCarousel .testimonial-item {
    padding: 20px;
  }

  /* Make client info vertically stacked on very small screens */
  .client-info {
    flex-direction: row;
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .testimonial-text {
    font-size: 1.15rem;
  }

  .client-img {
    width: 50px;
    height: 50px;
  }

  .client-details h5 {
    font-size: 1rem;
  }
}



/* ===========================contact====================== */
/* CONTACT SECTION */
.contact-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Remove bullets globally inside this section */
.contact-section ul,
.contact-section li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Background glow effects */
.light-ray,
.light-ray-left {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}

.light-ray {
  right: -180px;
  top: -180px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0,255,204,0.18), rgba(0,180,120,0.05), transparent 70%);
  animation: soft-move 6s ease-in-out infinite alternate;
}

.light-ray-left {
  left: -200px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(4, 48, 21, 0.15), transparent 70%);
  filter: blur(55px);
  animation: soft-move-reverse 7s ease-in-out infinite alternate;
}

@keyframes soft-move {
  from { transform: translateY(-10px); }
  to { transform: translateY(20px); }
}

@keyframes soft-move-reverse {
  from { transform: translateY(10px); }
  to { transform: translateY(-15px); }
}

/* TEXT */
.contact-text h5 {
  color: #00ffcc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-text h1 span {
  background: linear-gradient(90deg, #00ffcc, #00cc6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-text p {
  color: #9f9f9f;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* FORM */
.contact-form {
  background: rgba(15, 15, 25, 0.85);
  border: 1px solid rgba(0,255,204,0.25);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 35px rgba(0,255,170,0.09);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.contact-form label {
  color: #eaeaea;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Form Inputs */
.contact-form .form-control {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0,255,204,0.22);
  border-radius: 10px;
  padding: 14px;
  color: #ffffff;
  transition: 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #00ffcc;
  box-shadow: 0 0 8px rgba(0,255,204,0.3);
}

/* Links */
.contact-form small {
  color: #aaaaaa;
}

.contact-form small a {
  color: #00ffcc;
}

.contact-form small a:hover {
  color: #00cc6a;
}

/* Button */
.contact-form .btn {
  width: 100%;
  background: linear-gradient(90deg, #00cc6a, #00ffcc);
  border: none;
  color: #0d0d0d;
  padding: 14px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s;
}

.contact-form .btn:hover {
  background: linear-gradient(90deg, #00ffcc, #00cc6a);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,255,204,0.5);
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .contact-text {
    text-align: center;
  }
  .contact-text h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 28px 22px;
  }
  .contact-text h1 {
    font-size: 2rem;
  }
}

/* =============footer============== */
.footer {
  background-color: rgba(7, 97, 55, 0.25);
  color: #f3f4f6;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.footer h5 {
  color: #10b981;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #10b981;
  padding-left: 5px;
}

.contact-info i {
  color: #10b981;
  margin-right: 8px;
  width: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #10b981;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* --- Stylish Divider --- */
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-weight: bold;
  font-family: monospace;
  margin: 2rem 0;
  width: 100%;
  text-align: center;
  position: relative;
}

.footer-divider::before,
.footer-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background-image: linear-gradient(to right, #10b981 40%, transparent 0%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  opacity: 0.6;
}

.footer-divider span {
  padding: 0 12px;
  font-size: 1.2rem;
  color: #10b981;
  letter-spacing: 2px;
}

.footer-divider span:hover {
  color: #0ee68b;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  transition: 0.3s;
}

.footer-bottom {
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-bottom .company-name {
  color: #10b981;
  font-weight: 600;
}

/* Grid pattern background */
.tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
  opacity: 0.5;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .footer {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 768px) {
  .footer h5 {
    margin-top: 2rem;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-divider span {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .footer {
    text-align: center;
  }
  .footer-divider {
    margin: 1.5rem 0;
  }
  .social-icons {
    justify-content: center;
  }
}
