   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-orange: #e8491d;
            --accent-orange: #ff7849;
            --dark-orange: #c73e1d;
            --white: #ffffff;
            --black: #0f0f0f;
            --gray-100: #f7f8fc;
            --gray-200: #e1e5e9;
            --gray-600: #343434;
            --shadow-light: rgba(232, 73, 29, 0.1);
            --shadow-medium: rgba(232, 73, 29, 0.2);
        }
        
        body {
            font-family: "Poppins-Regular";
            line-height: 1.6;
            color: var(--black);
            overflow-x: hidden;
            background: var(--white);
        }
@font-face {
    font-family: "OpenSans-Bold";
    src:  url("../fonts/OpenSans-Bold.ttf");
}
        @font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/Poppins-Regular.ttf)
}@font-face {
    font-family: "OpenSans-Regular";
    src:  url("../fonts/OpenSans-Regular.ttf");
}
h1, h2, h3 {
      margin: 0 0 1rem;
      color: #111834;
      line-height: 1.2;  font-family: "OpenSans-Bold";
    }      
/* Main Content */
        .main-content {
            margin-left: 0;
            min-height: 100vh;
        }
        
        /* Split Screen Hero */
        .hero {
            height: 100vh;
            display: grid; background: var(--gray-100);
            grid-template-columns: 1fr 1fr;
        }
        
        .hero-left {
           
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 0rem 2em 5em;
            position: relative;
        }
        
        /* .hero-left::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--primary-orange), transparent);
        } */
        
        .hero-content {
            max-width: 100%;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-orange);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--black);
        }
        
        .hero-highlight {
            color: var(--primary-orange);
            position: relative;
        }
        
        /* .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-orange);
            opacity: 0.3;
        } */
        
        .hero p {
            font-size: 1.1rem;
            color: var(--gray-600);
            margin-bottom: 3rem;
            line-height: 1.7;
        }
        
        .hero-right {
           
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        /* .bihar-map {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        } */
        
        /* .bihar-map svg {
            width: 80%;
            height: 80%;
            max-width: 500px;
            max-height: 500px;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
        } */
        
        /* .hero-right::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
        } */
        .btn-banner {padding-top: 0.6em; text-decoration: none;}
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap; }
        
      
        
      
        .services-button { padding-top: 4%;text-align: center;}
        /* Bento Grid Layout */
        .section {padding: 4rem 4rem;} 
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 755px;
            margin: 0 auto;
        }
        
        /* Overview - Bento Grid */
        .overview {background: var(--white); }
        
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 200px);
            gap: 1.5rem;
            margin-top: 0rem;
        }
        
        .bento-item {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .bento-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px var(--shadow-light);
        }
        
        .bento-large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .bento-wide { grid-column: span 2; }
        
        .bento-tall {  grid-row: span 2; }
        
        .bento-item h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.2rem;
        }
        
        .bento-item p {
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        .bento-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }
        
        .bento-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        /* Services - Card Stack */
        .services {background: var(--gray-100);  }
        
        .services-stack {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-stack {
            position: relative;
            height: 300px;
        }
        
        .service-card {
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .service-card:nth-child(1) {
            transform: rotate(-2deg);
            z-index: 3;
        }
        
        .service-card:nth-child(2) {
            transform: rotate(1deg);
            z-index: 2;
            background: var(--gray-100);
        }
        
        .service-card:nth-child(3) {
            transform: rotate(-1deg);
            z-index: 1;
            background: var(--gray-200);
        }
        
        .service-stack:hover .service-card:nth-child(1) {
            transform: rotate(0deg) translateY(-10px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }
        
        .service-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-orange);
            color: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* Industries - Simple Grid */
       
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .industry-card {
            background: var(--white);
            border-radius: 20px;
            padding:2rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(232, 73, 29, 0.15);
            border-color: var(--primary-orange);
        }
        
        .industry-header {
            display: flex;
            align-items: center;
            gap:1rem;
            margin-bottom:1.1rem;
        }
        
        .industry-icon-container {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            border-radius:10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(232, 73, 29, 0.2);
        }
        
        .industry-card:hover .industry-icon-container {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 15px 35px rgba(232, 73, 29, 0.3);
        }
        
        .industry-icon-large {
            font-size: 1.7rem;
            color: var(--white);
            transition: transform 0.4s ease;
        }
        
        .industry-card:hover .industry-icon-large { transform: scale(1.2); }
        
        .industry-header-content {flex: 1; }
        
        .industry-badge {
            display: inline-block;
            background: var(--primary-orange);
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .industry-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .industry-description {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .industry-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            justify-content: center;
        }
        
        .industry-stat {
            text-align: center;
            padding: 1rem;
            background: var(--gray-100);
            border-radius: 15px;
            flex: 1;
        }
        
        .industry-stat-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-orange);
            display: block;
            line-height: 1;
        }
        
        .industry-stat-label {
            font-size: 0.85rem;
            color: var(--gray-600);
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        .industry-features {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            justify-content: center;
        }
        
        .industry-feature {
            background: var(--gray-100);
            padding: 0.7rem 0.6rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--gray-600);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .industry-feature:hover {
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            background: var(--white);
            transform: translateY(-2px);
        }
        
        @keyframes rotate-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse-dot {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 4px var(--primary-orange);
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.2);
                box-shadow: 0 0 0 8px rgba(232, 73, 29, 0.3);
            }
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float-shape 8s ease-in-out infinite;
        }
        
        .floating-shape:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            border-radius: 50%;
            animation-delay: 0s;
        }
        
        .floating-shape:nth-child(2) {
            top: 20%;
            right: 15%;
            width: 40px;
            height: 40px;
            background: var(--accent-orange);
            transform: rotate(45deg);
            animation-delay: -2s;
        }
        
        .floating-shape:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 80px;
            height: 80px;
            background: var(--primary-orange);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: -4s;
        }
        
        .floating-shape:nth-child(4) {
            bottom: 15%;
            right: 10%;
            width: 50px;
            height: 50px;
            background: var(--accent-orange);
            border-radius: 50%;
            animation-delay: -6s;
        }
        
        @keyframes float-shape {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(90deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
            75% { transform: translateY(-30px) rotate(270deg); }
        }
        
    .technology-section {background-color: rgba(239, 239, 239, 1);
      text-align: center;padding: 5em;
    }
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 30px;
      max-width: 1036px;
      margin: auto;padding-top: 4em;padding-bottom: 4em;
    }

    .tech-item {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .tech-item svg {
      width: 60px;
      height: 60px;
      fill: #444;
      transition: transform 0.3s ease, fill 0.3s ease;
    }

    .tech-item:hover svg {
      transform: scale(1.1);
      fill: #007bff;
    }

    .tech-text {
      position: absolute;
      bottom: -25px;
      opacity: 0;
      font-size:16px;
      font-weight: bold;
      color: #212122;
      transition: all 0.3s ease;
      transform: translateY(10px);
    }

    .tech-item:hover .tech-text {
      opacity: 1;
      transform: translateY(0);
    }   
        /* Why Choose - Diagonal Split Layout */
        .why-choose {
            background: var(--white);
            color: var(--black);
            position: relative;
            overflow: hidden;
        }
/*         
        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, var(--gray-100) 0%, var(--white) 50%, var(--gray-100) 100%);
            z-index: 1;
        } */
        
        .why-choose .section-title {
            color: var(--black);
        }
        
        .why-choose .section-subtitle {
            color: var(--gray-600);
        }
        
        .why-diagonal-container {
            position: relative;
            z-index: 2;
            margin-top: 4rem;
        }
        
        .why-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin: 4rem 0;
            align-items: start;
            position: relative;
        }
        
        /* .why-row::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-orange), var(--accent-orange));
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(232, 73, 29, 0.3);
        } */
        
        .why-content {
            padding:2rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .why-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(232, 73, 29, 0.15);
            border-color: var(--primary-orange);
        }
        
        .why-content::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #fa683f1f, #ff764962);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .why-content:hover::before {
            opacity: 1;
        }
        
        .why-badge {
            display: inline-block;
            background: var(--primary-orange);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .why-title {
            font-size:1.6rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .why-description {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        
        .why-features {
            display: flex;
            flex-direction: column;
            gap: 0rem;
        }
        
        .why-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding:0.5rem;
            /* background: var(--white); */
            border-radius: 15px;
            /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
            transition: all 0.3s ease;
        }
        
        .why-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(232, 73, 29, 0.15);
        }
        
        .why-feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .why-feature-text {
            font-weight: 600;
            color: var(--black);
        }
.city-section {
  text-align: center;
  padding: 5px 5%;
  font-family: Arial, sans-serif;
}

.city-section h2 {line-height: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom:0.5em;
}

.city-section p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 40px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0px 4px 20px rgba(0,0,0,0.05); */
  /* max-width: 900px;
  margin: auto; */
}

.city-grid a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.city-grid a:hover {
  color: #e8491d;}
.city-grid a img {
  width: 16px;
  height: 16px;
}
        /* CTA - Split Design */
      .cta-section {
         background-color:rgba(239, 239, 239, 1);
        color: rgb(46, 45, 45);
        text-align: center;
     
        position: relative;
        overflow: hidden;
    } .cta-section h2 {
        font-size: 38px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .cta-section p {
        font-size: 18px;
        color: #252525;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }
        /* Responsive Design */
        @media (max-width: 1024px) {
            
            .hero {
                grid-template-columns: 1fr;
                height: auto;
            }
            
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }
            
            .bento-large,
            .bento-wide,
            .bento-tall {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .industry-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .industry-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .industry-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .tech-wave {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            
            .tech-wave::before {
                display: none;
            }
            
            .tech-items {
                padding: 0;
            }
            
            .why-row {
                grid-template-columns: 1fr !important;
                gap: 2rem;
                text-align: center;
            }
            
            .why-row::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {.city-grid {
    text-align: left;
    display: grid
;
    grid-template-columns: repeat(2, 1fr);}.city-section h2,.why-choose .section-title {

    font-size: 27px;}.section-subtitle{ font-size:15px;}
               .section, .technology-section {
        padding: 1.5rem 1rem;
        z-index: -2;}    .bento-grid {
        grid-template-columns: repeat(1, 1fr);}.tech-grid {
    display: grid
;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
    max-width: 100%;
    padding-top: 2em;
    padding-bottom: 2em;}
.why-diagonal-container {
    margin-top: 0rem;
}
            .section-header {
    margin-bottom: 0rem;
}
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .services-stack {
                grid-template-columns: 1fr;
            }
            
            .tech-cloud {
                min-height: auto;
            }
            
            .tech-pill {
                animation: none;
            }
        }
        

        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

         @media (max-width: 480px){.why-title {
    font-size: 1.3rem;}.why-description {
    font-size:15px;}.why-content {
    padding: 1rem}.why-row {margin: 1rem 0;}.why-feature-text {
    text-align: left;}    .city-section h2, .why-choose .section-title {
        font-size: 23px;
    }.city-grid {gap: 12px 0px;padding: 1px}    .cta-section h2 {
        font-size: 1.5rem;
    }.cta-section p {
    font-size: 16px;}}
    