:root {
    --navy: #080c1a;
    --navy2: #0d1535;
    --navy3: #111d45;
    --purple: #7c3aed;
    --purple2: #9b59f5;
    --purple-light: #a78bfa;
    --gold: #f59e0b;
    --orange: #ff6b35;
    --cyan: #06b6d4;
    --green: #10b981;
    --pink: #ec4899;
    --white: #ffffff;
    --gray: #94a3b8;
    --light-bg: #f8faff;
    --card-bg: #ffffff;
    --border: rgba(124,58,237,0.15);
		--gradient-yellow: linear-gradient(90deg, #ffe200, #ffc000);
  }

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

 body { background: #ffffff; overflow-x: hidden; }
  /* ====== NAVBAR ====== */
	
	.hero {
		width: 100%;
    height: 400px;
		background: linear-gradient(135deg, #0a246c 0%, #063cbd 40%, #f90082 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    padding: 65px 20px 10px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
   /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232979ff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
    opacity: 0.5;
  }
  .hero-badge { background: rgb(0 41 150); border: 1px solid #00aaff; color: #01ff00; padding: 6px 18px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
  .hero h1 { font-family: 'Rajdhani', sans-serif;font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #FFFFFF; line-height: 51px; margin-bottom: 15px; }
  .hero h1 span { font-family: 'Rajdhani', sans-serif;background: var(--gradient-yellow); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero p { color: #ffffff; font-size: 16px; max-width: 560px; line-height: 25px; }
  

  /* ====== HERO VARIANTS ====== */
  .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #1a0a3e 100%);
    padding: 90px 5% 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  .page-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: white;
    position: relative; z-index: 1;
    margin-bottom: 16px;
  }
  .page-hero h1 span { color: var(--gold); }
  .page-hero p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 24px;
    position: relative; z-index: 1;
    line-height: 1.7;
  }
  .breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: relative; z-index: 1;
    font-size: 0.82rem; color: #64748b;
  }
  .breadcrumb span { color: var(--purple); }
  .breadcrumb i { color: var(--gold); }

  /* ====== BUTTONS ====== */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    color: white;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(124,58,237,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(124,58,237,0.5); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--purple);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--purple);
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: var(--purple); color: white; }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: white;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(245,158,11,0.35);
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(245,158,11,0.5); }

  /* ====== CARDS ====== */
  .card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    border: 1px solid rgba(124,58,237,0.08);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--purple), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .card:hover { transform: translateY(-6px); box-shadow: 0 15px 45px rgba(124,58,237,0.15); }
  .card:hover::before { opacity: 1; }

  .icon-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .icon-purple { background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05)); color: var(--purple); }
  .icon-gold { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05)); color: var(--gold); }
  .icon-cyan { background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(6,182,212,0.05)); color: var(--cyan); }
  .icon-green { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); color: var(--green); }
  .icon-pink { background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05)); color: var(--pink); }
  .icon-orange { background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,107,53,0.05)); color: var(--orange); }

  .card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
  .card p { font-size: 0.85rem; color: #64748b; line-height: 1.7; }

  /* ====== GRIDS ====== */
  .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
  .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: center; }

  .section { padding: 90px 5%; }
  .section-light { background: var(--light-bg); }
  .section-dark { background: var(--navy); }

  /* ====== STATS BAR ====== */
  .stats-bar {
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    padding: 40px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    display: block;
  }
  .stat-label { color: rgba(255,255,255,0.75); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; }

  /* ============================================
     PAGE 1: ABOUT US
  ============================================ */

  .about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .about-img-wrap {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy2), #1a0a3e);
    height: 460px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .about-img-main::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .about-grid-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    padding: 40px; position: relative; z-index: 1;
  }
  .about-mini-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
  }
  .about-mini-card .emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
  .about-mini-card span { color: white; font-size: 0.8rem; font-weight: 600; }

  .about-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: white;
    padding: 16px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245,158,11,0.4);
  }
  .about-badge strong { display: block; font-size: 1.8rem; font-weight: 900; }
  .about-badge small { font-size: 0.7rem; opacity: 0.9; }

  .about-features { list-style: none; margin-top: 28px; }
  .about-features li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 18px; padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .about-features li:last-child { border: none; }
  .feat-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
  }
  .feat-text h4 { font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
  .feat-text p { font-size: 0.8rem; color: #64748b; line-height: 1.5; }

  /* Team */
  .team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(124,58,237,0.08);
  }
  .team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(124,58,237,0.2); }
  .team-avatar {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    position: relative;
  }
  .team-avatar::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, white, transparent);
  }
  .team-info { padding: 20px 22px 24px; }
  .team-info h3 { font-size: 1rem; font-weight: 700; color: #0f172a; }
  .team-info .role { color: var(--purple); font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; }
  .team-info p { font-size: 0.8rem; color: #64748b; line-height: 1.6; margin-bottom: 14px; }
  .social-links { display: flex; gap: 8px; }
  .social-links a {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    color: var(--purple);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 700;
  }
  .social-links a:hover { background: var(--purple); color: white; }

  /* Timeline */
  .timeline { position: relative; padding: 0 0 0 30px; }
  .timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--purple), var(--cyan));
    border-radius: 3px;
  }
  .tl-item { position: relative; margin-bottom: 36px; }
  .tl-dot {
    position: absolute;
    left: -38px; top: 4px;
    width: 16px; height: 16px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
  }
  .tl-year { color: var(--purple); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
  .tl-item h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
  .tl-item p { font-size: 0.82rem; color: #64748b; line-height: 1.6; }

  /* Values */
  .value-card {
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .value-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .value-card:hover::before { border-color: var(--purple); }
  .value-card:hover { transform: translateY(-5px); }
  .value-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
  .value-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
  .value-card p { font-size: 0.83rem; color: #64748b; line-height: 1.6; }

  .services-featured {
    background: linear-gradient(135deg, #120087, #590065);
    border-radius: 24px;
    padding: 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  .services-featured::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .services-featured h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    color: white; margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .services-featured h2 span { color: var(--gold); }
  .services-featured p { color: #ffffff; line-height: 1.6; margin-bottom: 28px; position: relative; z-index: 1; }
  .service-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
  .sh-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 12px;
    padding: 18px;
    backdrop-filter: blur(10px);
  }
  .sh-item .sh-icon { font-size: 30px; margin-bottom: 8px; display: block; }
  .sh-item span { color: white;font-size: 15px;
    letter-spacing: 0.3px;font-weight: 600; }

  .service-card-full {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    border: 1px solid rgba(124,58,237,0.08);
    transition: all 0.35s;
  }
  .service-card-full:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(124,58,237,0.15); }
  .sc-header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, #f8f5ff, #fff);
    border-bottom: 1px solid rgba(124,58,237,0.1);
    display: flex; align-items: center; gap: 16px;
  }
  .sc-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px;
    flex-shrink: 0;
  }
  .sc-header h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
  .sc-header span { color: var(--purple); font-size: 0.75rem; font-weight: 600; }
  .sc-body { padding: 24px 28px; }
  .sc-body p { font-size: 15px; color: #000000; line-height: 1.5; margin-bottom: 18px; }
  .sc-features { list-style: none; }
  .sc-features li {
    font-size: 14px;
    color: #000000;
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .sc-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.85rem; }
  .sc-footer { padding: 18px 28px 24px; border-top: 1px solid rgba(0,0,0,0.05); }

  .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
  }
  .pricing-card.featured {
    border-color: var(--purple);
    background: linear-gradient(135deg, #f8f5ff, white);
    transform: scale(1.05);
  }
  .pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    color: white; font-size: 0.72rem; font-weight: 700;
    padding: 5px 18px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
  }
  .pricing-name { font-size: 0.85rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
  .pricing-price { font-family: 'Raleway', sans-serif; font-size: 2.8rem; font-weight: 900; color: #0f172a; }
  .pricing-price small { font-size: 1rem; color: #64748b; }
  .pricing-sub { color: #64748b; font-size: 0.8rem; margin-bottom: 28px; }
  .pricing-feats { list-style: none; text-align: left; margin-bottom: 28px; }
  .pricing-feats li {
    font-size: 0.83rem; color: #374151;
    padding: 7px 0; border-bottom: 1px solid #f1f5f9;
    display: flex; align-items: center; gap: 10px;
  }
  .pricing-feats li::before { content: '✓'; color: var(--green); font-weight: 700; }
  .pricing-feats li.no::before { content: '✗'; color: #e2e8f0; }
  .pricing-feats li.no { color: #94a3b8; }

  /* ============================================
     PAGE 3: GALLERY
  ============================================ */

  .gallery-filters {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 48px;
  }
  .filter-btn {
    padding: 9px 22px;
    border-radius: 25px;
    border: 2px solid rgba(124,58,237,0.2);
    background: white;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--purple);
    border-color: var(--purple);
    color: white;
    box-shadow: 0 4px 15px rgba(124,58,237,0.35);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }
  .gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-thumb {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
    transition: transform 0.4s;
    position: relative;
  }
  .gallery-item:hover .gallery-thumb { transform: scale(1.08); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,14,26,0.9) 0%, rgba(10,14,26,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
  .gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
  .gallery-tag {
    position: absolute; top: 14px; right: 14px;
    background: rgba(124,58,237,0.9);
    color: white; font-size: 0.68rem; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-tag { opacity: 1; }
  .zoom-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white; color: var(--purple);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .gallery-item:hover .zoom-btn { transform: translate(-50%, -50%) scale(1); }

  /* Lightbox */
  .lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none; align-items: center; justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
  }
  .lightbox.open { display: flex; }
  .lb-content {
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    max-width: 780px; width: 90%;
    max-height: 90vh;
    position: relative;
    border: 1px solid rgba(124,58,237,0.3);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
  }
  .lb-image {
    height: 420px;
    display: flex; align-items: center; justify-content: center;
    font-size: 7rem;
    position: relative;
  }
  .lb-info {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .lb-info h3 { color: white; font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
  .lb-info p { color: #94a3b8; font-size: 0.85rem; line-height: 1.6; }
  .lb-close {
    position: absolute; top: 14px; right: 16px;
    background: rgba(255,255,255,0.1);
    border: none; color: white;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; z-index: 10;
  }
  .lb-close:hover { background: rgba(255,255,255,0.2); }
  .lb-nav {
    display: flex; gap: 12px; margin-top: 16px;
  }
  .lb-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer; font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
  }
  .lb-btn:hover { background: var(--purple); border-color: var(--purple); }
  .lb-counter { color: #64748b; font-size: 0.8rem; margin-top: 8px; text-align: center; }
	
	
  .fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .services-featured { padding: 36px; }
		
  }
	
	@media (max-width: 575px) {
	.services-featured{
	    display: block;
	}
	
	.ind-grid{
	     display: inherit; !important;
	 grid-template-columns: repeat(1, 1fr); !important;
	}
	}
	
	
	.ind-section{padding:72px 40px;background:#f5f5ff;}
  .ind-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px}
  .ind-card{background:#fff;border-radius:14px;border:1px solid rgb(126 50 255 / 35%);padding:22px 20px;display:flex;align-items:flex-start;gap:16px;transition:all 0.25s;cursor:pointer}
  .ind-card:hover{transform:translateX(4px);border-left:3px solid #ff3d00;box-shadow:0 4px 20px rgba(255,107,53,0.08)}
  .ind-icon{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;background:var(--light)}
  .ind-card h4{font-family:'Sora',sans-serif;font-size:16px;font-weight:600;color:#15007c;letter-spacing: 0.5px;margin-bottom:5px}
  .ind-card p{font-size:15px;color:#000;line-height:1.7}
	
	
	/* =========================================
   FULL RESPONSIVE FIXES
========================================= */

/* Large Tablets */
@media (max-width: 1024px) {

  .services-featured,
  .about-intro,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    height: auto;
    padding: 100px 25px 60px;
  }

  .hero h1 {
    line-height: 1.3;
  }
}


/* Tablets */
@media (max-width: 768px) {

  .section,
  .ind-section {
    padding: 60px 20px;
  }

  .services-featured {
    padding: 35px 25px;
    border-radius: 18px;
  }

  .services-featured h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .about-grid-visual {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .about-img-main {
    height: auto;
    min-height: 350px;
  }

  .about-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }

  .hero {
    padding: 90px 20px 50px;
    height: auto;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.8;
  }

  .page-hero {
    padding: 80px 20px 60px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .btn-primary,
  .btn-outline,
  .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .team-avatar {
    height: 180px;
    font-size: 4rem;
  }

  .lb-image {
    height: 280px;
    font-size: 4rem;
  }
}


/* Mobile Devices */
@media (max-width: 576px) {

  body {
    overflow-x: hidden;
  }

  .hero {
    padding: 110px 15px 25px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.7;
  }

  .services-featured {
    padding: 28px 18px;
    gap: 30px;
  }

  .services-featured h2 {
    font-size: 26px;
  }

  .services-featured p {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .card,
  .service-card-full,
  .pricing-card,
  .team-card {
    border-radius: 16px;
  }

  .sc-header {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  .sc-body,
  .sc-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sc-body p,
  .sc-features li {
    font-size: 14px;
  }

  .sc-icon-wrap {
    width: 55px;
    height: 55px;
    font-size: 30px;
  }

  .ind-grid {
    grid-template-columns: 1fr;
  }

  .ind-card {
    padding: 18px;
    gap: 14px;
  }

  .ind-card h4 {
    font-size: 16px;
  }

  .ind-card p {
    font-size: 13px;
  }

  .gallery-grid {
    gap: 14px;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .zoom-btn {
    transform: translate(-50%, -50%) scale(1);
  }

  .breadcrumb {
    flex-wrap: wrap;
    text-align: center;
  }

  .timeline {
    padding-left: 22px;
  }

  .tl-dot {
    left: -30px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 11px;
  }

  .lb-content {
    width: 95%;
  }

  .lb-info {
    padding: 18px;
  }

  .lb-info h3 {
    font-size: 18px;
  }

  .lb-info p {
    font-size: 13px;
  }

  .lb-nav {
    flex-direction: column;
    width: 100%;
  }

  .lb-btn {
    width: 100%;
  }
}
	
	
	