

/* ===== HERO ===== */
.hero {
  min-height: 55vh;
  background: url("../img/UIUX\ &\ Web\ Experience\ Design\ -\ 007\ \(1\).png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  max-width: 720px;
}

.hero p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #e5e7eb;
  max-width: 600px;
}

.hero .line {
  width: 90px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 26px;
}



   

        /* ===== THEME VARIABLES ===== */
        :root {
            --dark: #0f172a;
            --light: #f8fafc;
            --muted: #64748b;
            --accent: #ef4444;
            --accent-light: #f87171;
            --accent-dark: #dc2626;
            --surface: #ffffff;
            --border: rgba(239, 68, 68, 0.2);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

            --gradient-primary: linear-gradient(135deg, #ef4444, #dc2626);
            --gradient-accent: linear-gradient(135deg, #f87171, #ef4444);
            --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
            --gradient-light: linear-gradient(135deg, #f8fafc, #e2e8f0);
            
            --glass: rgba(255, 255, 255, 0.9);
            --card-bg: rgba(255, 255, 255, 0.85);
            --chat-bubble-left: #fee2e2;
            --chat-bubble-right: #fecaca;
        }

  
        

.arvr-intro-section {
  position: relative;
  padding: 100px 0;
  /* background: radial-gradient(circle at top, #0b1220, #05070c); */
  overflow: hidden;
  color: #0b1220;
 
}

.arvr-bg-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    120deg,
    rgba(0, 200, 255, 0.08),
    rgba(155, 89, 255, 0.06)
  ); */
  z-index: 1;
}

.arvr-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.arvr-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 200, 255, 0.15);
  border: 1px solid rgba(0, 200, 255, 0.4);
  border-radius: 30px;
  color: #00d9ff;
}

.arvr-content h2 {
font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.arvr-content p {
  font-size: 16px;
  line-height: 1.8;
  /* color: #cfd8e3; */
  margin-bottom: 16px;
}

/* Visual Area */
.arvr-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holo-card {
  position: absolute;
  width: 220px;
  height: 140px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.holo-card.vr {
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.35),
    rgba(0, 120, 255, 0.2)
  );
  top: 40px;
  left: 30px;
}

.holo-card.ar {
  background: linear-gradient(
    135deg,
    rgba(155, 89, 255, 0.35),
    rgba(100, 60, 200, 0.2)
  );
  bottom: 50px;
  right: 30px;
  animation-delay: 2s;
}

/* Pulse Ring */
.pulse-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 255, 0.35);
  animation: pulse 4s infinite ease-out;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .arvr-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .arvr-visual {
    height: 320px;
  }

  .holo-card {
    position: relative;
    margin: 10px auto;
  }
}
























        body {
            background: var(--gradient-light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
        }

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

        /* Header Styles */
        
        /* Hero Section */
        

        .vr-headset {
            position: absolute;
            width: 400px;
            height: 300px;
            right: 5%;
            top: 20%;
            z-index: -1;
            opacity: 0.7;
        }

        .vr-headset svg {
            filter: drop-shadow(0 10px 20px rgba(239, 68, 68, 0.2));
            animation: float 6s ease-in-out infinite;
        }

        /* Animation Keyframes */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Section Styling */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 1.9rem;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--muted);
            max-width: 700px;
            margin: 25px auto 0;
        }

        /* Why Choose Section */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .reason-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transition: height 0.4s ease;
        }

        .reason-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }

        .reason-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
        }

        .reason-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }

        .reason-card p {
            color: var(--muted);
            position: relative;
            z-index: 1;
        }

        /* Features Section */
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card:nth-child(1) { border-top: 5px solid #ef4444; }
        .feature-card:nth-child(2) { border-top: 5px solid #dc2626; }
        .feature-card:nth-child(3) { border-top: 5px solid #f87171; }
        .feature-card:nth-child(4) { border-top: 5px solid #fca5a5; }
        .feature-card:nth-child(5) { border-top: 5px solid #b91c1c; }
        .feature-card:nth-child(6) { border-top: 5px solid #991b1b; }
        .feature-card:nth-child(7) { border-top: 5px solid #7f1d1d; }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            display: inline-block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--muted);
        }

        /* Floating 3D Elements */
        .floating-element {
            position: absolute;
            z-index: -1;
            opacity: 0.7;
        }

        .cube {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            top: 20%;
            left: 5%;
            animation: float 4s ease-in-out infinite, rotate 20s linear infinite;
            border-radius: 10px;
        }

        .sphere {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-accent);
            bottom: 15%;
            right: 10%;
            animation: float 5s ease-in-out infinite 1s;
        }

        .pyramid {
            width: 0;
            height: 0;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-bottom: 70px solid rgba(239, 68, 68, 0.5);
            top: 60%;
            left: 15%;
            animation: float 6s ease-in-out infinite 0.5s;
        }

        /* Industries Section */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .industry-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .industry-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .industry-card h4 {
            color: var(--dark);
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: var(--gradient-dark);
            color: white;
            padding: 80px 0 30px;
            margin-top: 80px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo .logo {
            color: white;
            -webkit-text-fill-color: white;
        }

        .footer-logo p {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .link-group h4 {
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .link-group h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

        .link-group ul {
            list-style: none;
        }

        .link-group li {
            margin-bottom: 10px;
        }

        .link-group a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .link-group a:hover {
            color: var(--accent-light);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .vr-headset {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .hero .cta-button {
                margin: 0;
                width: 80%;
            }
            
            .reason-card, .feature-card {
                padding: 25px 20px;
            }
        }

        /* Additional Glass Effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        /* Chat bubble example (using your variables) */
        .chat-bubble-left {
            background-color: var(--chat-bubble-left);
            border-radius: 20px 20px 20px 5px;
            padding: 15px;
            max-width: 80%;
            margin: 10px 0;
        }

        .chat-bubble-right {
            background-color: var(--chat-bubble-right);
            border-radius: 20px 20px 5px 20px;
            padding: 15px;
            max-width: 80%;
            margin: 10px 0 10px auto;
        }


        /* ================================
   RESPONSIVE LAYOUT FIXES
   ================================ */

/* Base container safety */
.arvr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

/* Text scaling */
.arvr-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.arvr-content p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
}

/* Visual scaling */
.arvr-visual {
  position: relative;
  min-width: 360px;
  height: 360px;
}

/* Holo cards responsive sizing */
.holo-card {
  width: 220px;
  height: 120px;
  font-size: 0.9rem;
}

/* ================================
   TABLET (≤ 1024px)
   ================================ */
@media (max-width: 1024px) {
  section {
    /* padding: 70px 30px;/ */
  }

  .arvr-container {
    gap: 40px;
  }

  .arvr-visual {
    min-width: 300px;
    height: 300px;
  }

  .holo-card {
    width: 200px;
    height: 110px;
  }
}

/* ================================
   MOBILE (≤ 768px)
   ================================ */
@media (max-width: 768px) {
  section {
    /* padding: 60px 20px; */
  }

  .arvr-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .arvr-content {
    max-width: 100%;
  }

  .arvr-content h2 {
    font-size: 1.6rem;
  }

  .arvr-content p {
    font-size: 0.95rem;
  }

  .arvr-visual {
    width: 100%;
    height: 260px;
  }

  .holo-card {
    width: 190px;
    height: 105px;
  }
}

/* ================================
   SMALL MOBILE (≤ 480px)
   ================================ */
@media (max-width: 480px) {
  section {
    /* padding: 50px 16px; */
  }

  .arvr-content h2 {
     font-size:1.9rem;
  }

  .arvr-content p {
    font-size: 1.1rem;
  }

  .arvr-visual {
    height: 230px;
  }

  .holo-card {
    width: 170px;
    height: 95px;
    font-size: 0.85rem;
  }
}

/* ================================
   ULTRA-SMALL DEVICES
   ================================ */
@media (max-width: 360px) {
  .holo-card {
    width: 155px;
    height: 90px;
  }
}
