   :root {
            --primary: #FF6B00;
            --primary-dark: #E55A00;
            --secondary: #FF8C42;
            --accent: #FFAA70;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --success: #10b981;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 107, 0, 0.3);
        }

        .btn-secondary {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            background: #FF7A2E;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
            margin-right: 10px;

            
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 24px;
            /* color: var(--dark); */
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            left: 0;
            bottom: -5px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background:  url('../images/hero-background.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 0.3s;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 0.6s;
        }

        .hero-btns {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 0.9s;
        }

        .hero-btns .btn {
            margin: 0 10px;
        }

         /* Additional AI-focused styles that maintain your orange theme */
        .ai-highlights {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 1.2s;
        }

        .ai-highlight {
            text-align: center;
            max-width: 200px;
        }

        .ai-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .ai-showcase {
            background: #f1f5f9;
            padding: 80px 0;
        }

        .ai-showcase-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .ai-showcase-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .ai-showcase-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .ai-features {
            margin-top: 30px;
        }

        .ai-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .ai-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* New Professional AI Visualization */
        .ai-visual-container {
            position: relative;
            height: 400px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .neural-network {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .node {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
        }

        .node-1 { top: 20%; left: 20%; animation: pulse 2s infinite; }
        .node-2 { top: 20%; left: 50%; animation: pulse 2s infinite 0.2s; }
        .node-3 { top: 20%; left: 80%; animation: pulse 2s infinite 0.4s; }
        .node-4 { top: 50%; left: 10%; animation: pulse 2s infinite 0.6s; }
        .node-5 { top: 50%; left: 30%; animation: pulse 2s infinite 0.8s; }
        .node-6 { top: 50%; left: 70%; animation: pulse 2s infinite 1s; }
        .node-7 { top: 50%; left: 90%; animation: pulse 2s infinite 1.2s; }
        .node-8 { top: 80%; left: 20%; animation: pulse 2s infinite 1.4s; }
        .node-9 { top: 80%; left: 50%; animation: pulse 2s infinite 1.6s; }
        .node-10 { top: 80%; left: 80%; animation: pulse 2s infinite 1.8s; }

        .connection {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            transform-origin: left center;
            z-index: 1;
            opacity: 0.7;
        }

        .connection-1 { top: 20%; left: 20%; width: 30%; transform: rotate(0deg); animation: flow 3s linear infinite; }
        .connection-2 { top: 20%; left: 50%; width: 30%; transform: rotate(0deg); animation: flow 3s linear infinite 0.5s; }
        .connection-3 { top: 20%; left: 20%; width: 42%; transform: rotate(45deg); animation: flow 3s linear infinite 1s; }
        .connection-4 { top: 20%; left: 50%; width: 42%; transform: rotate(-45deg); animation: flow 3s linear infinite 1.5s; }
        .connection-5 { top: 50%; left: 10%; width: 20%; transform: rotate(90deg); animation: flow 3s linear infinite 2s; }
        .connection-6 { top: 50%; left: 30%; width: 40%; transform: rotate(0deg); animation: flow 3s linear infinite 2.5s; }

        .ai-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 0 30px rgba(255, 107, 0, 0.7);
            z-index: 3;
            animation: corePulse 4s ease-in-out infinite;
        }

        .data-flow {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 10px var(--secondary);
        }

        .flow-1 { top: 20%; left: 20%; animation: moveData 4s linear infinite; }
        .flow-2 { top: 20%; left: 80%; animation: moveData 4s linear infinite 1s; }
        .flow-3 { top: 80%; left: 20%; animation: moveData 4s linear infinite 2s; }
        .flow-4 { top: 80%; left: 80%; animation: moveData 4s linear infinite 3s; }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        @keyframes flow {
            0% { background: linear-gradient(90deg, transparent, var(--primary), transparent); }
            50% { background: linear-gradient(90deg, transparent, var(--secondary), transparent); }
            100% { background: linear-gradient(90deg, transparent, var(--primary), transparent); }
        }

        @keyframes corePulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 30px rgba(255, 107, 0, 0.7); }
            50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 50px rgba(255, 107, 0, 0.9); }
        }

        @keyframes moveData {
            0% { transform: translate(0, 0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translate(calc(150px - 100%), calc(150px - 100%)); opacity: 0; }
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .project-tag {
            background: rgba(255, 107, 0, 0.1);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Services Section */
        .services {
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 20%;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 2;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Domains Section */
        .domains {
            background: #f1f5f9;
        }

        .domains-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .domain-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .domain-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .domain-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }

        .domain-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Projects Section */
        .projects {
            background: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .project-img {
            height: 220px;
            background-size: cover;
            background-position: center;
        }

        .project-content {
            padding: 20px;
        }

        .project-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .project-content p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        /* About Section */
        .about {
            background: #f1f5f9;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-text {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: url('../images/about.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Careers Section */
        .careers {
            background: white;
        }

        .careers-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .careers-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .careers-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .career-benefits {
            margin-top: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
        }

        .careers-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: url('../images/career.jpg');
            background-size: cover;
            background-position: center;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 140, 66, 0.05));
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .office-locations {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }

        .office-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .office-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            transition: border 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary);
            bottom: -8px;
            left: 0;
        }

        .footer-col p {
            margin-bottom: 15px;
            color: #cbd5e1;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content, .contact-content, .careers-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .office-locations {
                grid-template-columns: 1fr;
            }

             .ai-showcase-content {
                grid-template-columns: 1fr;
            }
            
            .ai-highlights {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }

             .ai-visual-container {
                height: 300px;
            }
            
            .neural-network {
                width: 250px;
                height: 250px;
            }
            
            .ai-core {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .services-grid, .projects-grid, .domains-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero-btns .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
        }


        

.form-message {
  display: none;
  text-align: center;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.form-message.show {
  display: block;
  opacity: 1;
}

.form-message.success {
  color: #0a8800;
  background: #e8fce8;
}

.form-message.error {
  color: #b30000;
  background: #fde8e8;
}


/* ===== Loader Styles ===== */
.form-loader {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.form-loader.active {
  display: flex;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



  /* ==========================
   🌟 ICON STYLING (ALL SECTIONS)
   ========================== */
.ai-icon img,
.ai-feature-icon img,
.service-icon img,
.domain-icon img,
.benefit-icon img,
.contact-icon img,
.ai-core img,
.footer-col .social-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
    filter: brightness(0) invert(1); /* makes PNG icons white */
    transition: transform 0.3s ease, filter 0.3s ease;
}


.mobile-menu img,
.office-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
    filter: brightness(0) invert(0); /* keep icons black */
    transition: transform 0.3s ease, filter 0.3s ease;
}


/* Hover effect (slightly brightens) */
.ai-icon img:hover,
.ai-feature-icon img:hover,
.service-icon img:hover,
.domain-icon img:hover,
.contact-icon img:hover,
.benefit-icon img:hover,
.footer-col .social-links img:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 3px #ff7f50); /* subtle orange glow */
}

/* ==========================
   🌟 SIZE ADJUSTMENTS BY SECTION
   ========================== */
.contact-icon img {
    width: 28px;
    height: 28px;
}

.footer-col .social-links img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/* ==========================
   🌟 ALIGNMENT FIX
   ========================== */
.ai-icon,
.ai-feature-icon,
.service-icon,
.domain-icon,
.benefit-icon,
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
