:root {
      --primary-blue: #2563eb;
      --primary-dark: #1e40af;
      --accent-orange: #f59e0b;
      --accent-teal: #0d9488;
      --accent-purple: #7c3aed;
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --bg-white: #ffffff;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { background: var(--bg-white); color: var(--text-dark); font-family: 'Inter', 'Poppins', system-ui, sans-serif; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #e5e7eb; }
    ::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }

    .navbar-glass { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(37, 99, 235, 0.2); box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
    .navbar-brand { font-weight: 800; font-size: 1.9rem; background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange), var(--accent-teal)); -webkit-background-clip: text; background-clip: text; color: transparent !important; }
    .nav-link { font-weight: 500; margin: 0 6px; border-radius: 40px; transition: 0.2s; color: var(--text-dark) !important; cursor: pointer; }
    .nav-link:hover { background: var(--primary-blue); color: white !important; }
    .btn-primary-glow { background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple)); border: none; font-weight: 600; padding: 10px 28px; border-radius: 40px; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); transition: 0.3s; color: white; }
    .btn-primary-glow:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4); }

    /* Full Page Dropdown */
    .fullpage-dropdown { position: fixed; top: 70px; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(24px); border-top: 1px solid rgba(37, 99, 235, 0.3); border-bottom: 1px solid rgba(37, 99, 235, 0.2); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); z-index: 1050; padding: 2rem 0; animation: fadeSlideDown 0.4s ease forwards; display: none; max-height: 85vh; overflow-y: auto; }
    @keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
    .close-fullpage { position: absolute; top: 16px; right: 30px; font-size: 2rem; cursor: pointer; color: var(--primary-blue); background: rgba(0,0,0,0.08); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .close-fullpage:hover { color: var(--accent-orange); transform: scale(1.1); }
    .dropdown-column { flex: 1; min-width: 180px; margin-bottom: 1.5rem; }
    .dropdown-column h5 { color: var(--primary-blue); font-weight: 700; border-left: 3px solid var(--accent-orange); padding-left: 12px; margin-bottom: 1.2rem; }
    .dropdown-column a { display: block; color: var(--text-dark); text-decoration: none; padding: 8px 0; transition: 0.2s; font-size: 0.95rem; }
    .dropdown-column a:hover { color: var(--primary-blue); transform: translateX(8px); }
    .sub-dropdown { margin-left: 15px; border-left: 1px dashed rgba(37, 99, 235, 0.3); padding-left: 12px; margin-top: 6px; }
    .sub-dropdown a { font-size: 0.85rem; padding: 4px 0; color: var(--text-light); }
    .dropdown-carousel-buttons { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; padding: 1rem 0; border-top: 1px solid rgba(37, 99, 235, 0.2); }
    .carousel-nav-btn { background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1)); border: 1px solid var(--primary-blue); color: var(--primary-blue); padding: 12px 28px; border-radius: 60px; font-weight: 600; transition: 0.3s; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; }
    .carousel-nav-btn:hover { background: var(--primary-blue); color: white; transform: scale(1.02); }
    .carousel-indicator-dots { display: flex; justify-content: center; gap: 12px; align-items: center; }
    .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(37, 99, 235, 0.3); transition: 0.2s; cursor: pointer; }
    .dot.active { background: var(--accent-orange); width: 28px; border-radius: 10px; }
    .carousel-slide-container { overflow: hidden; position: relative; }
    .carousel-track { display: flex; transition: transform 0.5s ease-in-out; will-change: transform; }
    .carousel-slide { flex: 0 0 100%; padding: 0 1rem; }
    .columns-wrapper { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }

    /* Hero Carousel */
    .hero-carousel-item { height: 85vh; min-height: 600px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
    .hero-carousel-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.92)); z-index: 1; }
    .hero-caption { position: relative; z-index: 5; text-align: center; max-width: 800px; margin-top: 150px !important; animation: fadeInUp 1s ease; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .hero-caption h1 { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-blue), #12220f, var(--accent-teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .hero-caption .lead { font-size: 1.3rem; margin-bottom: 2rem; color: var(--text-dark); }
    
    .carousel-control-prev-icon, .carousel-control-next-icon { background-color: var(--primary-blue); border-radius: 50%; padding: 20px; transition: 0.3s; }
      
    /* Tech Cards - Clickable */
    .tech-card { background: var(--bg-white); border-radius: 28px; padding: 1.5rem; text-align: center; transition: all 0.3s; border: 1px solid #e5e7eb; height: 100%; box-shadow: 0 4px 12px rgba(0,0,0,0.05); cursor: pointer; }
    .tech-card:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.2); }
    .tech-logo { font-size: 2.5rem; margin-bottom: 0.75rem; display: inline-block; }
    .tech-stack-group { margin-bottom: 2rem; }
    .section-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 2rem; position: relative; display: inline-block; color: var(--text-dark); }
    .section-title:after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60%; height: 3px; background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple)); border-radius: 3px; }

    /* Custom Section Styles */
    #whatespace-bckgrnd-soft-dev { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); padding: 40px 0; }
    #leadining-soft-dev { background: linear-gradient(135deg, #eff6ff, #e0e7ff); padding: 60px 0; }
    #services-soft-dev { background: linear-gradient(135deg, #fef3c7, #fde68a); padding: 60px 0; }
    #leadining-soft-dev h1 { color: #102e70; text-align: center; padding: 20px; margin-bottom: 20px; font-weight: 700; }
    .leadining-soft-dev-p p { font-size: 1.1rem; line-height: 1.7; color: var(--text-dark); }
    .estd_year h4, .clients_count h4, .projects_delivered h4, .client_retentions_rate h4 { color: var(--primary-blue); font-weight: 700; }
    .mission_critical h3 { text-align: center; color: var(--accent-orange); font-size: 28px; font-weight: 700; padding: 30px; }
    .mission_critical p { color: var(--text-dark); font-size: 1.1rem; }
    .faster_time h4, .delivery_cost h4, .planning_time h4 { font-size: 18px; font-weight: 700; padding: 10px; }
    .faster_time h4 { color: #059669; }
    .delivery_cost h4 { color: var(--primary-blue); }
    .planning_time h4 { color: #d97706; }
    .dedicated_prdct_team { background: white; padding: 30px; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .dedicated_prdct_team h3 { text-align: center; color: var(--primary-blue); font-size: 28px; font-weight: 700; }
    .industries_we_Serve { background: white; padding: 30px; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .industries_we_Serve h3 { text-align: center; color: #2a4683; font-size: 55px; font-weight: 800; }
    
    .industry-btn { background: none; border: none; color: #134970; font-weight: 500; padding: 5px 12px; border-radius: 1px; transition: 0.2s; border-color: #ff0000; border-style: solid; border-width: 1px; margin: 5px; min-width: 200px; }
    .industry-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-2px); }

    .industry-content { display: none; margin-top: 20px; padding: 20px; background: linear-gradient(135deg, #f8fafc, #f1f5f9); border-radius: 1px; border-left: 4px solid var(--primary-blue); border-bottom: 4px solid #f90000; min-height: 600px; }
    .industry-content.active { display: block; animation: fadeSlide 0.4s ease; }

    /* Our Services Button Styles */
    .service-btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0; }
    .service-btn { background: linear-gradient(135deg, #fff, #f8fafc); border: 1px solid var(--primary-blue); color: var(--primary-blue); font-weight: 500; padding: 8px 16px; border-radius: 40px; transition: 0.3s; cursor: pointer; }
    .service-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-2px); }

    /* Responsive Images */
    .img-responsive { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
    
    /* Software Development Services */
    .software-services-section { background: linear-gradient(135deg, #f8fafc, #eff6ff); padding: 60px 0; }
    .development-btn { background: linear-gradient(135deg, #fff, #f8fafc); border: 1px solid var(--primary-blue); color: var(--primary-blue); font-weight: 500; margin: 5px; padding: 8px 20px; border-radius: 40px; transition: 0.3s; }
    .development-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-2px); }
    .development-content { display: none; margin-top: 30px; padding: 25px; background: white; border-radius: 24px; border-left: 5px solid var(--accent-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.08); animation: fadeSlide 0.4s ease; }
    .development-content.active { display: block; }

    /* Next Steps Section */
    .next-steps-section { background: linear-gradient(135deg, #1e293b, #0f172a); position: relative; overflow: hidden; }
    .next-steps-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="none" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90" stroke="white" stroke-width="0.5"/></svg>'); background-repeat: repeat; pointer-events: none; }
    .step-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 24px; padding: 1.5rem; margin: 1rem 0; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.2); }
    .step-card:hover { transform: translateX(10px); background: rgba(255,255,255,0.2); border-color: var(--accent-orange); }
    .step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; color: white; margin-bottom: 1rem; }

    /* Media Recording */
    .record-btn { background: linear-gradient(135deg, #ef4444, #dc2626); border: none; color: white; padding: 10px 20px; border-radius: 50px; transition: 0.3s; }
    .record-btn:hover { transform: scale(1.02); box-shadow: 0 4px 15px rgba(239,68,68,0.4); }
    .file-preview { margin-top: 10px; padding: 10px; background: #f1f5f9; border-radius: 12px; font-size: 0.85rem; }

    /* Footer Styles */
    .footer-modern { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%); position: relative; overflow: hidden; color: #e2e8f0; }
    .footer-modern::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><circle cx="20" cy="20" r="2" fill="white"/><circle cx="50" cy="50" r="3" fill="white"/><circle cx="80" cy="30" r="2" fill="white"/><circle cx="40" cy="80" r="2" fill="white"/><circle cx="90" cy="70" r="1.5" fill="white"/></svg>'); background-repeat: repeat; pointer-events: none; }
    .footer-modern h5 { color: white; font-weight: 700; margin-bottom: 1.5rem; position: relative; display: inline-block; }
    .footer-modern h5:after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal)); border-radius: 3px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 12px; transition: all 0.3s ease; }
    .footer-links li a { color: #cbd5e1; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
    .footer-links li a:hover { color: var(--accent-orange); transform: translateX(5px); }
    .footer-links li i { margin-right: 8px; color: var(--accent-teal); font-size: 0.85rem; }
    .social-icons { display: flex; gap: 15px; margin-top: 20px; }
    .social-icons a { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: all 0.3s ease; text-decoration: none; }
    .social-icons a:hover { background: var(--accent-orange); transform: translateY(-5px); color: white; }
    .footer-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 30px 0 20px; }
    .copyright { text-align: center; color: #94a3b8; font-size: 0.9rem; }
    
    @media (max-width: 768px) {
      .hero-caption h1 { font-size: 1.8rem; }
      .hero-caption .lead { font-size: 1rem; }
      .hero-carousel-item { height: 70vh; min-height: 500px; }
      .columns-wrapper { flex-direction: column; }
      .footer-modern .row > div { margin-bottom: 30px; }
      .industries_we_Serve h3 { font-size: 2rem; }
      .industry-btn { min-width: auto; font-size: 0.8rem; }
      .service-btn { font-size: 0.7rem; padding: 5px 10px; }
    }

    /* Modal Styles */
    .tech-modal .modal-content { background: linear-gradient(135deg, #fff, #f8fafc); border-radius: 28px; border: none; }
    .tech-modal-header { background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple)); color: white; border-radius: 28px 28px 0 0; padding: 1.5rem; }
    .tech-logo-large { font-size: 4rem; margin-bottom: 1rem; }

    @keyframes fadeSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
      
    .why-companies-work-with-us { background-color: #165618; padding: 60px 0; color: #ffffff; }
    .why-companies-work-with-us h2 { color: var(--accent-orange); margin-bottom: 1rem; }
    .why-companies-work-with-us p { color: #cbd5e1; }

    .software-service-content {
      min-height:200px;
      background-color: #e4f1d4;
      text-align: center;
      border-radius: 30px;
      border-left: 10px solid #6299dd;
      padding: 10px;
      margin-top: 50px;
      margin-left: 200px;
      margin-right: 200px;
      border-right: 10px solid #6299dd;
      margin-top:50px;
      margin-bottom:50px;
    }

    .software-service-content h5 {
      font-size: 3.25rem;
      font-weight: 700;
    }
