html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport height */
}

main {
    flex: 1; /* take remaining space */
}


/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}
html {
    scroll-behavior: smooth;
}

/* ================= HEADER ================= */
/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #0B3C6D;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo image and text */
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #FC9803; /* highlight "Services" */
}

.logo-img {
    width: 40px; /* adjust logo size */
    height: 40px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px;
}

.nav a:hover {
    color: #FC9803;
}

.btn-nav {
    padding: 8px 18px;
    background: #0f9d58;
    border-radius: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    color: #0f9d58;
    transform: scale(1.05);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none; /* hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px) {
    .nav {
        gap: 15px;
    }
    .logo {
        font-size: 22px;
    }
}

@media(max-width: 768px) {
    .hamburger {
        display: flex; /* show hamburger on mobile */
    }
    .nav {
        position: absolute;
        top: 65px;
        right: -100%; /* hidden by default */
        flex-direction: column;
        background: rgba(10,37,64,0.95);
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        gap: 15px;
        transition: right 0.3s ease;
    }
    .nav.active {
        right: 10px; /* slide in when open */
    }
}



/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    overflow: hidden;

}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    color: #fff;
    z-index: 2;
    animation: fadeUp 1.2s ease;
}
.hero-tag {
    margin-top:60px;
    display: inline-block;
    margin-top: 60px;
    background: rgba(0,230,118,0.2);
    color: #00e676;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: #00e676;
}
.hero-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-primary {
    background: #00e676;
    color: #000;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #00c853;
}
.btn-outline {
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid #00e676;
    color: #00e676;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #00e676;
    color: #000;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.hero-stats h3 {
    color: #00e676;
    font-size: 28px;
}
.hero-stats p {
    color: #fff;
    font-weight: 500;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    transform: translateX(-50%);
}
.scroll-down::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% { opacity: 0; top: 10px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 25px; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

/* ================= SECTIONS ================= */
.section {
    padding: 100px 0px; /* remove left/right padding */
    text-align: center;
    width: 100%;       /* full width */
    overflow: hidden;  /* prevents unwanted scroll */
}
.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a2540;
}
.section-text {
    max-width: 700px;
    margin: auto;
    color: #555;
}
.bg-light {
    background: #f5f7fa;
}
.bg-dark {
    background: #0a2540;
    color: #fff;
}

/* ================= MODERN ABOUT SECTION ================= */
/* ================= MODERN PREMIUM ABOUT SECTION ================= */
.about-modern {
    background: #0a0f23;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

/* ================= BACKGROUND FLOATING CIRCLES & ICONS ================= */
.about-modern::before,
.about-modern::after,
.about-modern .float-element {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Main gradient circles */
.about-modern::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00e67666, transparent);
    top: -150px;
    right: -150px;
    animation: floatCircle 20s linear infinite;
}

.about-modern::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00b0ff44, transparent);
    bottom: -120px;
    left: -100px;
    animation: floatCircle 25s linear infinite;
}

/* Additional floating small circles */
.about-modern .float-element {
    width: 20px;
    height: 20px;
    background: rgba(0,230,118,0.4);
    top: 50%;
    left: 50%;
    animation: floatRandom 15s linear infinite;
}

/* Multiple elements with different sizes/colors/speeds */
.about-modern .float-element:nth-child(1) {
    width: 15px; height: 15px; background: #00e67655;
    top: 20%; left: 10%;
    animation-duration: 12s;
}
.about-modern .float-element:nth-child(2) {
    width: 25px; height: 25px; background: #00b0ff44;
    top: 70%; left: 80%;
    animation-duration: 18s;
}
.about-modern .float-element:nth-child(3) {
    width: 10px; height: 10px; background: #ff408155;
    top: 40%; left: 60%;
    animation-duration: 10s;
}
.about-modern .float-element:nth-child(4) {
    width: 18px; height: 18px; background: #ffea0044;
    top: 60%; left: 30%;
    animation-duration: 14s;
}

/* Floating animations */
@keyframes floatCircle {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-50px) translateX(30px) rotate(180deg); }
    100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

@keyframes floatRandom {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, 20px) rotate(90deg); }
    50% { transform: translate(20px, -40px) rotate(180deg); }
    75% { transform: translate(-25px, 30px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* ================= REST OF YOUR CSS ================= */
/* ...Keep all your existing about-wrapper, image, content, points, hover, etc. styles intact... */


/* Layout */
.about-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

/* ================= LEFT IMAGE ================= */
.about-image {
    flex: 1;
    perspective: 1200px;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: floatImage 6s ease-in-out infinite;
}

/* Image hover tilt effect */
.about-image img:hover {
    transform: rotateY(15deg) rotateX(10deg) scale(1.05);
    box-shadow: 0 50px 100px rgba(0,230,118,0.5);
}

/* Floating animation */
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* ================= RIGHT CONTENT ================= */
.about-content {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: contentReveal 1.2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes contentReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(120deg, #00e676, #00b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight glass-effect box */
.about-highlight {
    font-size: 18px;
    color: #ffffffcc;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 20px 28px;
    border-left: 6px solid #00e676;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    animation: glowPulse 3s infinite;
}
.about-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0,230,118,0.6);
}

/* Description */
.about-desc {
    font-size: 17px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

/* ================= POINTS ================= */
.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 50px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,230,118,0.3);
}

.point:nth-child(1) { animation-delay: 0.7s; }
.point:nth-child(2) { animation-delay: 0.9s; }
.point:nth-child(3) { animation-delay: 1.1s; }
.point:nth-child(4) { animation-delay: 1.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.point span {
    color: #00e676;
    font-size: 22px;
    font-weight: bold;
    margin-top: 2px;
}

.point p {
    font-size: 16px;
    color: #eeeeee;
}

/* Button */
.about-content .btn-primary {
    background: linear-gradient(120deg, #00e676, #00b0ff);
    color: #fff;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,230,118,0.3);
}

.about-content .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,230,118,0.5);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 1024px) {
    .about-wrapper { flex-direction: column; text-align: center; gap: 60px; }
    .about-content { animation: none; opacity: 1; transform: none; }
    .about-image img { animation: none; transform: none; }
    .about-points { grid-template-columns: 1fr; }
    .point { justify-content: center; text-align: center; }
}
@media(max-width: 480px) {
    .about-content h2 { font-size: 32px; }
    .about-desc { font-size: 16px; }
    .about-highlight { font-size: 16px; padding: 16px 20px; }
}



/* ================= SERVICES PREMIUM ================= */
/* ================= SERVICES PREMIUM ================= */
.services-premium {
  background: linear-gradient(135deg, #f5f8fb, #e0ebf7, #fcf3e0);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center; /* center the text */
  max-width: 100%; /* allow full width */
  margin: 0 auto 60px; /* keep bottom margin */
}
.section-tag {
  color: #00E676;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.services-header h2 {
  font-size: 38px;
  color: #0b3c6d;
  margin: 15px 0;
  white-space: nowrap; /* prevent wrapping */
}

.services-header p {
     /* text-align: center; */
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
   justify-content: center; /* center horizontally */
}

/* Card */
.service-card {
    width:250px;
  position: relative;
  background:white;
  padding: 30px 25px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Big number in background */
.service-number-bg {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  z-index: 0;
}

/* Remove big number */
.service-number-bg {
  display: none; /* hides the number */
}

/* Top Icon centered */
.service-top {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  margin-bottom: 20px;
  z-index: 1;
}

/* Center text inside card */
.service-card h3,
.service-card p {
  text-align: center;
}

/* Optional: keep button centered */
.service-btn {
  display: inline-flex;
  margin: 20px auto 0; /* centers horizontally */
}



.service-icon {
  width: 60px;
  height: 60px;
  background: #0b3c6d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: transform 0.3s ease;

}

.service-icon i {

  font-size: 26px;
  color: #fc9803;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Text */
.service-card h3 {
  font-size: 20px;
  color: #27ae60;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}

.service-card p {
  font-size: 15px;
  color: #4B4B4B;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* Arrow button */
.service-btn {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: #7AC943;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-top: 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.service-btn:hover {
  background: #63b52f;
  transform: translateX(4px);
}


/* ================= RESPONSIVE ================= */

/* Mobile: 1 card per row */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    justify-items: center; /* centers the single card */
  }

  .services-header h2 {
    font-size: 28px;
    white-space: normal; /* allow wrapping */
  }

  .services-header p {
    font-size: 14px;
  }

  .service-card {
    padding: 25px 20px 35px;
    width: 100%; /* optional, keeps card responsive */
    max-width: 400px; /* optional, limits width */
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon i {
    font-size: 22px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* ================= CARDS ================= */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a2540;
}

.card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
/* ================= BENEFITS ================= */
/* ================= BENEFITS ================= */
.benefits-section {
    position: relative;
    padding: 100px 20px;
    background: #0B1F3C; /* dark deep blue */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    color: #fff;
}

/* Animated subtle gradient glow behind all content */
.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #0B3C6D, #FC9803, #27AE60, #0B3C6D);
    background-size: 400% 400%;
    filter: blur(120px);
    opacity: 0.12;
    animation: gradientMove 20s ease infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating circles container */
.floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Circle common style */
.floating-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 200, 3, 0.2);
    box-shadow: 0 0 20px rgba(252, 152, 3, 0.5),
                0 0 40px rgba(39, 174, 96, 0.4),
                0 0 60px rgba(11, 60, 109, 0.3);
    animation: floatCircle 15s ease-in-out infinite;
}

/* Individual circle positions and sizes */
.floating-circles .circle1 {
    width: 120px; height: 120px;
    top: 10%; left: 15%;
    animation-delay: 0s;
}

.floating-circles .circle2 {
    width: 180px; height: 180px;
    top: 50%; left: 70%;
    animation-delay: 3s;
}

.floating-circles .circle3 {
    width: 100px; height: 100px;
    top: 70%; left: 30%;
    animation-delay: 5s;
}

.floating-circles .circle4 {
    width: 150px; height: 150px;
    top: 20%; left: 80%;
    animation-delay: 2s;
}

.floating-circles .circle5 {
    width: 200px; height: 200px;
    top: 60%; left: 10%;
    animation-delay: 4s;
}

/* Circle float animation */
@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) scale(1.1);
        opacity: 0.3;
    }
}

/* Container & cards */
.benefits-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, #0B3C6D, #27AE60, #FC9803);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    z-index: 1;
    position: relative;
}

/* Card Style – dark glassmorphism */
.benefits .card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 280px;
    flex: 1 1 260px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefits .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid #FC9803;
}

/* Icon Style */
.benefits .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FC9803;
    transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
    text-shadow: 0 0 8px #FC9803, 0 0 12px #27AE60;
}

.benefits .card:hover .icon {
    transform: rotate(10deg) scale(1.2);
    color: #27AE60;
    text-shadow: 0 0 10px #27AE60, 0 0 15px #FC9803;
}

/* Card Titles */
.benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.4s ease;
}

.benefits .card:hover h3 {
    color: #FC9803;
}

/* Card Paragraphs */
.benefits p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 992px) {
    .benefits {
        gap: 30px;
    }
}

@media(max-width: 768px) {
    .benefits {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .benefits .card {
        max-width: 90%;
    }
}

/* ================= PROJECT GALLERY ================= */
/* ================= PROJECT GALLERY WITH TEAL/GREEN THEME ================= */
.services-bg {

    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: #0a0f1c; /* dark background */
    overflow: hidden;
    z-index: 0;
}

/* Floating circles animation behind content */
.services-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(0,255,182,0.15), transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(0,230,118,0.12), transparent 70%);
    z-index: 0;
    animation: floatCircles 30s linear infinite;
    pointer-events: none;
}

/* Extra floating small circles */
.services-bg::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300%;
    height: 300%;
    background-image: radial-gradient(circle, rgba(0,191,165,0.1) 2px, transparent 2px),
                      radial-gradient(circle, rgba(0,230,118,0.08) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    z-index: 0;
    animation: floatShapes 25s linear infinite;
    pointer-events: none;
}

/* Floating animation keyframes */
@keyframes floatCircles {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(20px, -10px) rotate(45deg); }
    50% { transform: translate(-15px, 25px) rotate(90deg); }
    75% { transform: translate(10px, -15px) rotate(135deg); }
    100% { transform: translate(0px, 0px) rotate(180deg); }
}

@keyframes floatShapes {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(45deg); }
    50% { transform: translate(-10px, 20px) rotate(90deg); }
    75% { transform: translate(5px, -15px) rotate(135deg); }
    100% { transform: translate(0px, 0px) rotate(180deg); }
}

/* Keep gallery/cards above background */
.gallery {
    position: relative;
    display: grid;
   grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}
/* ================= TEXT COLOR THEME ================= */

/* Section heading */
.services-bg h2 {
    color: #00e676; /* bright teal/green */
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Paragraph text */
.services-bg p {
    color: #0B3C6D; /* light teal for contrast on dark background */
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: bold;
}

/* Optional: smaller headings or bold highlights inside paragraph */
.services-bg p strong {
    color: #00ffe0; /* slightly brighter teal for emphasis */
}

/* Cards with teal/green theme */
.gallery .card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(145deg, #eeeeee, #c1e7f8ab);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,255,182,0.1),
                0 20px 40px rgba(0,230,118,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,255,182,0.2),
                0 25px 60px rgba(0,230,118,0.15);
}

/* Card images */
.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,255,182,0.05);
    transition: transform 0.4s ease;
}

.gallery .card:hover img {
    transform: scale(1.05);
}

/* Floating button with green gradient */
.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #00bfa5, #00e676);
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,191,165,0.3);
}

.view-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,191,165,0.4);
}

.view-btn::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.4s ease;
}

.view-btn:hover::after {
    transform: translateX(6px);
}

/* Responsive */
@media(max-width: 768px){
    .gallery {
        grid-template-columns: 1fr;
        padding: 20px 10px;
    }
    .gallery .card img { height: 200px; }
}


/* ================= POPUP ================= */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(8px); /* modern glassy effect */
}

.popup-content {
    background: radial-gradient(circle at 25% 25%, rgba(0,255,182,0.1), transparent 60%),
                radial-gradient(circle at 75% 75%, rgba(0,230,118,0.08), transparent 60%),
                linear-gradient(145deg, #ffffff, #f0f7f9); /* soft base */
    border-radius: 30px;
    padding: 30px 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    overflow-y: auto;
    animation: slideUp 0.5s ease;
    backdrop-filter: blur(12px); /* more futuristic glassy effect */
    border: 1px solid rgba(0,255,182,0.25); /* subtle neon edge */
}


.popup-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 15px;
    text-align: center;
}

.popup-content p {
    font-size: 17px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

/* POPUP IMAGES */
.popup-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.popup-images img {
    width: calc(50% - 15px);
    max-height: 220px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.popup-images img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,191,165,0.5);
}

/* CLOSE BUTTON */
.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #0a2540;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-popup:hover {
    color: #00e676;
    transform: rotate(90deg);
}

/* NAVIGATION BUTTONS */
.popup-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.popup-buttons button {
    background: linear-gradient(135deg, #00bfa5, #00e676);
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 12px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-buttons button:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 25px rgba(0,230,118,0.5);
}

/* ANIMATIONS */
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideUp { from {transform:translateY(30px); opacity:0;} to {transform:translateY(0); opacity:1;} }

/* RESPONSIVE */
@media(max-width: 768px){
    .gallery {
        grid-template-columns: 1fr;
        padding: 20px 10px;
    }
    .gallery .card img { height: 200px; }
    .popup-images img { width: 100%; max-height: 180px; }
    .popup-content { padding: 20px 25px; }
    .close-popup { top: 15px; right: 15px; font-size: 28px; }
}
/* ================= IMAGE VIEWER ================= */
/* ================= IMAGE VIEWER (POPUP STYLE) ================= */
.image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    backdrop-filter: blur(8px);
}

/* Popup Card */
.image-popup {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(0,255,182,0.12), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(0,230,118,0.1), transparent 60%),
                linear-gradient(145deg, #ffffff, #f2f8fb);
    border-radius: 28px;
    padding: 20px;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: popupZoom 0.4s ease;
}

/* Image */
.image-popup img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 20px;
}

/* Close Button */
.image-popup .close-viewer {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 34px;
    color: #0a2540;
    cursor: pointer;
    z-index: 5;
}

.image-popup .close-viewer:hover {
    color: #00e676;
}

/* Navigation Buttons */
.image-popup .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 30px;
    background: rgba(0,255,182,0.2);
    color: #0a2540;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.image-popup .nav-btn:hover {
    background: rgba(0,255,182,0.35);
    transform: translateY(-50%) scale(1.12);
}

.image-popup .prev { left: -28px; }
.image-popup .next { right: -28px; }

/* Animation */
@keyframes popupZoom {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
    .image-popup {
        padding: 12px;
    }
    .image-popup img {
        max-height: 65vh;
    }
    .image-popup .prev { left: -20px; }
    .image-popup .next { right: -20px; }
}



/* ================= CERTIFICATES ================= */
/* ===== CERTIFICATIONS ROW ===== */
.certifications-row {
    padding: 80px 20px;
    background: #050d18;
    color: #fff;
}

.cert-header {
    text-align: center;
    margin-bottom: 50px;
}

.cert-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(15,157,88,0.15);
    color: #0f9d58;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1.4px;
}

.cert-header h2 {
    font-size: 36px;
    margin: 12px 0 8px;
}

.cert-header p {
    color: #b7c4d4;
    font-size: 15px;
}

/* ROW LAYOUT */
.cert-row {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CERT BOX */
.cert-box {
    flex: 1;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.cert-box img {
    max-width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* FEATURED CENTER CARD */
.cert-box.featured {
    border: 1px solid rgba(15,157,88,0.5);
    transform: translateY(-10px);
}

/* HOVER */
.cert-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(15,157,88,0.35);
}

/* TEXT */
.cert-box h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.cert-box p {
    font-size: 14px;
    color: #a6b6c9;
}
.cert-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

.cert-modal img {
    max-width: 85%;
    max-height: 85%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.cert-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cert-row {
        flex-direction: column;
    }

    .cert-box img {
        height: 220px;
    }
}

/* our clients */
.clients-section {
    padding: 90px 8%;
    background: radial-gradient(circle at top, #0e1a2b, #060b13);
    overflow: hidden;
    position: relative;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-header .section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(0, 255, 200, 0.12);
    color: #00ffd5;
    font-size: 12px;
    letter-spacing: 1px;
}

.clients-header h2 {
    font-size: 36px;
    color: #ffffff;
    margin: 12px 0;
}

.clients-header p {
    color: #b5c1d8;
    max-width: 620px;
    margin: auto;
}

/* Wrapper */
.clients-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving Track */
.clients-track {
    display: flex;
    gap: 25px;
    animation: scrollClients 10s linear infinite;
}

/* Cards */
.client-card {
    width: 180px;       /* fixed card width */
    height: 120px;      /* fixed card height */
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-card img {
    max-width: 100%;    /* fill width but respect aspect ratio */
    max-height: 100%;   /* fill height but respect aspect ratio */
    object-fit: contain; /* ensures whole logo fits without cropping */
    transition: all 0.4s ease;
}

.client-card.highlight img {
    max-width: 100%;
    max-height: 100%;
}

.client-card span {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    color: #9ecbff;
}

.client-card:hover {
    /* transform: translateY(-10px) scale(1.05); */
    box-shadow: 0 15px 35px rgba(0, 255, 200, 0.25);
    border-color: rgba(0, 255, 200, 0.6);
}

/* Highlight Card */
.client-card.highlight {
    /* background: linear-gradient(135deg, #00ffd5, #007bff); */
    color: #000;
    font-weight: 600;
}

/* Animation */
/* Animation */
@keyframes scrollClients {
    from {
        transform: translateX(100%);  /* start off-screen to the right */
    }
    to {
        transform: translateX(-50%);  /* move to the left */
    }
}

/* Pause on hover */
.clients-wrapper:hover .clients-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 28px;
    }
    .client-card {
        min-width: 180px;
    }
}

.client-card img {
    width: 100%;                 /* fill full width */
    height: 100%;                /* fill full height */
    object-fit: cover;           /* fill card, may crop if aspect ratio differs */
    filter: none;                /* optional: remove grayscale */
    transition: all 0.1s ease;
}



/* Hover effect for logos */
.client-card:hover img {
    transform: scale(1.05);      /* optional zoom effect on hover */
}

.client-card.highlight img {
    height: 80px;         /* slightly bigger for highlighted card */
    max-width: 100%;
    filter: none;
}
/* Center align */
.client-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.clients-wrapper {
    overflow: hidden;
    width: 100%;
}


/* ================= CLIENT FEEDBACK ================= */
/* ================= CLIENT FEEDBACK DARK ================= */
.client-feedback {
    padding: 120px 8%;
    background: #0b0c1a;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Floating background animations */
.bg-animations {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle, #fc9803 10%, transparent 10%) 0 0/15px 15px,
                radial-gradient(circle, #00cfb1 10%, transparent 10%) 7px 7px/15px 15px;
    opacity: 0.15;
    animation: floatBackground 30s linear infinite;
}

@keyframes floatBackground {
    0% { background-position: 0 0, 7px 7px; }
    50% { background-position: 300px 200px, 350px 150px; }
    100% { background-position: 0 0, 7px 7px; }
}

/* Header */
.feedback-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.feedback-header .section-tag {
    display: inline-block;
    color: #fc9803;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feedback-header h2 {
    font-size: 2.8rem;
    color: #00cfb1;
    margin-bottom: 15px;
}

.feedback-header p {
    color: #ccc;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Slider container */
.feedback-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* space between buttons and card */
    position: relative;
    z-index: 2;
}

/* Slides container */
.slides-container {
    width: 650px;
    overflow: hidden;
    display: flex;
}

/* Individual slide */
.slide {
    flex: 0 0 100%;
}

/* Card */
/* Card */
.feedback-card {
    width: 650px;
    max-width: 90%;
    background: rgba(20, 25, 40, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

/* Video wrapper */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Text */
.feedback-text {
    font-size: 1rem;
    color: #eee;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.client-name {
    font-weight: 700;
    color: #fc9803;
    font-size: 0.95rem;
}

/* Animation for card fade-in */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
/* Buttons - circular style */
.prev-btn, .next-btn {
    background: #fc9803; /* premium orange */
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 60px;           /* fixed width for circle */
    height: 60px;          /* fixed height for circle */
    border-radius: 50%;    /* makes it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    z-index: 5;
}

.prev-btn:hover, .next-btn:hover {
    background: #00cfb1; /* teal accent on hover */
    transform: scale(1.1); /* slight grow effect */
}

/* Position buttons side of the card */
.prev-btn {
    margin-right: 30px;
}

.next-btn {
    margin-left: 30px;
}

/* Responsive */
/* Responsive Styles */
@media (max-width: 992px) {
    .client-feedback {
        padding: 100px 5%;
    }

    .feedback-header h2 {
        font-size: 2.4rem;
    }

    .feedback-header p {
        font-size: 1rem;
    }

    .feedback-card {
        width: 90%;
        padding: 20px;
    }

    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .slides-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .feedback-slider {
        gap: 20px;
        justify-content: center;
        position: relative; /* keep buttons absolute */
    }

    /* Keep buttons on left/right side of card */
    .prev-btn, .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .prev-btn {
        left: -25px; /* outside card on left */
    }

    .next-btn {
        right: -25px; /* outside card on right */
    }

    .slides-container {
        width: 90vw;
    }
}

@media (max-width: 480px) {
    .client-feedback {
        padding: 60px 3%;
    }

    .feedback-header h2 {
        font-size: 2rem;
    }

    .feedback-header p {
        font-size: 0.95rem;
    }

    .feedback-card {
        width: 100%;
        padding: 15px;
        border-radius: 15px;
    }

    .feedback-text {
        font-size: 0.9rem;
    }

    .client-name {
        font-size: 0.85rem;
    }

    /* Keep buttons on sides for small screens */
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }

    .slides-container {
        width: 90vw;
    }
}

/* ================= STATS ================= */
/* ================= PROJECTS SECTION ================= */
#projects {
    padding: 100px 20px;
    text-align: center;
    /* Background image */
    background: url('../images/solar7.webp') no-repeat center center;
    background-size: cover;
   /* optional: parallax effect */
    position: relative;
    color: #fff;
}

/* Gradient overlay for premium look */
#projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay from top (dark) to bottom (transparent) */
   background: rgba(0, 0, 0, 0.534); /* adjust darkness here */
    z-index: 1;
}

#projects h2 {
    font-size: 40px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* ================= STATS ================= */
.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    min-width: 160px;
    transition: transform 0.3s ease;
    cursor: default;
}

.stat:hover {
    transform: scale(1.05);
}

.stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #FC9803; /* Orange numbers */
    margin-bottom: 10px;
}

.stat p {
    font-size: 18px;
    font-weight: 500;
    color:#27ae60; /* Teal/green descriptions */
    margin-top: 8px;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 992px) {
    #projects h2 {
        font-size: 34px;
    }

    .stat h3 {
        font-size: 40px;
    }

    .stat p {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    #projects {
        padding: 80px 15px;
    }

    .stats {
        gap: 30px;
    }

    .stat h3 {
        font-size: 36px;
    }

    .stat p {
        font-size: 15px;
    }
}



/* ================= CONTACT FORM ================= */
.contact-premium {
    position: relative;
    padding: 100px 8%;
    background: #0B1F3C; /* deep dark blue */
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Animated gradient glow behind content */
.contact-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #0B3C6D, #FC9803, #27AE60, #0B3C6D);
    background-size: 400% 400%;
    filter: blur(120px);
    opacity: 0.12;
    animation: gradientMove 20s ease infinite;
    z-index: 0;
}

/* Floating circles */
.contact-premium .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-premium .floating-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 200, 3, 0.15);
    box-shadow: 0 0 20px rgba(252, 152, 3, 0.4),
                0 0 40px rgba(39, 174, 96, 0.3),
                0 0 60px rgba(11, 60, 109, 0.2);
    animation: floatCircle 15s ease-in-out infinite;
}

/* Example positions (you can add more) */
.contact-premium .floating-circles .circle1 {
    width: 120px; height: 120px;
    top: 10%; left: 15%;
    animation-delay: 0s;
}

.contact-premium .floating-circles .circle2 {
    width: 180px; height: 180px;
    top: 50%; left: 70%;
    animation-delay: 3s;
}

.contact-premium .floating-circles .circle3 {
    width: 100px; height: 100px;
    top: 70%; left: 30%;
    animation-delay: 5s;
}
/* Social icons container */
.contact-socials {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column; /* one below one */
    gap: 18px;
    z-index: 5;
}

/* Each icon */
.contact-socials a {
    width: 56px;
    height: 56px;
    background:   #FC9803;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

/* Icon image */
.contact-socials img {
    width: 22px;
    height: 22px;
}

/* Hover effect */
.contact-socials a:hover {
    background: #fc9803;
    transform: translateX(-6px) scale(1.1);
}
/* Circle float animation */
@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-40px) scale(1.1);
        opacity: 0.25;
    }
}

/* Gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-header .section-tag {
    color: #FC9803;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.contact-header h2 {
    font-size: 2.8rem;
    margin: 10px 0;
    color: #27AE60;
}

.contact-header p {
    color: #ccc;
    font-size: 1rem;
}

/* Contact items */
.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    flex: 1 1 300px;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FC9803);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-item:hover .icon-wrapper {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 25px rgba(252, 152, 3, 0.5);
}

/* Text */
.contact-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-info p,
.contact-info a {
    font-size: 0.95rem;
    color: #ddd;
    text-decoration: none;
}

.contact-info a:hover {
    color: #FC9803;
}

/* Responsive */
@media (max-width: 768px) {

    /* Give space on right so icons don't overlap cards */

    /* Make cards slightly smaller */
    .contact-item {
        padding: 20px;
        gap: 16px;
    }

    .icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .contact-info h4 {
        font-size: 1.1rem;
    }

    .contact-info p,
    .contact-info a {
        font-size: 0.9rem;
    }

    /* Social icons mobile positioning */
    .contact-socials {

        right: 1px;
        gap: 14px;
    }

  
.contact-socials a {

    width: 50px;
    height: 50px;
    }

    .contact-socials img {
        width: 20px;
        height: 20px;
    }
}



/* features */
.ai-features {
  padding: 100px 8%;
  background: radial-gradient(circle at top, #0a1a2f, #020814);
  color: #fff;
  overflow: hidden;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.ai-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00f0ff, #00ff88);
  color: #000;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}

.features-header h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.features-header p {
  color: #bcd0ff;
  font-size: 16px;
}

.features-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 48px;
  color: #00f0ff;
}

.feature-card h4 {
  font-size: 20px;
  margin: 10px 0 15px;
}

.feature-card p {
  font-size: 15px;
  color: #c9d7ff;
  line-height: 1.6;
}

.glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,240,255,0.35), transparent);
  top: -50px;
  right: -50px;
  filter: blur(25px);
  animation: floatGlow 6s infinite ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(0,0); }
  50% { transform: translate(-20px,20px); }
  100% { transform: translate(0,0); }
}


/* what we cover */
.ai-cover-section {
    padding: 100px 10%;
    background: radial-gradient(circle at top, #0a1a2f, #020617);
    color: #fff;
}

.ai-cover-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-cover-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.ai-cover-header p {
    color: #9ca3af;
}

.ai-cover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.ai-cover-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.ai-cover-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.ai-cover-card:hover::before {
    opacity: 1;
}

.ai-cover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.2);
}

.ai-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.ai-btn {
    display: inline-block;
    margin-top: 20px;
    color: #00e5ff;
    font-weight: 600;
}

.ai-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999;
    justify-content: center;
    align-items: center;
    padding: 20px; /* add padding to prevent clipping */
}

.ai-modal-content {
    background: #020617;
    max-width: 700px;
    padding: 40px;
    border-radius: 20px;
    color: #e5e7eb;
    position: relative;
    animation: scaleUp 0.4s ease;
}

.ai-modal-content h2 {
    color: #00e5ff;
    margin-bottom: 15px;
}

.ai-modal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.ai-modal-content li {
    margin-bottom: 10px;
}

.ai-highlight {
    margin-top: 20px;
    padding: 15px;
    border-left: 4px solid #00e5ff;
    background: rgba(0,255,255,0.08);
}

.ai-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Small screens */
@media (max-width: 600px) {
    .ai-modal-content {
        padding: 2px 2px;
        max-width: 100%;
    }

    .ai-modal-content h2 {
        font-size: 1.25rem;
    }

    .ai-modal-content p {
        font-size: 0.9rem;
    }
/* Reduce heading size */
.ai-modal-content h4 {
    font-size: 1.1rem;  /* adjust as needed */
}

/* Reduce list item size */
.ai-modal-content ul li {
    font-size: 0.8rem;  /* adjust as needed */
}

}

.team-section {
    position: relative;
    background: radial-gradient(circle at top, #0c1a2b, #050b14);
    padding: 90px 8%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Floating subtle glow background */
.team-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,229,255,0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 8s linear infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(15px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Header */
.team-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    color: #00e5ff;
    letter-spacing: 2px;
    font-size: 12px;
}

.team-header h2 {
    font-size: 42px;
    color: #ffffff;
}

.team-header p {
    color: #a0c4ff;
    max-width: 600px;
    margin: auto;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Card */
.team-card {
    position: relative;
    background: rgba(255,255,255,0.12); /* slightly less intense glow */
    border-radius: 22px;
    padding: 50px 25px 50px; /* more space for bigger photo */
    text-align: center;
    backdrop-filter: blur(18px); /* slightly softer blur */
    overflow: hidden;
    transition: all 0.4s ease;
}

/* AI Border Glow - subtle */
.ai-border {
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 22px;
    background: linear-gradient(120deg, transparent, #00e5ff33, transparent); /* reduced opacity */
    animation: aiGlow 6s linear infinite; /* slower movement */
    pointer-events: none;
}

/* Profile Image - larger */
.profile-img {
    width: 300px;   /* increased from 130px */
    height: 300px;  /* increased from 130px */
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #00e5ff, #008cff);
}

.profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

/* Content */
.team-content h3 {
    font-size: 24px;
    color: #fff;
}

.team-content span {
    color: #00e5ff;
    display: block;
    margin: 6px 0;
}

.team-content small {
    color: #c0d4ff;
}

/* Social Icons */
.team-socials {
    margin-top: 15px;
}

.team-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #00e5ff;
    transition: 0.3s ease;
}

.team-socials a:hover {
    background: #00e5ff;
    color: #000;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




.ai-footer {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 10px 20px; /* Slightly more padding for bigger text */
  font-family: 'Poppins', sans-serif;
  background: #0a0f1c;
  z-index: 0;
}

/* Animated Gradient Background */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(270deg, #1f1f1f, #0a0f1c, #1b1b2d, #0a0f1c);
  background-size: 800% 800%;
  animation: gradientAnimation 20s ease infinite;
  z-index: -1;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer Content */
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px; /* Small gap */
}

.footer-section.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.follow-us {
  font-size: 20px; /* Bigger font */
  color: #00d4ff;
  margin-bottom: 5px;
  font-weight: 600;
}

.social-icons a img {
  width: 28px; /* Slightly bigger icons */
  height: 28px;
}

.social-icons a {
  margin: 0 6px;
  transition: 0.3s;
  color: #00d4ff;
}

.social-icons a:hover {
  transform: scale(1.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 8px; /* Small space */
  font-size: 20px; /* Bigger font */
  color: #777;
}



/* Go to top button INSIDE contact section */
.contact-go-top {
    position: absolute;
    bottom: 30px;
    right: 30px;

    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08); /* no color */
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        inset 0 2px 6px rgba(255,255,255,0.35),
        0 12px 28px rgba(0,0,0,0.4);

    overflow: hidden;
    z-index: 3;
}

/* Hover */
.contact-go-top:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-go-top {
        bottom: 20px;
        right: 15px;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
}

/* ================= HERO PARTNERSHIP ================= */
.hero-partnership {
    position: absolute;
    bottom: 100px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 20px;
    z-index: 5;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298, #00E676);
    background-size: 600% 600%;
    animation: gradientShift 6s ease infinite;
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Logos */
.partner-logo {
    width: 40px; /* adjust size */
    height: auto;
}

/* Handshake Image */
.handshake-img {
    width: 60px; /* your increased size */
    height: auto;
    animation: handshake 1.5s infinite ease-in-out alternate;
}
/* Logos */
.partner-logo {
    width: 40px; /* default for Jogeshwari logo */
    height: auto;
}

/* Make Tata Logo Bigger */
.partner-logo.tata-logo {
    width: 60px; /* increase Tata logo size */
    height: auto;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Handshake Bounce Animation */
@keyframes handshake {
    0%   { transform: translateY(0) scale(1); }
    50%  { transform: translateY(-6px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-partnership {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
        gap: 0.6rem;
        bottom: 20px;
    }

    .partner-logo {
        width: 30px;
    }

    .handshake-img {
        width: 45px;
    }
}




.ev-gallery {
  padding: 60px 20px;
  background: #a9c9f3;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header .section-tag {
  color: #153058;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.gallery-header h2 {
  font-size: 2rem;
  margin: 10px 0;
  color: #0B3C6D;
}

.gallery-header p {
  color: #555;
}

/* Grid */
/* Grid */
.ev-image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.ev-image-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ev-image-grid img:hover {
  transform: scale(1.05);
}

/* Popup */
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.img-modal-content {
  max-width: 90vw;   /* REAL SIZE LIMIT */
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.img-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .ev-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .ev-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ================= NEW TESTIMONIAL SLIDER ================= */
.client-testimonials {
    padding: 120px 8%;
    background: #0b0c1a;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.testi-bg-float {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle, #fc9803 10%, transparent 10%) 0 0/15px 15px,
                radial-gradient(circle, #00cfb1 10%, transparent 10%) 7px 7px/15px 15px;
    opacity: 0.15;
    animation: floatBgMove 30s linear infinite;
}

@keyframes floatBgMove {
    0% { background-position: 0 0, 7px 7px; }
    50% { background-position: 300px 200px, 350px 150px; }
    100% { background-position: 0 0, 7px 7px; }
}

.testi-main-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.testi-tag {
    color: #fc9803;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    display: inline-block;
}

.testi-main-header h2 {
    font-size: 2.8rem;
    color: #00cfb1;
    margin-bottom: 15px;
}

.testi-main-header p {
    color: #ccc;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.testi-slider-wrapper {
    position: relative;
    max-width: 910px;
    margin: 0 auto;
    z-index: 2;
    overflow: hidden;
}

.testi-slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.testi-slide-item {
    flex: 0 0 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testi-slide-card {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(20, 25, 40, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: slideCardFade 0.8s forwards;
}

@keyframes slideCardFade {
    to { opacity: 1; transform: translateY(0); }
}

.testi-video-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.testi-video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.testi-slide-text {
    font-size: 1.1rem;
    color: #eee;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-client-name {
    font-weight: 700;
    color: #fc9803;
    font-size: 1rem;
    display: block;
}

.testi-prev-slide,
.testi-next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fc9803;
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(252, 152, 3, 0.4);
    transition: all 0.3s ease;
}

.testi-prev-slide {
    left: 10px;
}

.testi-next-slide {
    right: 10px;
}

.testi-prev-slide:hover,
.testi-next-slide:hover {
    background: #00cfb1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 207, 177, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .testi-prev-slide,
    .testi-next-slide {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .testi-prev-slide { left: 5px; }
    .testi-next-slide { right: 5px; }
}
