@import url("fonts/manrope.css");

html, body {
   overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
    --primary: #61bf31;
    --secondary: #000000;
    --dark: #1a1a1a;
    --white: #d9d9d9;
    --light: #d9d9d9;
    --font-main: "Manrope", Arial, sans-serif;
    --transition: all 0.3s ease;
}


        body {
            font-family: var(--font-main);
            line-height: 1.6;
            color: #d9d9d9;
            overflow-x: hidden;
            background: #000000;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-main);
        }


        

/* ===== NAVBAR ===== */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navbar layout */
.navbar {
    max-width: 1200px;
    margin: auto;
    height: 90px;          /* increase height */
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: space-between;
}

/* Logo left */
.logo {
    justify-self: start;
}

.logo img {
    height: 45px;
}

/* Nav links center */
/* NAV LINKS CENTER FIX */
.nav-center {
    list-style: none;
    display: flex;
    flex-direction: row;      /* keep horizontal */
    justify-content: center;  /* center horizontally */
    align-items: center;      /* center vertically */
    gap: 35px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center li {
    list-style: none;
}

.nav-center a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    padding: 5px 8px;
}

.nav-center a:hover {
    color: #61bf31;
}

/* Right side DN Portal */
.nav-right {
    justify-self: end;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}




/* ================= NAV LINKS ================= */

.nav-center li a{
    position: relative;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    padding-bottom: 5px;
}

/* HOVER COLOR */
.nav-center li a:hover{
    color: #61bf31;
}

/* UNDERLINE EFFECT */
.nav-center li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background:#61bf31;
    transition: 0.3s ease;
}



/* ACTIVE PAGE */
.nav-center li a.active{
    color:#61bf31;
}

/* ACTIVE UNDERLINE */
.nav-center li a.active::after{
    width: 100%;
}




/* DN Portal button */
.btn-join {
    background: #61bf31;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* DN Portal dropdown glass */
/* DN Portal Dropdown */
.dn-portal {
    position: relative;
    display: inline-block;
}

/* DN Portal Button Hover */
#portalBtn {
    transition: all 0.3s ease;
}

#portalBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(97,191,49,0.4);
}

/* Dropdown Menu */
.portal-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 15px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;

    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s ease;
    border: 1px solid rgba(97,191,49,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Show menu */
.portal-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Dropdown Buttons */
.portal-menu button {
    background: #61bf31;
    color: white;
    border: 2px solid #61bf31;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portal-menu button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 25px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

/* Hover effect on dropdown buttons */
.portal-menu button:hover {
    background: #ffffff;
    color: #61bf31;
    transform: translateX(6px) scale(1.05);
    box-shadow: 0 6px 18px rgba(97,191,49,0.35);
}

.portal-menu button:hover::before {
    transform: scaleX(1);
}

.portal-menu button span {
    position: relative;
    z-index: 1;
}

/* Portal button layout */
.portal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
}

/* Push arrow to right */
.portal-btn .dropdown-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.portal-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Stagger animation (buttons appear one by one) */
.portal-menu.show button {
    animation: fadeSlide 0.4s ease forwards;
}

.portal-menu.show button:nth-child(1) { animation-delay: 0.05s; }
.portal-menu.show button:nth-child(2) { animation-delay: 0.1s; }
.portal-menu.show button:nth-child(3) { animation-delay: 0.15s; }
.portal-menu.show button:nth-child(4) { animation-delay: 0.2s; }


@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #d9d9d9;
            cursor: pointer;
        }


        /* Page Container */
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #61bf31 0%, #61bf31 100%);
            padding: 120px 5% 80px;
            padding-top: 90px;   /* same as navbar height */
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1rem;
            animation: slideDown 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 2rem;
            animation: slideDown 1s ease 0.2s backwards;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideDown 1s ease 0.4s backwards;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: white;
            color: #61bf31;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: #61bf31;
            color: #61bf31;
        }

        /* Section Styles */
        section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #61bf31;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #61bf31;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #ffffff;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* 3D Cards */
        .card-3d{
    background:#000000;
    border-radius:15px;
    padding:2rem;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    transition:transform 0.35s ease, box-shadow 0.35s ease;
    position:relative;
}

        .card-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(132, 255, 0, 0.1), rgba(132, 255, 0, 0.1));
            border-radius: 15px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
    /* smooth hover */

.card-3d:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(97,191,49,0.18);
}

        .card-3d:hover::before {
            opacity: 1;
        }

        /* Home Page Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            text-align: center;
            perspective: 1000px;
            
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #61bf31, #61bf31);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .card-3d:hover .feature-icon {
        transform: scale(1.1);
        }

        .feature-card h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        

/* OUR IMPACT SECTION */

        .impact {
            text-align: center;
            margin-bottom: 3rem;
        }

        .impact h2 {
            font-size: 2.5rem;
            color: #61bf31;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .impact h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #61bf31;
        }

        .impact p {
            font-size: 1.1rem;
            color: #ffffff;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

.impact-container{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.impact-box {
    background: #61bf31;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.impact-box h3 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.impact-box p {
    color: #ffffff;
    font-size: 16px;
}

.impact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(97,191,49,0.35);
}

        /* Team Page */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-card {
            text-align: center;
            perspective: 1000px;
        }

        .team-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, #61bf31, #61bf31);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 0 10px 30px rgba(132, 255, 0, 0.3);
            transition: all 0.3s ease;
        }

        .card-3d:hover .team-avatar {
            transform: scale(1.1);
        }

        .team-card h3 {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .team-card .role {
            color: #61bf31;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d9d9d9;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #61bf31;
            color: white;
            transform: translateY(-5px);
        }

       /* PROJECT SECTION */
.projects-section {
  min-height: 100vh; /* full screen */
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
   background: #000;


}
/* PROJECT TABS */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.project-tab {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 11;
}

/* HOVER */
.project-tab:hover {
  background: #222;
}

/* ACTIVE */
.project-tab.active {
  background: #61bf31 !important;
  color: #000 !important;
  box-shadow: 0 8px 20px rgba(97,191,49,0.4);
}

/* CARD */
.project-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: 0.4s ease;
}

/* IMAGE */
.project-image {
  position: relative;
  height: 180px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.781), transparent);

}

/* CONTENT */
.project-info {
  position: absolute;
  bottom: -5px;
  left: 16px;
  right: 16px;
 padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}

/* TITLE */
.project-info h3
.marquee-content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
 max-width: 70%;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 🔥 LIMIT TO 2 LINES */
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 42px; /* 🔥 SAME HEIGHT FOR ALL */
}


.projects-grid .project-card:hover {
  box-shadow: 0 0 25px rgba(96, 191, 49, 0.556),
              0 15px 40px rgba(0,0,0,0.5);
}





.project-info h3,
.marquee-content h4 {
  letter-spacing: 0.1px;
}
/* HOVER EFFECT (ZOOM FORWARD) */
.project-card:hover .learn-btn {
  transform: translateY(2px) scale(1.08);
  background: #61bf31;
  color: #000;

}
/* HOVER EFFECT */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(97,191,49,0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
  justify-content: center;
  gap: 25px;
  width: 100%;
}








.projects-grid .project-info {
  position: absolute;
  bottom: 5px;   /* 🔥 slightly lower */
  left: 1px;
  right: 1px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.projects-grid .project-info h3 {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.2px;

  max-width: 68%;

  height: 42px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
}



/* LEARN MORE */
.learn-btn {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
 line-height: 1;                    /* 🔥 remove extra space */
  white-space: nowrap;
    display: inline-flex;              /* 🔥 important */
  align-items: center;               /* vertical center */
  justify-content: center;       
  transition: all 0.3s ease;
  transform: translateY(2px); 

}

.projects-grid .learn-btn {
  font-size: 12.5px;
  font-weight: 500;

  padding: 6px 10px;
  border-radius: 16px;
 display: inline-flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  height: 28px;

  margin-left: 14px;

 
}





.projects-grid .project-info {
  gap: 30px; /* 🔥 balanced spacing */
}

.projects-grid .project-info h3 {
  color: rgba(255, 255, 255, 0.92); /* 🔥 softer white */
}

.projects-grid .project-info h3 {
  font-family: var(--font-main);
}














/* ===== ALL  PROJECT SECTION ===== */
.all-section {
  overflow: hidden;
  margin-top: 40px;
}

.marquee {
  overflow: hidden;
  margin-bottom: 25px;
   overflow-x: scroll;
  scrollbar-width: none;
}

.marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
}

.marquee-card {
  min-width: 300px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.marquee::-webkit-scrollbar {
  display: none;
}
.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.621), transparent);
  pointer-events: none;
}

.marquee-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.marquee-top .marquee-track {
  animation: scrollLeft 48s linear infinite;
}

.marquee-bottom .marquee-track {
  animation: scrollRight 48s linear infinite;
}



@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.learn-more {
  font-size: 12px;
  color: #ccc;
  margin-top: 4px;
  display: inline-block;
}

.project-cta-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 680px;
  margin: 38px auto 0;
  padding: 34px 28px;
  text-align: center;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(97,191,49,0.18), rgba(255,255,255,0.055) 42%, rgba(255,255,255,0.025)),
    linear-gradient(180deg, #090d08 0%, #020202 100%);
  border: 1px solid rgba(97,191,49,0.36);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 22px 55px rgba(0,0,0,0.55),
    0 0 34px rgba(97,191,49,0.12);
}

.project-cta-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 27px;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 13px);
  opacity: 0.55;
}

.project-cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #7df24a;
  background: rgba(97,191,49,0.11);
  border: 1px solid rgba(97,191,49,0.24);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.project-cta-box h3 {
  margin: 0 auto 12px;
  max-width: 500px;
  color: #fff;
  font-size: 31px;
  font-weight: 780;
  line-height: 1.12;
}

.project-cta-box p {
  margin: 0 auto 18px;
  max-width: 520px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.65;
}

.project-cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 22px;
  max-width: 520px;
}

.project-cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 650;
}

.project-cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #061006;
  background: linear-gradient(135deg, #61bf31, #a9ff76);
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.36),
    0 14px 28px rgba(97,191,49,0.28);
  transition: 0.3s ease;
}

.project-cta-box a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
}

.project-cta-box a:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    0 20px 40px rgba(97,191,49,0.36);
}

.contact-form {
  scroll-margin-top: 110px;
}

.marquee.dragging {
  cursor: grabbing;
}

.marquee-card
 {
  cursor: pointer;
}

  /* Services Page */


  
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            perspective: 1000px;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #61bf31, #61bf31);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin: 0 auto 1.5rem;
            box-shadow: 0 15px 40px rgba(94, 225, 0, 0.3);
            transition: all 0.3s ease;
        }

        .card-3d:hover .service-icon {
            transform: rotateY(180deg);
        }

        .service-card h3 {
            text-align: center;
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card li {
            padding: 0.5rem 0;
            color: #d9d9d9;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-card li::before {
            content: '✓';
            color: #61bf31;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* About Page */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 3rem;
            color: #61bf31;
            margin-bottom: 1rem;
        }

       .about-text p{
    font-size:15px;
    line-height:1.75;
    color:rgba(225, 243, 227, 0.952);
    text-align:left;
    margin-bottom:14px;
    word-break:normal;
}

     /* IMAGE CONTAINER */
.about-image{
    position: relative;

    width: fit-content;
    max-width: 520px;
margin-left: 100px;
    border-radius: 32px;
    overflow: hidden;

    padding: 18px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );

    border: 1px solid rgba(0,255,136,0.15);

    box-shadow:
        0 0 30px rgba(0,255,136,0.08),
        inset 0 0 30px rgba(255,255,255,0.02);

    backdrop-filter: blur(12px);

    transition: 0.5s ease;

    animation: floatImage 5s ease-in-out infinite;
}

/* IMAGE */
.about-image img{

    display: block;

    max-width: 100%;
    height: auto;

    border-radius: 22px;

    transition: 0.6s ease;
}

/* PREMIUM OVERLAY */
.about-image::before{
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.20),
            transparent 45%
        );

    pointer-events: none;

    z-index: 1;
}

/* HOVER EFFECT */
.about-image:hover{
    transform: translateY(-10px);

    box-shadow:
        0 0 45px rgba(0,255,136,0.18),
        inset 0 0 40px rgba(255,255,255,0.03);
}

/* IMAGE ZOOM */
.about-image:hover img{
    transform: scale(1.03);
}

/* FLOAT ANIMATION */
@keyframes floatImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }
}





        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            text-align: center;
            perspective: 1000px;
        }

        .value-icon {
            font-size: 3rem;
            color: #61bf31;
            margin-bottom: 1rem;
        }

/* hide button on desktop */
.read-more-btn{
    display:none;
}







        /* Contact Page */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info h3 {
            color: #61bf31;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        /* CONTACT ITEM HOVER FIX */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .contact-item i {
            font-size: 20px;
            color: #61bf31;
            background: rgba(97, 191, 49, 0.12);
            padding: 12px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        /* SOCIAL ICON HOVER FIX */
        .contact-item .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #61bf31;
            transition: all 0.3s ease;
        }
        
        .contact-item .social-links a:hover {
            background: #61bf31;
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        .contact-form {
            background: #000000;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color:#ffffff;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #d9d9d9;
            border-radius: 10px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #000000;
            color: #ffffff;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #61bf31;
            box-shadow: 0 0 0 3px rgba(255, 159, 0, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Join DN Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: #000000;
            padding: 3rem;
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlide 0.3s ease;
            box-shadow: 0 30px 80px rgba(118, 125, 118, 0.3);
        }

        @keyframes modalSlide {
            from {
                transform: scale(0.9) translateY(-50px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: #ffffff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #61bf31;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #61bf31;
            color: white;
            transform: rotate(90deg);
        }

        .modal-content h2 {
            color: #61bf31;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .modal-content p {
            color: #d9d9d9;
            margin-bottom: 2rem;
        }
        
        .gender-options{
        display:flex;
        gap:25px;
        margin-top:10px;
        }
        
        .gender-options label{
        display:flex;
        align-items:center;
        gap:6px;
        cursor:pointer;
        }
        
        input[type="date"]{
        color:#ffffff;
        background:#000000;
        }
        
        input[type="date"]::-webkit-calendar-picker-indicator{
        filter: invert(1);
        cursor:pointer;
        }
        
        .radio-group{
        display:flex;
        gap:25px;
        margin-top:10px;
        }
        
        .radio-group label{
        display:flex;
        align-items:center;
        gap:6px;
        cursor:pointer;
        }
        
.error-text {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 5px;
    margin-left: 5px;
}

.input-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 6px rgba(255, 77, 77, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg fill='red' viewBox='0 0 24 24' width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.input-success {
    border-color: #61bf31 !important;
    box-shadow: 0 0 8px rgba(97, 191, 49, 0.4);
}
        
/* Phone group container */
.phone-group {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* Country code dropdown */
.phone-group select {
    width: 140px;
    min-width: 120px;
    background: #0a0a0a;
    color: #fff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* Phone input */
.phone-group input {
    flex: 1;
    background: #0a0a0a;
    color: #fff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

#organization-field {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Focus effect (green DN theme) */
.phone-group select:focus,
.phone-group input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

/* Error state */
.input-error {
    border-color: #ff4d4d !important;
}

/* Valid state */
.input-valid {
    border-color: #4CAF50 !important;
}

/* Checkbox container */
.checkbox-group {
    margin-top: 15px;
}

/* Align checkbox and text perfectly */
.checkbox-row {
    display: flex;
    align-items: center;   /* Vertical center */
    gap: 10px;
}

/* Checkbox */
.checkbox-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #61bf31;
    border-radius: 3px;
    background: #000;
    cursor: pointer;
    position: relative;
    margin: 0;
    top: 1px; /* Small vertical alignment fix */
}
/* Fix checkbox size (override form-group input) */
.checkbox-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 14px !important;
    height: 14px !important;
    padding: 0 !important;

    border: 2px solid #61bf31 !important;
    border-radius: 3px;
    background: #000;
    cursor: pointer;
    position: relative;
    margin: 0;
}

/* Checked */
.checkbox-row input[type="checkbox"]:checked {
    background: #61bf31;
}

/* Tick */
.checkbox-row input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    font-size: 11px;
    color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

/* Label */
.checkbox-row label {
    margin: 0;
    cursor: pointer;
    line-height: 1.2;
    font-size: 15px;
}

/* =========================
   TEXT INPUTS
========================= */
.form-group input,
.form-group textarea {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    background: #000;
    color: #fff;
}

/* =========================
   BIG DROPDOWNS
========================= */
.select-group select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    padding-right: 40px;
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    background: #000;
    color: #fff;
    appearance: none;
}

/* Custom arrow */
.select-group {
    position: relative;
}

.select-group::after {
    content: "⌄";
    position: absolute;
    right: 15px;
    top: 42px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
}

/* =========================
   PHONE GROUP
========================= */
.phone-group {
    display: flex;
    gap: 12px;
}

.error-text {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 6px;
    margin-left: 2px;
}

.phone-group select {
    width: 120px;
    height: 48px;
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    background: #000;
    color: #fff;
    padding-left: 10px;
    appearance: auto; /* Keep default arrow */
}

.phone-group input {
    flex: 1;
}

.file-upload {
    width: 100%;
}

.file-upload input[type="file"] {
    display: none;
}

.file-box {
    height: 48px;
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 110px 0 15px;
    position: relative;
}

.file-name {
    color: #aaa;
    font-size: 14px;
}

.file-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #61bf31;
    color: #fff;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
}

/* =========================
   AUTOFILL FIX (IMPORTANT)
========================= */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 0 0 1000px #000000 inset !important;
    border: 2px solid #61bf31 !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* Keep background black */
.form-group input,
.form-group textarea,
.form-group select {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Placeholder color */
::placeholder {
    color: #aaaaaa;
}


        /* Footer */
/* Smooth Sunrise Footer */
.modern-footer {
    position: relative;
    padding: 70px 20px 30px; /* reduced from 110px */
    text-align: center;
    background: #000;
    overflow: hidden;
}

/* Smooth radial sunrise glow */
.modern-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% -20%,
        rgba(97,191,49,0.95) 0%,
        rgba(97,191,49,0.75) 20%,
        rgba(97,191,49,0.45) 35%,
        rgba(97,191,49,0.2) 50%,
        rgba(0,0,0,0.85) 75%,
        #000 100%
    );
    z-index: 1;
}

/* Content above glow */
.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.footer-slogan {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Social Icons */
.footer-social {
    margin-bottom: 25px;
}

.footer-social a {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin: 0 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #61bf31;
    transform: translateY(-6px);
}

/* Contact */
.footer-contact p {
    color: #ccc;
    margin: 6px 0;
    font-size: 15px;
}

.footer-contact i {
    color: #61bf31;
    margin-right: 8px;
}

/* Bottom */
.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    color: #888;
    font-size: 14px;
}

/* Footer Buttons */
.footer-buttons {
    margin-top: 20px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    border: 1px solid rgba(97,191,49,0.3);
}

.footer-btn i {
    color: #61bf31;
}

.footer-btn:hover {
    background: #61bf31;
    color: #000;
    transform: translateY(-3px);
}

.footer-btn:hover i {
    color: #000;
}

/* WhatsApp special color */
.footer-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}


        .scroll-indicator {
            opacity: 1;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .scroll-indicator.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .nav-links i {
    margin-right: 6px;
    font-size: 14px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 1px;
}

.team-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #61bf31; /* optional brand color */
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page Social icons */
.contact-social-links {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

/* Only the circle */
.contact-social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #61bf31;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icon */
.contact-social-links a i {
    color: #61bf31;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Hover */
.contact-social-links a:hover {
    background: #61bf31;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(97, 191, 49, 0.5);
}

.contact-social-links a:hover i {
    color: #ffffff;
}

.contact-social-links a {
    position: relative;
}

/* Tooltip text */
.contact-social-links a::after {
    content: attr(data-name);
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #61bf31;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

/* Tooltip arrow */
.contact-social-links a::before {
    content: "";
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #61bf31;
    opacity: 0;
    transition: 0.3s;
}
.contact-social-links a::after {
    background: rgba(97, 191, 49, 0.9);
    backdrop-filter: blur(6px);
}

/* Show tooltip on hover */
.contact-social-links a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.contact-social-links a:hover::before {
    opacity: 1;
}

/* ========== FOUNDERS CARD ========== */
/* ========== FOUNDERS GRID ========== */
/* ========== FOUNDERS GRID ========== */
.founders-grid {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* ========== CARD ========== */
.founder-card {
    width: 280px;
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Glow under card */
.founder-card::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: rgba(97,191,49,0.25);
    filter: blur(25px);
    z-index: -1;
    transition: 0.4s;
}

/* Hover lift */
.founder-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(97,191,49,0.35);
}

.founder-card:hover::after {
    background: rgba(97,191,49,0.45);
    filter: blur(30px);
}

/* ========== FLIP ========== */
.founder-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.founder-card.flipped .founder-card-inner {
    transform: rotateY(180deg);
}

/* Front & Back */
.founder-card-front,
.founder-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 20px 40px rgba(97,191,49,0.25);
}

/* Front Image */
.founder-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.founder-card:hover .founder-card-front img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========== OVERLAY ANIMATION (SINGLE LINE ONLY) ========== */
.founder-overlay {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 85px;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Hide text initially */
.founder-overlay h3,
.founder-overlay p {
    margin: 0;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Name */
.founder-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    color: #61bf31;
    text-shadow: 0 0 10px rgba(97,191,49,0.5);
}

/* Role */
.founder-overlay p {
    font-size: 15px;
    color: white;
    margin-top: 5px;
}

/* ONLY ONE LINE under role */
.founder-overlay p::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: white;
    margin: 8px auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

/* Hover animation */
.founder-card:hover .founder-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.founder-card:hover .founder-overlay p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}

.founder-card:hover .founder-overlay p::after {
    opacity: 0.8;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* ========== BACK SIDE ========== */
.founder-card-back {
    background: #0a0a0a;
    color: white;
    transform: rotateY(180deg);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-card-back .role {
    color: #61bf31;
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-card-back .bio {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

/* Buttons */
.founder-buttons a {
    display: inline-block;
    margin: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(97,191,49,0.15);
    border: 1px solid rgba(97,191,49,0.5);
    color: #61bf31;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.founder-buttons a:hover {
    background: #61bf31;
    color: #000;
}

/* FIX: allow clicks on social links */
.team-card {
    position: relative;
}

/* Disable click blocking from 3D overlays */
.team-card::before,
.team-card::after,
.card-3d::before,
.card-3d::after {
    pointer-events: none;
}

/* Force social links above everything */
.social-links {
    position: relative;
    z-index: 999;
}

.social-links a {
    pointer-events: auto;
    cursor: pointer;
    z-index: 1000;
}
.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #61bf31;
    color: #fff;
    transform: translateY(-3px);
}

.social-links a {
    position: relative;
}

/* Tooltip */
.social-links a::after {
    content: attr(data-name);
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #61bf31;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Tooltip arrow */
.social-links a::before {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #61bf31;
    opacity: 0;
    transition: 0.3s ease;
}

/* Show on hover */
.social-links a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #61bf31;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #61bf31;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #61bf31;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(97, 191, 49, 0.4);
}

.contact-link {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: #61bf31;
    text-decoration: underline;
}

.hero-video {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Background video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;   /* ensures full video shows */
    z-index: 1;
}

/* Overlay for readability */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
      pointer-events: none;
}

/* Content */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
       display: flex;              /* change from inline-block */
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
    gap: 10px; 
}

.btn i {
    margin: 0;
    line-height: 1;
}

.btn.primary {
    background: #61bf31;
    color: #ffffff;
}

.btn.primary:hover {
    background: #ffffff;
    color: #61bf31;
}

.btn.outline {
    border: 2px solid #61bf31;
    color: #61bf31;
}

.btn.outline:hover {
    background: #61bf31;
    color: #ffffff;
}
/* ========================= */
/* CUSTOM SMALL RADIO BUTTON */
/* ========================= */

/* Hide original radio */
.gender-options input[type="radio"],
.radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border: 2px solid #61bf31;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    margin-right: 0px;
    display: inline-block;
    position: relative;
}

/* Inner fill when checked */
.gender-options input[type="radio"]:checked,
.radio-group input[type="radio"]:checked {
    background-color: #61bf31;
}

/* Layout */
.gender-options,
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.gender-options label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}
/* Hide original radio */
.radio-label input[type="radio"] {
    display: none;
}

/* Custom radio circle */
.custom-radio {
    width: 14px;
    height: 14px;
    border: 2px solid #61bf31;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 6px;
    transition: 0.2s ease;
}

/* When selected */
.radio-label input[type="radio"]:checked + .custom-radio {
    background: #61bf31;
    box-shadow: 0 0 6px rgba(97,191,49,0.6);
}

/* Layout */
.gender-options {
    display: flex;
    gap: 25px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

/* ========================= */
/* FILE UPLOAD IMPROVEMENT   */
/* ========================= */

input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #d9d9d9;
    border-radius: 10px;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #61bf31;
    box-shadow: 0 0 8px rgba(97,191,49,0.5);
}

input[type="file"]::file-selector-button {
    background: #61bf31;
    color: #fff;
    border: none;
    padding: 8px 14px;
    margin-right: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: #4ea528;
}


/* ========================= */
/* SUBMIT BUTTON HOVER       */
/* ========================= */

.btn-primary {
    background: #61bf31;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #4ea528;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(97,191,49,0.3);
}


/* ========================= */
/* SCROLLBAR FOR MODAL       */
/* ========================= */

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #111;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #61bf31;
    border-radius: 10px;
}


/* ========================= */
/* FORM INPUT HOVER EFFECT   */
/* ========================= */

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #61bf31;
}    

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #61bf31;
    box-shadow: 0 0 10px rgba(97,191,49,0.4);
} 

/* Date input dark theme */
input[type="date"] {
    background: #000;
    color: #fff;
}

/* Calendar icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Date text color */
input[type="date"]::-webkit-datetime-edit {
    color: #fff;
}

/* ===== DN PORTAL DROPDOWN ===== */
.dn-portal {
    position: relative;
    display: inline-block;
}

/* DN Portal Glass Dropdown */
.portal-menu {
    position: absolute;
    top: 55px;
    right: 0;
    padding: 15px;
    border-radius: 16px;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: none;
    flex-direction: column;
    gap: 12px;
    width: 190px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 9999;
}

.portal-menu.show {
    display: flex;
}

.portal-menu button {
    background: #61bf31;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

/* VERIFY PAGE */
#verify .feature-card {
    text-align: center;
    padding: 30px;
}

#verify .feature-card h3 {
    margin-top: 10px;
    font-size: 22px;
}

#verify .feature-card p {
    font-size: 14px;
    opacity: 0.8;
}

#verify .btn {
    margin-top: 10px;
    width: 70%;
}

#verify .feature-icon {
    font-size: 30px;
}

/* Custom Alert UI */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.custom-alert-box {
    background: #000;
    border: 2px solid #61bf31;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 320px;
    animation: popup 0.3s ease;
    box-shadow: 0 0 25px rgba(97,191,49,0.5);
}

.custom-alert-box h3 {
    color: #61bf31;
    margin-bottom: 10px;
}

.custom-alert-box p {
    color: #fff;
    margin-bottom: 20px;
}

.custom-alert-box button {
    background: #61bf31;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.custom-alert-box button:hover {
    background: #4aa521;
}

.alert-icon {
    font-size: 40px;
    color: #61bf31;
    margin-bottom: 10px;
}

@keyframes popup {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* ===== MAIN SECTION ===== */
.services-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0;
  background: #000;
  position: relative;
  min-height: 100vh;
  overflow: visible;  
   
}

/* ===== TOP CONTAINER ===== */
.top-container {
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  gap: 80px;
}

/* LEFT TITLE */
.title-box {
  width: 50%;
  height: 160px; /* LOCK HEIGHT */
  display: flex;
  align-items: flex-start;
}

.title-box h1 {
  font-size: 72px;
  font-family: var(--font-main);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  transition: all 0.4s ease;
    display: -webkit-box;
  -webkit-line-clamp: 3;  /* max 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* RIGHT CONTENT */
.content-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    max-width: 540px;
}


.content-box p {
  color: #ccc;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

/* BUTTONS FIXED SIZE */
.buttons {
  display: flex;
  gap: 12px;
   justify-content: flex-end;
}

.btn {
  display: inline-flex;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 500;
  min-width: 110px; /* LOCK WIDTH */
  text-align: center;
  transition: all 0.3s ease;
   text-decoration: none; /* remove underline */
  cursor: pointer;
}

.btn.light {
  background: transparent; /* 🔥 IMPORTANT */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  z-index: 1;
}

.btn.light:hover {
 transform: translateY(-8px);
}


.btn.green {
  background: #61bf31;
  color: #fff !important; /* force white text */
  border: none;
}
.btn:visited,
.btn:link {
  color: inherit;
}

.btn.green:hover {
  background: #61bf31; /* brighter green */

  box-shadow:
    0 0 12px rgba(34,197,94,0.6),
    0 8px 20px rgba(34,197,94,0.4);

  transform: translateY(-8px);
}



#serviceDesc{
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.729);
    text-align: left;
    text-wrap: pretty;
    margin: 0;
     max-width: 520px;
      font-family: var(--font-main);
}
/* ===== CARDS ===== */
.cards-wrapper {
  display: flex;
  gap: 25px;
  padding: 40px 0;
  overflow-x: auto;
  align-items: flex-start;
  margin-top: 20px;
   padding-bottom: 20px;
    scroll-behavior: smooth; /* 🔥 must */
  
}
.cards-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.cards-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.cards-wrapper {
  scroll-snap-type: x mandatory;
}

.card {
  scroll-snap-align: start;
}

.card {
  flex: 0 0 300px;
   width: 300px;
  height: 300px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #000;
    scroll-snap-align: start;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),  /* subtle border */
    0 10px 30px rgba(0,0,0,0.6);

    
}
.card:hover {
  transform: translateY(-20px) scale(1.03);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),   /* depth */
    0 0 25px rgba(34,197,94,0.25); /* green glow */
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.08),
    transparent 40%
  );

  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::after {
  opacity: 1;
}



/* IMAGE */
.card img {
     filter: brightness(0.95) contrast(1.05);
  width: 100%;
   transition: transform 0.4s ease;
  height: 65%;
   object-fit: cover; /* 🔥 KEY LINE */
  display: block;
  position: relative;
  z-index: 1;
   display: block;
}




.card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.image-box {
  height: 65%;
  overflow: hidden;
  position: relative;
  border-radius: 28px 28px 0 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .image-box img {
  transform: scale(1.12) translateY(-4px);
}

/* CONTENT */
.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  justify-content: space-between; /* keeps structure clean */
  align-items: flex-start;        /* left align everything */
  gap: 6px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  background: #6cc04a; /* solid green like 2nd image */
  border-radius: 0 0 28px 28px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
   z-index: 2;
}
.card-content::before {
  content: "";
  position: absolute;
  top: -0px; /* sits above green box */
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15),
    transparent
  );

  pointer-events: none;
}


.card-content h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: #ffffff;
  min-height: 42px;
  line-height: 1.4;
  font-family: var(--font-main);
  z-index: 3;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  text-shadow:
    0 1px 2px rgba(0,0,0,0.25),
    0 0 8px rgba(132,255,94,0.18),
    0 0 16px rgba(132,255,94,0.10);
}

.card-content h3{
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: text-shadow .3s ease, color .3s ease;
}

.card:hover .card-content h3{
  text-shadow:
    0 0 8px rgba(132,255,94,0.22),
    0 0 18px rgba(132,255,94,0.12);
}

/* HOVER */
.card:hover {
  transform: translateY(-20px) scale(1.02);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.5);
}

.card-content button {
  align-self: flex-end;

  padding: 10px 22px;
  border-radius: 30px;
  border: none;
z-index: 3;
  background: #ffffff;
  color: #000;
 margin-top: auto; 
  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;
  transition: all 0.3s ease;
}
.card-content button:hover {
  background: #000;
  color: #fff;

  transform: translateY(-4px); /* slight lift */
}


/* CONTAINER */
.scroll-controls {
  position: absolute;
  bottom: 140px; /* adjust based on your layout */
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none; /* allow card hover */
  top: 70%; /* center vertically */
  left: 0;
  z-index: 999; /* 🔥 bring above cards */
  pointer-events: none;
transform: translateY(-50%);
}

/* BUTTON */
.scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;

  background: #000;
  color: #fff;

  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: auto;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* HOVER */
.scroll-btn:hover {
  transform: scale(1.1);
  background: #61bf31;
}
.scroll-btn.left {
  display: none; /* 🔥 hidden at first */
}
/* ACTIVE CLICK */
.scroll-btn:active {
  transform: scale(0.95);
}

/* POSITION */
.scroll-btn.left {
  position: absolute;
  left: 20px;
}

.scroll-btn.right {
  position: absolute;
  right: 20px;
}




/* =========================
   LEARN MORE / PROJECT VIEW
========================= */
.project-view {
  position: fixed;     /* 🔥 FULL SCREEN LOCK */
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;    /* 🔥 ENABLE SCROLL INSIDE */
  background: #000;
  z-index: 9999;
  display: none;
}

.project-view.active {
  display: block;
}

/* HIDE SCROLLBAR (PROJECT VIEW ONLY) */
.project-view {
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE / Edge */
}

.project-view::-webkit-scrollbar {
  display: none;               /* Chrome, Safari */
}

/* HERO */
.pv-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: block;
  flex-direction: column;
  justify-content: flex-end;
  
}



.pv-hero::after {
  height: 250px;
}

/* IMAGE AREA */
.pv-image-area {
  position: relative;
  width: 85%;              /* 🔥 GAP FROM SIDES */
  height: 75vh;
  margin: 0 auto;          /* center */
  overflow: visible;
  border-radius: 20px;  
}





/* IMAGE */
.pv-image-area img {
   width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 IMPORTANT */
  z-index: 4;
}




/* WRAPPER = EXACT IMAGE SIZE */
.pv-image-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

/* IMAGE */
.pv-image-wrapper img {
  width: 100%;
  height: 70vh;
  object-fit: contain;
  display: block;
  z-index: 2;
}

/* LEFT FADE */
.pv-left-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to right,
   rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.95) 10%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.12) 80%,
    rgba(0,0,0,0.05) 90%,
    transparent 100%
  );

}

/* RIGHT FADE */
.pv-right-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to left,
      rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.95) 10%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.12) 80%,
    rgba(0,0,0,0.05) 90%,
    transparent 100%
  );

}

/* FIX YOUR BOTTOM FADE */
.pv-bottom-fade {
  position: absolute;
  bottom: 0;   /* 🔥 FIXED */
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 3;
  pointer-events: none;

   background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.95) 10%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.12) 80%,
    rgba(0,0,0,0.05) 90%,
    transparent 100%
  );
}

/* TEXT */
.pv-hero-content {
  position: absolute;
  bottom: 90px;
  width: 100%;
}

.pv-hero-inner {
  max-width: 1100px;
text-align: left;
 
 margin-left: clamp(40px, 6vw, 120px);
  transform: translateX(10px) translateY(2px);

  padding-right: auto;
}



.pv-hero-content h1 {
  font-size: 45px;
  line-height: 1.15;
text-wrap: balance; /* 🔥 BALANCE LINES */
  max-width: 640px;

  /* ✅ THIS IS THE FIX */
  word-break: normal;        /* ❌ stop breaking words */
  overflow-wrap: normal;     /* ❌ stop random breaking */
  white-space: normal;

  /* premium spacing */
  letter-spacing: -0.3px;
}



/* prepare letters */
.pv-hero-content h1 span,
.pv-hero-content span span {
    display: inline-block;
    width: auto;   /* needed for animation */
  margin-top: 0;
  font: inherit;           /* 🔥 VERY IMPORTANT */
  letter-spacing: inherit; /* keep original spacing */
  line-height: inherit;    /* keep original height */
 white-space: normal; /* allow wrapping */
  transform: translateY(8px);
  opacity: 0;
  filter: blur(6px);
}

/* animate */
.project-view.active .pv-hero-content span span,
.project-view.active .pv-hero-content h1 span {
  animation: letterReveal 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* keyframes */
@keyframes letterReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }

  60% {
    opacity: 1;
    transform: translateY(-2px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}






.pv-hero-content h1 {
  font-size: 48px;

}

#pvCategory {
  color: #5ce01b;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
opacity: 1;
filter: none;
transform: none;
  border: 1px solid rgba(100, 228, 36, 0.603);
  padding: 2px 8px;
  border-radius: 20px;

  display: inline-block;
  margin-top: 10px;

}

#pvCategory span {
  opacity: 1 !important;     /* 🔥 override animation fade */
  filter: none !important;   /* remove blur */
}

#pvTitle {
  color: #ffffff;   /* or gradient */
}

.pv-section {
  padding-top: 40px;
   margin-bottom: 60px;
}

/* SCROLL */
.pv-scroll {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: #61bf31;
  text-align: center;
  z-index: 10;

  animation: floatScroll 1.5s infinite;
}

/* visibility control (DO NOT TOUCH YOUR ORIGINAL CSS) */
.pv-scroll.hide {
  opacity: 0;
  pointer-events: none;
}

.pv-scroll p {
  margin-bottom: 6px;
}

/* DOUBLE ARROW */
.pv-scroll .arrow::before,
.pv-scroll .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #61bf31;
  border-bottom: 2px solid #61bf31;
  transform: rotate(-45deg);
  margin: 3px auto;
  animation: arrowMove 1.2s infinite;
}

.pv-scroll .arrow::after {
  animation-delay: 0.3s;
}

@keyframes floatScroll {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
  100% { transform: translate(-50%, 0); }
}

@keyframes arrowMove {
  0% { opacity: 0; transform: translateY(0) rotate(-45deg); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px) rotate(-45deg); }
}

/* BACK BUTTON (LIKE YOUR IMAGE) */
.pv-back {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.093);
  backdrop-filter: blur(10px);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;

  transition: 0.3s;
}

.pv-back:hover {
  background: rgba(0, 255, 8, 0.682);
}

.pv-particles {
  position: absolute;
   top: 0;         /* 🔥 FULL HEIGHT */
  bottom: 0;
  width: 160px;      /* 🔥 side width */
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  height: 100%;
}

.pv-particles.left {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.pv-particles.right {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}
/* LASER LINES */
.pv-particles span {
  position: absolute;

  width: 40px;          /* thin line */
  height: 2px;        /* length of beam */

  background: linear-gradient(
    to bottom,
    transparent,
    #50f100,
    transparent
  );

  opacity: 0.8;

  filter: blur(0.6px);

  transform: rotate(10deg); /* slight angle */

  border-radius: 2px;
}

/* LEFT FLOW */
.pv-particles.left span {
  animation: laserLeft 3.5s linear infinite;
}

/* RIGHT FLOW */
.pv-particles.right span {
  animation: laserRight 3.5s linear infinite;
}

/* ANIMATION */
/* HORIZONTAL LASER FLOW */

/* LEFT SIDE (moves → outward) */
@keyframes laserLeft {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0;
  }

  20% { opacity: 1; }

  100% {
    transform: translateX(-160px) translateY(0);
    opacity: 0;
  }
}

/* RIGHT SIDE (moves ← outward) */
@keyframes laserRight {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0;
  }

  20% { opacity: 1; }

  100% {
    transform: translateX(160px) translateY(0);
    opacity: 0;
  }
}

/* LEFT */
.pv-particles.left span {
  animation: blowLeft 4s linear infinite;
  opacity: 0;
}

.pv-particles.right span {
  animation: blowRight 4s linear infinite;
  opacity: 0;
}

@keyframes blowLeft {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(-140px);
    opacity: 0;
  }
}

@keyframes blowRight {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(140px);
    opacity: 0;
  }
}


/* ===== PROJECT ABOUT SECTION ===== */

.pv-row {
  display: flex;
  max-width: 1100px;
  margin: 80px auto;   /* 🔥 reduced */
  padding: 0 40px;
}

.pv-about-text {
  font-size: 22px;   /* 🔥 bigger */
  line-height: 1.8;
  max-width: 650px;
  color: #dcdcdc;
}

.pv-block h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.pv-block ul li {
  font-size: 18px;
  margin-bottom: 6px;
}

.pv-row.left {
  justify-content: flex-start;
  text-align: left;
}

.pv-row.right {
  justify-content: flex-end;
  text-align: right;
}

.pv-row.center {
  justify-content: center;
  text-align: center;
}

.pv-block {
  max-width: 450px;
}

/* Prevent text vibration on scroll reveal */
.section-header,
.section-header h2,
.section-header p {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.feature-card.reveal {
   transition-delay: 0.05s;
}

.pv-row.left.reveal {
  transform: translateX(-80px);
}

.pv-row.right.reveal {
  transform: translateX(80px);
}

.pv-row.left.reveal.active,
.pv-row.right.reveal.active {
  transform: translateX(0);
}







.reveal.active .highlight::after {
  transform: scaleX(1);
}



.pv-impact-box p {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.5;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: 0.8s ease;
}

.reveal.active .pv-impact-box p {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.pv-testimonial-box {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
   max-width: 600px;
  padding: 35px;
  border-radius: 18px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  text-align: center;
  transition: 0.4s;
}

.reveal.active .pv-testimonial-box {
  opacity: 1;
  transform: translateY(0);
}

.pv-testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.pv-stars {
  color: #61bf31;
  font-size: 18px;
  margin-bottom: 10px;
}

.pv-feedback {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.pv-client {
  display: block;
  margin-top: 12px;
  color: #61bf31;
}


#pvLink {
  text-decoration: none;   /* remove underline */
  position: relative;
  padding: 16px 40px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.752);
  color: black;
  font-weight: 600;

  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  transition: 0.4s;
}





#pvLink {
  box-shadow: 0 0 0 rgb(96, 191, 49);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(94, 215, 34, 0.544); }
  50% { box-shadow: 0 0 20px rgba(96, 191, 49, 0.762); }
  100% { box-shadow: 0 0 0 rgb(96, 191, 49); }
}
/* glow border */
#pvLink::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;

  background: linear-gradient(90deg, #61bf31, transparent, #61bf31);
  opacity: 0;
  transition: 0.4s;
}

#pvLink:hover::before {
  opacity: 1;
}

/* fill */
#pvLink::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #61bf31;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
  z-index: 0;
}

#pvLink span {
  position: relative;
  z-index: 1;
}

#pvLink:hover::after {
  transform: scaleX(1);
}

#pvLink:hover {
  color: #000;
  transform: translateY(-4px);
}

#pvTools span {
  display: inline-block;
  margin: 6px 8px 0 0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}






.pv-content {
  margin-top: 60px;
}

.pv-heading {
  font-family: var(--font-main);
  font-size: 48px;
  color: #61bf31;
  margin-bottom: 20px;
}

.pv-para {
  font-family: var(--font-main);
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
}

/* TECH */
.pv-tech {
  margin-top: 60px;
}



.pv-right ul {
  list-style: none;
  margin-top: 20px;
}

.pv-right li {
  font-family: var(--font-main);
  font-size: 18px;
  color: #ccc;
  margin-bottom: 10px;
}


/* TESTIMONIAL */
#pvTestimonialSection .pv-testimonial-box {
  background: #071a07;
  border: 1px solid rgba(97,191,49,0.4);
  border-radius: 20px;
  padding: 40px;
  width: 420px;
}

/* BUTTON */
.pv-actions {
  margin-top: 40px;
}


.project-view {
  scroll-snap-type: y mandatory;
}



.project-view {
  scroll-snap-type: y mandatory;
}



.pv-row {
  max-width: 1100px;
  margin: 60px auto;
}


.pv-block h2,
.pv-label {
  color: #61bf31;
  font-family: var(--font-main);
  letter-spacing: 1px;
  font-size: 45px;
}

.pv-about-text {
  font-family: var(--font-main);
}

.pv-hero {
  min-height: 100vh;
  position: relative;
}











.pv-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* LEFT SPACE | RIGHT SPACE */
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 60px;
}

.pv-row.left .pv-about,
.pv-row.left .pv-block {
  grid-column: 1;
  justify-self: start;
  max-width: 520px;
}

.pv-row.right .pv-block {
  grid-column: 2;
  justify-self: end;
  text-align: right;
  max-width: 520px;
}

.pv-row.center {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}

.pv-row.left {
  padding-left: 20px;
}

.pv-row.right {
  padding-right: 20px;
}

.pv-row {
  column-gap: 200px; /* 🔥 THIS CREATES EMPTY CENTER SPACE */
}

.pv-about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #dcdcdc;
}




.pv-page {
  align-items: unset;
  text-align: unset;
}

#pvWork {
  list-style: none !important;
  padding-left: 0;
  margin: 0;
}

#pvWork li {
  list-style: none !important;
}

/* extra safety */
#pvWork li::marker {
  content: "";
}

.pv-actions {
  margin-top: 10px;     /* reduce gap above button */
}

.pv-row.center:last-child {
  margin-top: 40px;     /* bring button upward */
  margin-bottom: 20px;  /* reduce bottom space */
}

.pv-actions {
  margin-top: 25px;
  
}



.pv-btn-row {
  margin-top:0px;   /* space below testimonial */
}

.pv-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}



/* ===== CUSTOM CURSOR ===== */

.custom-cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(97,191,49,0.9);

  pointer-events: none;
  z-index: 10000;

  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;

  box-shadow:
    0 0 12px rgba(97,191,49,0.8),
    0 0 25px rgba(97,191,49,0.5),
    0 0 45px rgba(97,191,49,0.3);
}

/* BIG GLOW (hover interactive elements) */
.custom-cursor.active {
  transform: translate(-50%, -50%) scale(2.2);
  background: rgb(249, 249, 249);
}

/* HIDE DEFAULT CURSOR INSIDE MODAL */
.project-view.active {
  cursor: none;
}

.project-view.active * {
  cursor: none;
}




/* ===== Mobile Responsive ===== */

/* ============================= */
/* PREMIUM MOBILE NAVBAR */
/* ============================= */



/* hide full FAB system on desktop by default */
.mobile-fab,
.fab-menu,
.fab-submenu{
display:none;
}

/* Hide by default */
.cta-advanced {
  display: none;
}

/* Show only on touch devices */
@media (pointer: coarse) {
  .cta-advanced {
    display: block;
  }
}
/* MOBILE ONLY */
@media (max-width: 768px) {

  .navbar{
    height: 72px;
    padding: 0 18px;
    background: transparent !important;
}



    header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
 border-bottom: none;
     background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

 .logo img{
    height: 34px;
    transition: opacity .35s ease, transform .35s ease;
}

    /* Hide Desktop Items */
    .nav-center,
    .nav-right {
        display: none !important;
    }






    /* Links */
    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-top: 40px;
    }

    .mobile-links a {
        color: white;
        text-decoration: none;
        font-size: 30px;
        font-weight: 600;
        letter-spacing: -0.5px;
        transition: 0.3s ease;
    }

    .mobile-links a:hover {
        color: #61bf31;
        padding-left: 8px;
    }

    /* Bottom Button */
    .mobile-bottom {
        margin-bottom: 30px;
    }

    .mobile-portal-btn {
        width: 100%;
        height: 54px;
        border: none;
        border-radius: 50px;
        background: #61bf31;
        color: white;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
    }

    body.menu-open{
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}

/* Hero fixed to screen only */
.hero-video{
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    overflow: hidden;
}

.hero,
.hero-content{
    height: 100%;
}

.bg-video{
    width: auto;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
}


/* Default mobile */
.pv-scroll{
    bottom: 20px !important;
    z-index: 50;
}


.mobile-bottom{
    margin-top: auto;
    padding-bottom: 20px;
}

.mobile-portal-wrap{
    position: relative;
}

.mobile-portal-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:50px;
    background:#61bf31;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.mobile-portal-btn span{
    font-size:14px;
}

/* Premium Popup */
.mobile-portal-popup{
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 68px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 10px;
    border-radius: 24px;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(.96);
    transition: .35s ease;

    z-index: 999999;
}
.mobile-portal-popup.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

.mobile-portal-popup button{
    width: calc(100% - 54px);
    margin: 0 auto;

    height: 48px;
    border: none;
    border-radius: 18px;
    background: #111;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: .25s ease;
}

.mobile-portal-popup button:hover{
    background:#61bf31;
    color:#000;
}



/* ========================= */
/* HERO CONTENT PERFECT CENTER */
/* ========================= */

.hero-video,
.hero-section,
.page-hero,
.hero {
    position: relative;
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden;
}

/* Center content */
.hero-content,
.hero-text,
.hero-overlay,
.hero-inner,
.pv-content {
    position: absolute !important;
    top:80%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 90%;
    max-width: 420px;

    text-align: center;
    z-index: 5;
}

/* Better spacing inside content */
.hero-content h1,
.hero-text h1,
.pv-content h1
.hero h1{
  font-size: 58px;        /* adjust if needed */
    line-height: 1.02;      /* main fix */
    letter-spacing: -1px;
    margin: 0 0 12px 0;
    padding: 0;
}

.hero-content p,
.hero-text p,
.pv-content p{
    margin-bottom: 20px;
   
}

/* Buttons row center */
.hero-buttons,
.cta-buttons,
.hero-content .buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}





/* what we deliver cards design */

.features-grid{
    display:flex !important;
    flex-direction:column;
    gap:14px;
    padding:0 18px 20px;
}

/* Card */
.feature-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;

    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;

    padding:22px 18px;
    gap:14px;

    text-align:left !important;
    position:relative;
}

/* Slight premium hover */

/* icon */
.feature-icon{
    width:58px;
    height:58px;
    margin:0 !important;
}


/* heading */
.feature-card h3{
    font-size:28px;
    line-height:1.12;
    margin:0;
    text-align:left !important;
    max-width:100%;
}

/* paragraph */
.feature-card p{
    font-size:15px;
    line-height:1.65;
    opacity:.82;
    margin:0;
    text-align:left !important;
}


/* Section heading */
.section-header{
    padding:60px 18px 26px;
}

.section-header h2{
    font-size:40px;
    line-height:1.05;
    margin-bottom:14px;
}

.section-header p{
    font-size:16px;
    line-height:1.6;
    max-width:340px;
    margin:auto;
    opacity:.85;
}

/* arrow bottom right */
.feature-card::after{
    content:"↗";
    position:absolute;
    right:18px;
    bottom:16px;
    font-size:20px;
    color:#61bf31;
}

/* Optional separator glow */
.feature-card::after{
    content:'›';
    margin-left:auto;
    align-self:center;
    font-size:26px;
    color:#61bf31;
    opacity:.8;
}



/* Section */
.impact{
    padding:70px 18px;
    text-align:center;
}

.impact h2{
    font-size:40px;
    line-height:1.05;
    margin-bottom:12px;
}

.impact > p{
    font-size:15px;
    line-height:1.6;
    opacity:.75;
    max-width:320px;
    margin:0 auto 34px;
}

/* Grid */
.impact-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

/* Cards */
.impact-box{
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;
    padding:24px 14px;
    min-height:150px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* Numbers */
.impact-box h3{
    font-size:34px;
    line-height:1;
    margin:0 0 10px;
    font-weight:800;
    color:#61bf31;
    letter-spacing:-1px;
}

/* Labels */
.impact-box p{
    font-size:14px;
    line-height:1.45;
    opacity:.86;
    margin:0;
}

/* subtle active tap */
.feature-card.pressed,
.impact-box.pressed{
    border-color:#61bf31;
    transform:scale(.985);
}


/* =========================
   FOOTER BUTTON LAYOUT
========================= */

.footer-buttons{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:16px 18px;                 /* premium spacing */
    width:100%;
    max-width:330px;              /* balanced width */
    margin:28px auto 0;
    justify-content:center;
    align-items:center;
}

/* TOP TWO BUTTONS */
.footer-btn{
    width:100%;
    height:48px;                  /* same box size */
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    border-radius:28px;
    margin:0;
    box-sizing:border-box;

    font-weight:600;
    letter-spacing:.2px;
    border:1px solid rgba(97,191,49,.22);

    text-align:center;
}

/* WHATSAPP BUTTON */
.footer-btn.whatsapp{
    grid-column:1 / -1;           /* full row */
    width:150px;                  /* centered premium size */
    height:48px;
    margin:8px auto 0;           /* top gap + center */

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    background:rgba(37,211,102,.10);
    border:1px solid rgba(37,211,102,.38);
    font-weight:700;
    padding:0 18px;
}

.modern-footer::before{
content:"";
position:absolute;
inset:0;
z-index:1;

background:
radial-gradient(
ellipse at center top,
rgba(97,191,49,0.24) 0%,
rgba(97,191,49,0.18) 16%,
rgba(97,191,49,0.13) 32%,
rgba(97,191,49,0.09) 48%,
rgba(97,191,49,0.06) 62%,
rgba(97,191,49,0.04) 76%,
rgba(97,191,49,0.02) 88%,
rgba(0,0,0,0) 100%
);

filter: blur(24px);
opacity:.96;
}


/* MAIN ABOUT SECTION */
.about-content{
    display:flex !important;
    flex-direction:column;
    gap:28px;
    padding:110px 22px 40px;
    align-items:flex-start;
}

/* HIDE EMPTY IMAGE IF BAD LOOKING */
.about-image{
    display:none;
}

/* TEXT BLOCK */
.about-text{
    width:100%;
    background: linear-gradient(180deg,#050505,#0a0a0a);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:26px;
    padding:28px 22px;
    box-shadow:
      0 10px 30px rgba(0,0,0,.55),
      0 0 0 1px rgba(97,191,49,.08);
}

/* TITLE */
.about-text h3{
    font-size:44px !important;
    line-height:1.08;
    font-weight:800;
    color:#61bf31;
    margin-bottom:18px;
    letter-spacing:-1px;
    max-width:220px;
}

/* PARAGRAPH */
.about-text p{
    font-size:16px;
    line-height:1.95;
    color:rgba(255,255,255,.88);
    text-align:left;
    margin-bottom:14px;
    word-break:normal;
}

/* STRONG WORDS IF ANY */
.about-text b,
.about-text strong{
    color:#61bf31;
    font-weight:00;
}

/* PREMIUM LEFT LINE */
.about-text::before{
    content:"";
    display:block;
    width:55px;
    height:4px;
    border-radius:20px;
    background:#61bf31;
    margin-bottom:22px;
}

/* VALUES SECTION */
.values-grid{
    grid-template-columns:1fr !important;
    gap:18px;
    margin-top:10px;
    padding:0 22px 50px;
}

/* VALUE CARD */
.value-card{
    background:#0a0a0a;
    border-radius:22px;
    padding:26px 18px;
    border:1px solid rgba(255,255,255,.05);
}

/* ICON */
.value-icon{
    font-size:42px !important;
    margin-bottom:16px;
    color:#61bf31;
}

/* VALUE TITLE */
.value-card h3{
    font-size:26px;
    color:#fff;
    margin-bottom:10px;
}

/* VALUE TEXT */
.value-card p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.82);
}

/* SECTION HEADER */
.section-header{
    padding:0 18px;
    margin-bottom:28px;
}

.section-header h2{
    font-size:42px !important;
    line-height:1.1;
}

.section-header p{
    font-size:15px;
    line-height:1.7;
    max-width:100%;
}



/* =========================
   MOBILE FLOATING NAV
========================= */

.mobile-fab{
position:fixed;
top:18px;
right:14px;
z-index:99999;
display:block;
}

/* Hamburger */
#fabToggle{
width:56px;
height:56px;
border:none;
outline:none;
cursor:pointer;
border-radius:18px;
background:rgba(10,10,10,.68);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border:1px solid rgba(255,255,255,.08);
color:#fff;
font-size:20px;
box-shadow:0 12px 30px rgba(0,0,0,.45);
transition:.35s ease;
}

.mobile-fab.active #fabToggle{
transform:rotate(90deg);
border-color:rgba(97,191,49,.55);
}

/* MENU */
.fab-menu{
position:absolute;
top:70px;
right:0;
display:flex;
flex-direction:column;
gap:12px;

opacity:0;
pointer-events:none;
transform:translateY(-8px) scale(.96);
transition:.35s ease;
}

.mobile-fab.active .fab-menu{
opacity:1;
pointer-events:auto;
transform:translateY(0) scale(1);
display:flex;
}

/* ROW */
.fab-menu a,
.fab-portal{
width:auto;
min-width:100px;
height:50px;
padding:0 8px 0 14px;
border:none;
outline:none;
text-decoration:none;
cursor:pointer;

display:flex;
align-items:center;
justify-content:space-between;
gap:20px;

border-radius:18px;

background:rgba(12,12,12,.74);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.07);
box-shadow:0 10px 24px rgba(0,0,0,.45);

transition:.28s ease;
}

/* LABEL */
.fab-label{
display:block;
font-family: var(--font-main);
font-size:13px;
font-weight:600;
letter-spacing:.15px;
color:rgba(255,255,255,.88);
}

/* ICON */
.fab-menu a i,
.fab-portal i{
width:38px;
height:38px;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,.08);
color:#fff;
font-size:15px;
transition:.28s ease;
}

/* Hover */
.fab-menu a:hover,
.fab-portal:hover{
transform:translateX(-6px);
border-color:rgba(97,191,49,.28);
}

.fab-menu a:hover i,
.fab-portal:hover i{
background:#61bf31;
color:#000;
}

/* ACTIVE PAGE */
.fab-menu a.active-fab{
border-color:rgba(97,191,49,.55);
box-shadow:
0 0 0 1px rgba(97,191,49,.22),
0 10px 26px rgba(97,191,49,.18);
}

.fab-menu a.active-fab .fab-label{
color:#fff;
}

.fab-menu a.active-fab i{
background:#61bf31;
color:#000;
box-shadow:0 0 18px rgba(97,191,49,.55);
}

/* Portal subtle premium */
.fab-portal{
border-color:rgba(97,191,49,.28);
}

/* =========================
   DN PORTAL DROPDOWN PANEL
========================= */

.fab-submenu{
display:none;
position:absolute;

top:50%;
right:100%;
margin-right:12px;

transform:translateY(-50%) scale(.96);
transform-origin:right center;

flex-direction:column;
gap:10px;

/* ✅ KEY FIXES */
width:max-content;        /* auto width based on content */
min-width:190px;         /* base size */
max-width:260px;         /* allow expansion */

height:auto;             /* auto height */
max-height:70vh;         /* responsive limit */
overflow-y:auto;         /* scroll when needed */

padding:14px;
border-radius:20px;

background:rgba(12,12,12,.78);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);
box-shadow:0 18px 45px rgba(0,0,0,.45);

scrollbar-width:none;
}

.fab-submenu::-webkit-scrollbar{
display:none;
}

.fab-submenu.show{
display:flex;
animation:submenuFade .28s ease;
display:flex;
opacity:1;
transform:translateY(-50%) scale(1);
transition:.28s ease;
}

.fab-submenu a{
width:100%;
min-height:42px;
padding:0 16px;

display:flex;
align-items:center;
justify-content:space-between;
gap:12px;

border-radius:14px;
text-decoration:none;

background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.04);

font-size:13px;
font-weight:600;
color:#ffffff;

transition:.25s ease;
}

.fab-submenu a i{
font-size:12px;
opacity:.7;
}

.fab-submenu a:hover{
transform:translateX(-4px);
border-color:rgba(97,191,49,.35);
background:rgba(97,191,49,.08);
}



/* stagger animation */
.mobile-fab.active .fab-menu a,
.mobile-fab.active .fab-menu .fab-portal{
animation:fabRise .35s ease both;
}

.mobile-fab.active .fab-menu a:nth-child(1){animation-delay:.02s;}
.mobile-fab.active .fab-menu a:nth-child(2){animation-delay:.05s;}
.mobile-fab.active .fab-menu a:nth-child(3){animation-delay:.08s;}
.mobile-fab.active .fab-menu a:nth-child(4){animation-delay:.11s;}
.mobile-fab.active .fab-menu a:nth-child(5){animation-delay:.14s;}
.mobile-fab.active .fab-menu a:nth-child(6){animation-delay:.17s;}
.mobile-fab.active .fab-menu .fab-portal{animation-delay:.20s;}

@keyframes fabRise{
from{
opacity:0;
transform:translateY(-10px);
}
to{
opacity:1;
transform:translateY(0);
}
}





}

/* PROJECT SECTION MOBILE */
@media (max-width: 768px) {
  .projects-section {
    padding: 50px 14px 70px;
    min-height: auto;
  }

  /* Filter bars in one straight line */
  .project-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 25px;
    scrollbar-width: none;
  }

  .project-tabs::-webkit-scrollbar {
    display: none;
  }

  .project-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 22px;
  }

  /* ALL category cards smaller */
  .all-section {
    margin-top: 10px;
  }

  .marquee {
    overflow: hidden;
    margin-bottom: 16px;
    scrollbar-width: none;
  }

  .marquee::-webkit-scrollbar {
    display: none;
  }

  .marquee-track {
    gap: 12px;
  }

  .marquee-top .marquee-track {
    animation: scrollLeft 34s linear infinite !important;
  }

  .marquee-bottom .marquee-track {
    animation: scrollRight 34s linear infinite !important;
  }

  .marquee-card {
    min-width: 170px;
    height: 122px;
    border-radius: 14px;
  }

  .marquee-content {
    left: 9px;
    bottom: 9px;
    right: 9px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .marquee-content h4 {
    display: -webkit-box !important;
    max-width: 100%;
    min-height: 0;
    color: #fff;
    font-size: 12.5px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .learn-more,
  .projects-grid .learn-btn {
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    min-height: 21px;
    height: 21px;
    padding: 0 6px 0 8px;
    border-radius: 999px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 1 !important;
    visibility: visible !important;
    color: rgba(245,255,241,0.96);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
      rgba(8, 11, 8, 0.62);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(16px) saturate(1.35);
    -webkit-backdrop-filter: blur(16px) saturate(1.35);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(97,191,49,0.16),
      0 7px 18px rgba(0,0,0,0.36),
      0 0 0 1px rgba(97,191,49,0.08);
    font-family: var(--font-main);
    font-size: 7.7px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    position: relative;
    z-index: 4;
  }

  .learn-more::after,
  .projects-grid .learn-btn span::after {
    content: "\f061";
    width: 13px;
    height: 13px;
    margin-left: 7px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 6px;
    color: #061006;
    background: linear-gradient(135deg, #8ff45c, #61bf31);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.45),
      0 0 10px rgba(97,191,49,0.28);
  }

  .projects-grid .learn-btn span {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
  }

  .project-card:hover,
  .projects-grid .project-card:hover {
    transform: none;
    box-shadow: none;
  }

  .project-card:hover .learn-btn,
  .marquee-card:hover .learn-more,
  .projects-grid .project-card:hover .learn-btn {
    color: rgba(245,255,241,0.96);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
      rgba(8, 11, 8, 0.62);
    border-color: rgba(255,255,255,0.20);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(97,191,49,0.16),
      0 7px 18px rgba(0,0,0,0.36),
      0 0 0 1px rgba(97,191,49,0.08);
    transform: none;
  }

  

  

  /* Other categories: 2 column cards */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project-card {
    border-radius: 12px;
  }

  .project-image {
    height: 146px;
  }

  .projects-grid .project-image .overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.62) 35%,
      rgba(0,0,0,0.22) 68%,
      transparent 100%
    );
  }

  .projects-grid .project-info {
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: 100%;
    padding: 0 9px 9px !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    gap: 5px;
    text-align: left !important;
    z-index: 3;
  }

  .projects-grid .project-info h3 {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0;
    color: #fff;
    font-family: var(--font-main);
    font-size: 10.8px;
    font-weight: 720;
    line-height: 1.22;
    letter-spacing: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .projects-grid .learn-btn {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    margin: 0 !important;
    transform: none !important;
  }

  #projectsGrid .project-card .project-info .learn-btn {
    display: inline-flex !important;
    width: fit-content !important;
    height: 21px !important;
    min-height: 21px !important;
    padding: 0 6px 0 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: rgba(245,255,241,0.96) !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
      rgba(8, 11, 8, 0.62) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    border-radius: 999px !important;
    backdrop-filter: blur(16px) saturate(1.35);
    -webkit-backdrop-filter: blur(16px) saturate(1.35);
    font-family: var(--font-main) !important;
    font-size: 7.7px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    letter-spacing: 0.48px !important;
    text-transform: uppercase !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(97,191,49,0.16),
      0 7px 18px rgba(0,0,0,0.36),
      0 0 0 1px rgba(97,191,49,0.08) !important;
  }

  #projectsGrid .project-card .project-info::after {
    content: none !important;
    display: none !important;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    height: 21px;
    min-height: 21px;
    margin: 0;
    padding: 0 25px 0 8px;
    border-radius: 999px;
    color: rgba(245,255,241,0.96);
    background:
      radial-gradient(circle at calc(100% - 11px) 50%, #8ff45c 0 6px, #61bf31 7px, transparent 7.5px),
      linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
      rgba(8, 11, 8, 0.62);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(16px) saturate(1.35);
    -webkit-backdrop-filter: blur(16px) saturate(1.35);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(97,191,49,0.16),
      0 7px 18px rgba(0,0,0,0.36),
      0 0 0 1px rgba(97,191,49,0.08);
    font-family: var(--font-main);
    font-size: 7.7px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  #projectsGrid .project-card .project-info::before {
    content: none !important;
    display: none !important;
    position: absolute;
    left: 74px;
    bottom: 13px;
    z-index: 5;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #061006;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 6px;
    pointer-events: none;
  }




  .project-image {
    height: 132px;
  }

  .marquee-card {
    min-width: 156px;
    height: 114px;
  }

  .projects-grid {
    gap: 10px;
  }

  .learn-more,
  .projects-grid .learn-btn {
    height: 20px;
    min-height: 20px;
    padding: 0 6px 0 7px;
    font-size: 7.1px;
  }

  #projectsGrid .project-card .project-info::after {
    content: none !important;
    display: none !important;
  }

  #projectsGrid .project-card .project-info::before {
    content: none !important;
    display: none !important;
  }

  #projectsGrid .project-card .project-info .learn-btn {
    height: 20px !important;
    min-height: 20px !important;
    padding: 0 6px 0 8px !important;
    font-size: 7.1px !important;
  }

  #projectsGrid .project-card .project-info .learn-btn span::after {
    margin-left: 6px;
    width: 12px;
    height: 12px;
  }

  .projects-grid .project-info h3 {
    font-size: 10.2px;
  }


/* ========================= */
/* 🔥 ADVANCED CTA */
/* ========================= */

.cta-advanced {
  position: relative;
  max-width: 380px;
  margin: 50px auto;
  padding: 30px 20px;

  border-radius: 24px;
  overflow: hidden;

  background: #050805;
  border: 1px solid rgba(97,191,49,0.25);

  text-align: center;
}

/* Glow background */
.cta-glow {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 140%;

  background: radial-gradient(circle, rgba(97,191,49,0.25), transparent 70%);
  filter: blur(60px);

  z-index: 0;
}

/* Badge */
.cta-badge {
  position: relative;
  z-index: 2;

  font-size: 10px;
  letter-spacing: 1.5px;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(97,191,49,0.15);
  color: #7df24a;
}

/* Small heading */
.cta-title {
  position: relative;
  z-index: 2;

  margin-top: 14px;
  font-size: 20px;
  font-weight: 500;

  opacity: 0.9;
}

/* BIG TEXT (THIS IS THE GAME CHANGER) */
.cta-highlight {
  position: relative;
  z-index: 2;

  font-size: 32px;
  font-weight: 800;

  margin-top: 6px;

  background: linear-gradient(135deg, #61bf31, #a9ff76);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.cta-sub {
  position: relative;
  z-index: 2;

  font-size: 13px;
  margin: 14px 0 24px;

  opacity: 0.75;
  line-height: 1.6;
}

/* Button */
/* ========================= */
/* 🔥 IMPROVED CTA BUTTON */
/* ========================= */

.cta-button {
  position: relative;
  z-index: 2;

  display: inline-flex; /* 🔥 important */
  align-items: center;
  gap: 10px; /* 🔥 controlled spacing */

  height: 54px;
  padding: 0 12px 0 22px; /* balanced padding */

  border-radius: 999px;
  text-decoration: none;

  background: linear-gradient(135deg, #61bf31, #a9ff76);

  box-shadow: 0 15px 35px rgba(97,191,49,0.35);

  transition: all 0.25s ease;
}
/* TEXT */
.cta-text {
  font-size: 15px;
  font-weight: 700;
  color: #061006;
  letter-spacing: 0.3px;
}

/* ICON CIRCLE */
.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: #ffffff;

  /* Depth */
  box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(0,0,0,0.05);

  /* Perfect centering */
  flex-shrink: 0;
}

/* Smooth motion */
.cta-button:hover .cta-icon {
  transform: translateX(6px) scale(1.05);
}

/* HOVER EFFECT */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(97,191,49,0.45);
}

.cta-button:hover .cta-icon {
  transform: translateX(6px) scale(1.05);
}

/* CLICK FEEDBACK */
.cta-button:active {
  transform: scale(0.97);
}




/* ========================= */
/* 🔥 MODAL BASE */
/* ========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.active {
  display: block;
}

/* Overlay */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: 0.3s ease;
}

/* Sheet */
.modal-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  max-height: 92vh;
  overflow-y: auto;

  background: #050805;
  border-radius: 20px 20px 0 0;

  transform: translateY(100%);
  transition: 0.35s ease;

  display: flex;
  flex-direction: column;
}

/* Active animation */
.modal.active .modal-overlay {
  opacity: 1;
}
.modal.active .modal-sheet {
  transform: translateY(0);
}

/* ========================= */
/* HEADER */
/* ========================= */

.modal-header {
  position: sticky;
  top: 0;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px;

  background: rgba(5,8,5,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(97,191,49,0.15);
}

.modal-back {
  background: rgba(255,255,255,0.08);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
}

.modal-title {
  font-size: 14px;
  opacity: 0.8;
}

/* ========================= */
/* CONTENT */
/* ========================= */

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

/* Cards */
.modal-card {
  padding: 16px;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(97,191,49,0.08),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(97,191,49,0.2);
}

/* Titles */
.modal-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #7df24a;
}

/* List */
.modal-list {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Chips */
.modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Testimonial */
.modal-testimonial {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.modal-stars {
  color: #7df24a;
  margin-bottom: 6px;
}

/* ========================= */
/* CTA */
/* ========================= */

.modal-cta {
  position: sticky;
  bottom: 0;

  padding: 12px 16px;
  background: #050805;
  border-top: 1px solid rgba(97,191,49,0.2);

  display: none; /* hidden by default */
}

.modal-cta.active {
  display: block;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 999px;

  background: linear-gradient(135deg, #61bf31, #a9ff76);
  color: #061006;
  font-weight: 700;
  text-decoration: none;
}


/* =========================
   CONTACT SECTION - MOBILE ONLY
========================= */


  /* =========================
     CONTAINER
  ========================= */
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }

  /* =========================
     HERO FIX (reduce dominance)
  ========================= */
  .hero-video {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    opacity: 0.85;
  }

  /* =========================
     CONTACT INFO → CARD STYLE
  ========================= */
  .contact-info {
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:28px;
    order:2;
  }

  .contact-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    border-radius: 0;

    background: transparent;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: none;
  }

   .contact-item:nth-child(1){

    padding:18px;
    border-radius:20px;

    background: linear-gradient(
      135deg,
      rgba(97,191,49,0.15),
      rgba(12,12,12,0.7)
    );

    border:1px solid rgba(97,191,49,0.3);

    box-shadow: 0 10px 30px rgba(97,191,49,0.2);

  }

  .contact-item i {
    font-size: 18px;
    color: #61bf31;
    margin-top: 2px;
  }

  .contact-item strong {
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.5);
    letter-spacing: .3px;
  }

  .contact-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
    font-weight: 500;
     color: #fff;
  }

  /* =========================
     SOCIAL ICONS
  ========================= */
  .contact-social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }

  .contact-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);
    font-size: 14px;
  }

  /* =========================
     CONTACT FORM
  ========================= */
  .contact-form {
    padding: 20px;
    border-radius: 22px;
    order: 1;
     background: linear-gradient(
      145deg,
      rgba(97,191,49,0.08),
      rgba(12,12,12,0.9)
    );

    border:1px solid rgba(97,191,49,0.25);

    box-shadow:
      0 20px 50px rgba(0,0,0,0.6),
      0 0 25px rgba(97,191,49,0.15);

    position:relative;
    overflow:hidden;

    border: 1px solid rgba(255,255,255,0.06);
  }

    /* subtle glow layer */
  .contact-form::before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at top right, rgba(97,191,49,0.15), transparent 60%);
    pointer-events:none;
  }

  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  /* =========================
     FORM GROUP
  ========================= */
  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
    opacity: 0.8;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    height: 48px;

    padding: 10px 12px;
    border-radius: 14px;

     background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);

    border-radius:16px;
    padding:12px 14px;

    transition: all .25s ease;

    font-size: 14px;
  }

  .form-group textarea {
    height: 120px;
    resize: none;
  }

  /* =========================
     INPUT FOCUS EFFECT
  ========================= */
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #61bf31;
     box-shadow:
      0 0 0 1px rgba(97,191,49,0.3),
      0 0 20px rgba(97,191,49,0.15);

    background: rgba(255,255,255,0.05);
  }

  /* =========================
     ERROR TEXT
  ========================= */
  .error-text {
    font-size: 11px;
    margin-top: 4px;
    color: #ff6b6b;
  }

  /* =========================
     BUTTON
  ========================= */
  .contact-form .btn {
    margin-top: 10px;
    height: 54px;
    border-radius: 18px;
letter-spacing: .3px  ;
    font-size: 17px;
    font-weight: 600;
transition: .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

       background: linear-gradient(135deg, #61bf31, #a4ff6f);

    box-shadow:
      0 10px 30px rgba(97,191,49,0.4),
      inset 0 -2px 8px rgba(0,0,0,0.2);

    color: #041004;
  }

    .contact-form .btn:active{
    transform:scale(.97);
  }

  





  /* =========================
   SERVICES SECTION — MOBILE ONLY (SAFE SCOPED)
========================= */


  /* ===== SECTION FLOW ===== */
  .services-section {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    height: auto;
    position: relative;
  }

  /* ===== TOP CONTENT STACK (CRITICAL FIX) ===== */
  .top-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }

  /* TITLE FULL WIDTH */
  .title-box {
    width: 100%;
    height: auto;
  }

  .title-box h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  /* DESCRIPTION FIX */
  .content-box {
    width: 100%;
    align-items: flex-start;
  }

  #serviceDesc {
    font-size: 15px;
    text-align: left;   /* 🔥 FIX RIGHT ALIGN ISSUE */
    max-width: 100%;
  }

  /* BUTTONS BELOW TEXT */
  .buttons {
    width: 100%;
    justify-content: flex-start;
  }

  /* ===== CARDS (MAIN FOCUS) ===== */
  .cards-wrapper {
    width: 100%;
    display: flex;
    gap: 16px;
position: relative;
z-index: 1;
   padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  align-items: center;
    order: 2; /* 🔥 FORCE BELOW TEXT */
  }

  /* CENTER SPACING */
  .cards-wrapper::before,
  .cards-wrapper::after {
    content: "";
    flex: 0 0 10%;
  }

  /* CARD BASE */
  .card {
    flex: 0 0 78%;
    height: 240px;

    scroll-snap-align: center;

    transform: scale(0.92);
    opacity: 0.7;
    filter: blur(0);

    transition: 0.4s ease;
      transform-origin: center center;
  }

  /* ===== ARROWS BELOW CARDS (FIXED) ===== */
.scroll-controls {
  position: absolute;
  left: 0;
  width: 100%;

  /* 👇 KEY: place arrows around card vertical center */
  top: calc(100% - 180px); 
  /* adjust this value once based on your layout */

  transform: translateY(-50%);

  display: flex;
  justify-content: space-between;
  padding: 0 20px;

  pointer-events: none; /* allows clicks only on buttons */
}
.scroll-btn {
  pointer-events: all;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;
}
.cards-container {
  position: relative;
  height: 260px; /* 🔥 MUST MATCH CARD HEIGHT */
  display: flex;
  align-items: center;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}
.scroll-btn {
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.9);
}









}






/* ============================================================
   MOBILE — PROJECT VIEW MODAL (COMPLETE REDESIGN)
   ============================================================ */
@media (max-width: 768px) {

  /* ── KILL ALL DESKTOP EFFECTS ── */

  .project-view.active .pv-hero-content span span,
  .project-view.active .pv-hero-content h1 span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .pv-particles { display: none !important; }
  .custom-cursor { display: none !important; }
  .project-view .pv-scroll { display: none !important; }

  .project-view .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pv-row.left.reveal,
  .pv-row.right.reveal {
    transform: none !important;
    opacity: 1 !important;
  }

  .pv-impact-box p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pv-testimonial-box {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #pvLink { animation: none !important; }

  /* ── BACK BUTTON ── */

  .pv-back {
    position: fixed !important;
    top: 16px !important;
    left: 16px !important;
    z-index: 99999 !important;
    padding: 9px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #fff !important;
    letter-spacing: 0.2px !important;
  }


  /* ── HERO: image as true banner, text below ── */

  .pv-hero {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .pv-image-area {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  .pv-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
  }

  .pv-image-wrapper img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .pv-left-fade,
  .pv-right-fade {
    display: none !important;
  }

  .pv-bottom-fade {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100px !important;
    background: linear-gradient(to top, #000 0%, transparent 100%) !important;
    z-index: 2 !important;
  }

  /* Title + category: pulled OUT of hero, sits below image as static block */
  .pv-hero-content {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    padding: 20px 18px 4px !important;
    background: #000 !important;
    z-index: auto !important;
  }

  .pv-hero-inner {
    margin-left: 0 !important;
    transform: none !important;
    padding: 0 !important;
    text-align: left !important;
  }

  #pvCategory {
    display: inline-block !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(97,191,49,0.5) !important;
    color: #61bf31 !important;
    margin-bottom: 10px !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  /* Override any span animation on category */
  #pvCategory span {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }

  .pv-hero-content h1 {
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    color: #fff !important;
    margin: 0 !important;
    max-width: 100% !important;
    word-break: normal !important;
  }

  /* Spans inside h1 must be flat */
  .pv-hero-content h1 span,
  .pv-hero-content h1 span span {
    display: inline !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
    font: inherit !important;
    color: inherit !important;
  }


  /* ── CONTENT WRAPPER ── */

  .pv-content {
    margin-top: 150px !important;
    padding: 0 0 48px !important;
    background: #000 !important;
  }

  .pv-page {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* Reset all rows */
  .pv-row {
    display: block !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    column-gap: 0 !important;
    grid-template-columns: unset !important;
  }

  .pv-row.left,
  .pv-row.right {
    justify-content: unset !important;
    text-align: left !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .pv-row.center {
    display: block !important;
    text-align: center !important;
    padding: 12px 16px !important;
  }


  /* ── CONTENT CARDS ── */

  .pv-block {
    max-width: 100% !important;
    width: 100% !important;
    grid-column: unset !important;
    justify-self: unset !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 20px !important;
    padding: 20px 18px !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
  }

  /* Section label */
  .pv-block h2 {
    font-size: 10px !important;
    letter-spacing: 2.5px !important;
    color: #61bf31 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
    font-family: inherit !important;
    opacity: 0.9 !important;
  }

  /* Concept text */
  .pv-about-text {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: rgba(255,255,255,0.78) !important;
    font-family: inherit !important;
    max-width: 100% !important;
    margin: 0 !important;
  }


  /* ── EXECUTION FRAMEWORK LIST ── */

  #pvWork {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 0 !important;
    list-style: none !important;
  }

  #pvWork li {
    list-style: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.88) !important;
    padding: 11px 14px !important;
    background: rgba(97,191,49,0.06) !important;
    border: 1px solid rgba(97,191,49,0.12) !important;
    border-radius: 10px !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Green dot prefix */
  #pvWork li::before {
    content: "" !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
    border-radius: 50% !important;
    background: #61bf31 !important;
    box-shadow: 0 0 6px rgba(97,191,49,0.6) !important;
  }

  /* Remove any leftover border-left from previous rule */
  #pvWork li {
    border-left: none !important;
  }


  /* ── TECH STACK ── */

  #pvTools {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  #pvTools span {
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: rgba(97,191,49,0.08) !important;
    border: 1px solid rgba(97,191,49,0.28) !important;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 !important;
    letter-spacing: 0.3px !important;
  }


  /* ── IMPACT BOX ── */

  .pv-impact-box {
    width: 100% !important;
    background: linear-gradient(135deg, rgba(97,191,49,0.1) 0%, rgba(0,0,0,0) 100%) !important;
    border: 1px solid rgba(97,191,49,0.22) !important;
    border-radius: 20px !important;
    padding: 28px 22px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* Subtle glow orb */
  .pv-impact-box::before {
    content: "" !important;
    position: absolute !important;
    top: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 160px !important;
    height: 160px !important;
    background: radial-gradient(circle, rgba(97,191,49,0.18), transparent 70%) !important;
    pointer-events: none !important;
  }

  .pv-impact-box p {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    color: #fff !important;
    font-family: inherit !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
  }


  /* ── TESTIMONIAL ── */

  #pvTestimonialSection {
    width: 100% !important;
  }

  .pv-testimonial-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(97,191,49,0.18) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* Quote mark decoration */
  .pv-testimonial-box::before {
    content: "\201C" !important;
    position: absolute !important;
    top: -10px !important;
    left: 18px !important;
    font-size: 80px !important;
    line-height: 1 !important;
    color: rgba(97,191,49,0.12) !important;
    font-family: var(--font-main) !important;
    pointer-events: none !important;
  }

  .pv-stars {
    font-size: 18px !important;
    color: #61bf31 !important;
    margin-bottom: 14px !important;
    display: block !important;
    text-align: center !important;
    letter-spacing: 3px !important;
  }

  .pv-feedback {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,0.82) !important;
    font-style: italic !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 0 14px !important;
  }

  .pv-client {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #61bf31 !important;
    margin-top: 0 !important;
    display: block !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
  }


  /* ── VIEW WORK BUTTON ── */

  .pv-btn-row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    justify-content: center !important;
    padding: 12px 16px 0 !important;
  }

  #pvLink {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 32px !important;
    height: 52px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 999px !important;
    margin-top: 0 !important;
    background: #fff !important;
    color: #000 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(97,191,49,0.3) !important;
    animation: none !important;
  }

  #pvLink span {
    position: relative !important;
    z-index: 1 !important;
    color: #000 !important;
  }

  #pvLink::after,
  #pvLink::before {
    display: none !important;
  }

}


/* =========================
   MOBILE ABOUT SECTION
========================= */


@media (max-width:768px){

/* ABOUT SECTION */
.about-content{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.about-text{
    position:relative;
    background:#050505;
    border:1px solid rgba(255,255,255,.06);
    border-radius:28px;
    padding:28px 22px;
    overflow:hidden;
}

.about-text h3{
    font-size:56px;
    line-height:0.95;
    margin-bottom:24px;
}

.about-text p{
    font-size:16px;
    line-height:2;
    color:rgba(255,255,255,.85);
    margin-bottom:18px;
}

/* COLLAPSE */
.about-text.collapsed .about-paragraphs{
    max-height:330px;
    overflow:hidden;
    position:relative;
}

/* FADE EFFECT */
.about-text.collapsed .about-paragraphs::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:100px;

    background:linear-gradient(
        to top,
        #050505 10%,
        rgba(5,5,5,0)
    );
}

/* BUTTON */
.read-more-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:54px;

    margin-top:20px;

    border-radius:18px;

   background:linear-gradient(
    180deg,
    rgba(22,22,22,0.96) 0%,
    rgba(10,10,10,0.98) 100%
);

    border:1px solid rgba(255,255,255,0.08);

    color:#F5F5F5;

    font-size:15px;
    font-weight:600;

    letter-spacing:.5px;

    backdrop-filter:blur(14px);

   box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.45),
    0 10px 24px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.02);

    transition:.25s ease;

    cursor:pointer;
}

/* tap feedback */
.read-more-btn:active{
    transform:scale(.985);

    background:rgba(138,216,90,0.08);
}


/* IMAGE */
.about-image img{
    border-radius:28px;
}

/* =========================
   CORE VALUES
========================= */

.values-grid{
    grid-template-columns:repeat(2,1fr) !important;
    gap:16px;
    padding:0 10px 40px;
}

/* PREMIUM CARDS */
.value-card{
    background:linear-gradient(
        180deg,
        rgba(18,18,18,1) 0%,
        rgba(8,8,8,1) 100%
    );

    border-radius:24px;
    padding:26px 16px;

    border:1px solid rgba(255,255,255,.06);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    text-align:center;

    min-height:auto;
}

/* ICON */
.value-card i{
    font-size:42px;
    margin-bottom:18px;
}

/* TITLE */
.value-card h3{
    font-size:16px;
    line-height:1.4;
    margin-bottom:14px;
}

/* TEXT */
.value-card p{
    font-size:13px;
    line-height:1.9;
    color:rgba(255,255,255,.72);
}

}

