/* --- Root Variables & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --brand-primary: #00ff88;
    --brand-dark: #0a0a0a;
    --brand-surface: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.newDesign {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
#newDesign {
    font-size: 5.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* --- Shared Components --- */
.gradient-text {
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary { background: var(--brand-primary); color: #000; }
.btn-primary:hover { background: #00e67a; }

.btn-outline { border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-outline:hover { background:#00e67a; color: #000; }

.btn-outline-alt { border: 1px solid var(--brand-primary); color: var(--brand-primary); }
.btn-outline-alt:hover { background: var(--brand-primary); color: #000; }

.btn-outline-white { border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); }

.full-width { width: 100%; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-gray); }

/* --- Navbar --- */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: #0f172a;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo { font-size: 1.5rem; font-weight: 800; }

.nav-links { display: flex; gap: 2rem; font-size: 0.9rem; }
.nav-links a:hover { color: var(--brand-primary); }

.menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; }

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-dark);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    transition: 0.4s ease;
    z-index: 99;
}

.mobile-menu.active { transform: translateY(0); }

/* --- Hero --- */
.hero { padding: 160px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.badge { color: var(--brand-primary); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 1rem; }
.badge {
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  
  /* Animation Properties */
  animation: fadeInUp 2s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 2rem; }
.hero-text p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; }

.hero-image { position: relative; }
.hero-image img { border-radius: 20px; border: 1px solid var(--border-color); position: relative; z-index: 2; }
.image-glow { position: absolute; inset: -20px; background: rgba(0, 255, 136, 0.1); filter: blur(40px); border-radius: 50%; }
.image-glow::after { content: ''; position: absolute; inset: 0; border-radius: 50%; }
.image-glow::before { content: ''; position: absolute; inset: 0; border-radius: 50%; }
.hero-image:hover .image-glow { background: rgba(0, 255, 136, 0.2); filter: blur(60px); }
.hero-image:hover .image-glow::after { background: rgba(0, 255, 136, 0.3); filter: blur(80px); }
.hero-image:hover .image-glow::before { background: rgba(0, 255, 136, 0.4); filter: blur(100px); }

/* --- Cards/Services --- */
.services { padding: 80px 0; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.card { background: rgba(255,255,255,0.05); padding: 2.5rem; border-radius: 20px; border: 1px solid var(--border-color); transition: 0.3s; }
.card:hover { border-color: var(--brand-primary); transform: translateY(-5px); background: #1a1a1a; }
.card .icon { color: var(--brand-primary); margin-bottom: 1.5rem; width: 40px; height: 40px; }
.card h3 { margin-bottom: 1rem; }
.card p { color: var(--text-gray); font-size: 0.95rem; }

.card-hover:hover { border-color: var(--brand-primary); transform: translateY(-5px); background: #1a1a1a; }

/* --- Vision --- */
.vision { padding: 80px 0; border-top: 1px solid var(--border-color); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.vision-steps { margin-top: 2rem; }
.step { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.step-num { width: 40px; height: 40px; background: rgba(0, 255, 136, 0.1); color: var(--brand-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.values-box { background: rgba(255,255,255,0.05); padding: 3rem; border-radius: 20px; border: 1px solid var(--border-color); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.values-grid span { background: #000; color: var(--brand-primary); padding: 1rem; text-align: center; border-radius: 10px; font-weight: 700; font-size: 0.8rem; }

/* --- Footer --- */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-gray); margin: 1.5rem 0; max-width: 350px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.social-links a:hover { background: var(--brand-primary); color: #000; }
.footer h4 { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
.footer p, .footer li { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.75rem; color: #555; }

/* --- Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1fab5f;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3rem; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-grid { margin-top: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero-grid, .vision-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-text { text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-text h1 { font-size: 2.5rem; line-height: 1.2; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .hero-image img { width: 100%; height: auto; }
    .image-glow { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; padding: 10px 16px; font-size: 14px; }
}

/* --- Global Box Sizing --- */
body {
    overflow-x: hidden;
}
/* --- Comprehensive Responsiveness --- */

/* 1. Large Screen Adjustments (1200px+) */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
    .hero-text h1 { font-size: 5.5rem; }
}

/* 2. Tablet & Smaller Laptops (1024px and down) */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.5rem; }
    .hero-grid { gap: 2rem; }
    .pricing-card.featured { transform: scale(1); margin-top: 0; }
    .footer-grid { gap: 2rem; }
}

/* 3. Mobile Landscape & Small Tablets (768px and down) */
@media (max-width: 768px) {
    /* Layout */
    .hero-grid, .vision-grid, .footer-grid, .card-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Navigation */
    .nav-links { display: none; }
    .menu-btn { display: block; }
    
    /* Hero Section */
    .hero { padding: 120px 0 60px; }
    .hero-text { text-align: center; order: 1; }
    .hero-image { order: 2; width: 100%; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }

    /* Features/Services */
    .card-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; }

    /* Pricing */
    .pricing-grid { 
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Vision Section */
    .vision-grid { gap: 2rem; }
    .values-box { padding: 1.5rem; }
}

/* 4. Small Mobile Devices (480px and down) */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.2rem; }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn { width: 100%; padding: 0.8rem 1.5rem; }
    
    .stat-number { font-size: 2rem; }
    
    .footer-grid { 
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-brand p { margin: 1rem auto; }
    .social-links { justify-content: center; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Fix image overflow */
    .hero-image img {
        width: 100%;
        height: auto;
    }
}

/* Utility to prevent any horizontal scrolling */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* --- Logo Placement & Alignment --- */
.logo-wrapper {
    display: flex;
    align-items: center; /* Vertically centers the image and text */
    gap: 12px;           /* Professional spacing between logo and text */
    text-decoration: none;
}

.nav-logo-img {
    height: 50px;        /* Matches the professional height of your nav bar */
    width: auto;         /* Maintains aspect ratio */
    display: block;
}

/* Ensure the text doesn't have extra margins that break alignment */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;      /* Prevents text height from pushing the container */
}

/* Adjust for mobile: Slightly smaller logo on small screens */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 32px;
    }
    .logo {
        font-size: 1.2rem;
    }
}
.welcome-box {
  font-size: 28px;
  color: #333;
  opacity: 1;
  padding: 20px 30px;
  text-align: center;
  transition: opacity 1.5s ease;
  max-width: 90%;
  margin: auto;
}

#welcomeMessage {
  font-size: clamp(10px, 5vw, 05px);
  color: #1bdd2b;
  line-height: 1.3;
}

.fade-out {
  opacity: 0;
}
.reviews {
    padding: 80px 0;
    background: #0f172a;
}

.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 40px;
    background: rgba(53, 197, 24, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-sizing: border-box;
}

.stars {
    color: #00ff88;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00ff88;
}

.client-info h4 {
    margin: 0;
    color: #fff;
}

.client-info span {
    font-size: 0.9rem;
    color: #888;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a3f79c;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: #00ff88;
    transform: scale(1.2);
}
/* Animation Base States */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Hover Effects */
.founder-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #222;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-card:hover {
    border-color: #CCF527;
    transform: translateY(-10px) scale(1.02);
}

.founder-img {
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-img {
    transform: rotateY(180deg);
    color: #27ADF5;
}

/* Glowing Accent Bars */
.glow-bar {
    height: 3px;
    width: 0;
    margin-top: 20px;
    transition: width 1s ease 0.5s;
}

.active .glow-bar { width: 100%; }

/* Objective Step Hover */
.obj-item {
    transition: all 0.3s ease;
    cursor: default;
}

.obj-item:hover {
    background: #27ADF5;
    transform: scale(1.1);
}
.obj-item:hover span, .obj-item:hover p {
    color: #000 !important;
}
/* Layout and Container */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Mission & Vision Section */
.about-hero { padding: 60px 0; background-color: #000000; color: #ffffff; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card, .vision-card { 
    padding: 30px; 
    border-radius: 12px; 
    background-color: #111111; 
    border: 1px solid #222222;
}

/* Objectives Section */
.objectives { padding: 80px 0; background-color: #0a0a0a; color: #ffffff; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; }
.obj-steps { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
}
.obj-item { 
    background-color: #1a1a1a; 
    padding: 25px; 
    border-radius: 10px; 
    width: 180px; 
    text-align: center; 
}
.obj-item span { 
    display: block; 
    font-size: 2rem; 
    font-weight: bold; 
    color: #27ADF5; 
}
.obj-item.highlight { 
    border: 2px solid #CCF527; 
}
.obj-item.highlight span { 
    color: #CCF527; 
}

/* Founders Section */
.founders { padding: 80px 0; background-color: #000000; color: #ffffff; }
.founder-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}
.founder-card { 
    background-color: #111111; 
    padding: 30px; 
    text-align: center; 
    border-radius: 15px; 
}
.founder-img { 
    width: 80px; 
    height: 80px; 
    background-color: #222222; 
    border-radius: 50%; 
    margin: 0 auto 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #CCF527; 
}
.founder-card h3 { color: #ffffff; margin-bottom: 5px; }
.founder-card p { color: #27ADF5; font-size: 0.9rem; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .founder-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; }
    .obj-item { width: 100%; }
    .section-title { font-size: 1.8rem; }
}
/* Blog Header */
.blog-header { padding: 100px 0 50px; text-align: center; background: #000; }
.blog-controls { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; }

/* Search Bar */
.search-wrapper { 
    position: relative; 
    width: 100%; 
    max-width: 500px; 
}
.search-wrapper i { 
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #666; 
}
.search-wrapper input {
    width: 100%; padding: 15px 15px 15px 45px;
    background: #111; border: 1px solid #333; border-radius: 30px;
    color: #fff; outline: none; transition: 0.3s;
}
.search-wrapper input:focus { border-color: #27ADF5; box-shadow: 0 0 15px rgba(39, 173, 245, 0.2); }

/* Filter Buttons */
.filter-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    padding: 8px 20px; border-radius: 20px; border: 1px solid #333;
    background: transparent; color: #fff; cursor: pointer; transition: 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: #CCF527; color: #000; border-color: #CCF527; font-weight: bold; }

/* Blog Grid */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px; padding: 50px 0;
}

/* Blog Card */
.blog-card {
    background: #111; border-radius: 15px; overflow: hidden;
    border: 1px solid #222; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.blog-card:hover { transform: translateY(-10px); border-color: #27ADF5; }

.blog-img-box { position: relative; height: 200px; overflow: hidden; }
.blog-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img-box img { scale: 1.1; }

.category-tag {
    position: absolute; top: 15px; left: 15px;
    background: #CCF527; color: #000; padding: 5px 12px;
    font-size: 0.75rem; font-weight: bold; border-radius: 5px;
}

.blog-content { padding: 20px; }
.post-date { color: #27ADF5; font-size: 0.8rem; display: block; margin-bottom: 10px; }
.blog-content h3 { margin-bottom: 15px; font-size: 1.4rem; color: #fff; }
.blog-content p { color: #aaa; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }

.read-more {
    display: inline-flex; align-items: center; gap: 8px;
    color: #CCF527; text-decoration: none; font-weight: bold; transition: 0.3s;
}
.read-more:hover { gap: 15px; }

/* Mobile */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}
