/* =====================================================
   GLOBAL BASE: BODY, LINKS, NAVBAR, FOOTER (ALL PAGES)
   ===================================================== */

/* Body (unified) */
body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  
  padding-top: 0; /* prevent content under navbar */
}
@media (max-width: 991px) {
  body {
    padding-top: 0;
  }
}

/* Links */
a { color: #fff; text-decoration: none; }
a:hover { color: #0af; }

/* Navbar */
.navbar {
  transition: transform 0.35s ease, background 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  height: 100px;
  display: flex;
  align-items: center;
}
.navbar.scrolled { 
   background: rgba(0,0,0,0.95) !important;
   height: 70px; }
.navbar.hide-nav { transform: translateY(-100%); }

.navbar-nav { margin: 0 auto; }
.navbar .nav-link{
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
}
.navbar .dropdown-menu { background: #111; }
.dropdown-item { color: #ccc; }
.dropdown-item:hover { background: #0af; color: #000; }

/* Modern glassy dropdown style */
.navbar .dropdown-menu {
  background: rgba(10, 10, 10, 0.95);  /* dark glass */
  border-radius: 12px;
  border: 1px solid rgba(0,170,255,0.25);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  transform-origin: top;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out,
    visibility 0.18s ease-out;
}

/* Show animation on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Dropdown items */
.navbar .dropdown-item {
  padding: 9px 16px;
  color: #ddd;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

/* Hover effect with left accent line */
.navbar .dropdown-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #0af;
  transform: translateY(-50%);
  transition: width 0.18s ease;
}

.navbar .dropdown-item:hover {
  background: rgba(0,170,255,0.08);
  color: #fff;
  padding-left: 24px;
}

.navbar .dropdown-item:hover::before {
  width: 10px;
}

/* Optional: subtle divider between items */
.navbar .dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(255,255,255,0.04);
}



/* Navbar dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* Optional: avoid small gap that breaks hover */
  .navbar .dropdown-menu {
    margin-top: 0;
  }
}


/*=== FOOTER ===*/
/* ========= WIX-STYLE NEWSLETTER FOOTER ========= */

.newsletter-footer {
  background: #000;
  color: #f5f5f5;
  font-size: 0.9rem;
}

/* Top bar */
.newsletter-bar {
  border-bottom: 1px solid #222;
  padding: 60px 0 40px;
  background: #000;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-text h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.newsletter-text h2 span {
  font-style: italic;
  font-weight: 400;
}

.newsletter-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

.newsletter-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.newsletter-form input {
  background: #000;
  border: 1px solid #444;
  padding: 10px 14px;
  min-width: 260px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.newsletter-form button:hover {
  background: #e0e0e0;
}

/* visually-hidden label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Bottom main area */
.newsletter-footer-main {
  padding: 50px 0 35px;
  background: #000;
}

.footer-cols h5 {
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-cols p {
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-cols ul li {
  margin-bottom: 6px;
}

.footer-cols a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-cols a:hover {
  text-decoration: underline;
}

/* Social + copy */
.footer-social {
  margin: 10px 0 14px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  color: #ddd;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    flex: 1;
    min-width: 0;
  }
}


/* =====================================================
   HOME PAGE (index.html) – HERO, SLIDER, STATS, SOLUTIONS
   ===================================================== */

/* Video hero */
.hero {
  height: 100vh;
  position: relative;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(40%);
}
.hero .content { z-index: 2; }

/* Hero title text animation */
.hero-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  line-height: 1.1;
}
.hero-title span {
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
}


/* =====================================================
   SIMPLIFIED HERO - TITLE + PORTFOLIO BUTTON
   ==================================================== */

.hero {
  height: 100vh;
  position: relative;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(40%);
}

.hero-simple-content {
  z-index: 2;
  max-width: 90%;
}

/* Main title */
.hero-title-simple {
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #79bee1 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpBig 1.2s ease-out 0.5s forwards;
}

/* Portfolio button */
.hero-portfolio-btn {
  display: inline-block;
  padding: 15px 45px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: rgba(10,175,255,0.15);
  border: 2px solid rgba(10,175,255,0.4);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1s forwards;
}

.hero-portfolio-btn:hover {
  background: #0af;
  border-color: #0af;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,170,255,0.4);
}

/* Simple animations */
@keyframes fadeUpBig {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title-simple {
    letter-spacing: -1px;
    margin-bottom: 30px;
  }
  
  .hero-portfolio-btn {
    padding: 13px 35px;
    font-size: 1rem;
  }
}


/* Cards slider section */
.acce-cards-section .container { max-width: 1300px; }
.acce-card {
  position: relative;
  width: 95%;
  height: 420px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}
.acce-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

/* View More card */
.view-more-card {
  background: inherit;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}
.view-more-card:hover {
  border-color: rgba(0,150,255,0.4);
  background: inherit;
}
.view-more-card .view-more-btn {
  padding: 12px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  transition: 0.3s ease;
}
.view-more-card .view-more-btn:hover {
  background: #0af;
  border-color: #0af;
  color: #000;
}

/* Card text overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.card-overlay .top-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 12px;
}
.card-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.hover-text {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 10px;
}

/* Card hover */
.acce-card:hover img { opacity: 0; }
.acce-card:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}
.acce-card:hover .card-overlay {
  background: rgba(0,0,0,0.92);
}

/* Slider card layout */
.slide-card { flex: 0 0 25%; padding: 10px; }
.slider-wrapper { width: 100%; }

/* Projects / stats section */
.projects-section {
  position: relative;
  padding: 80px 0 70px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(45%);
  z-index: 0;
}
.projects-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
  z-index: 1;
}
.projects-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.projects-section h2 {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.projects-section h2 span { display: block; }
.projects-section p.subtitle {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.stats-row {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 25px;
  padding-top: 25px;
}
.stat-box h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #fff;
}
.stat-box span.plus { color: #0af; }
.stat-box p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  color: #ddd;
}

/* Industry solutions section */
.ind-sol-section {
  background: #000;
  color: #fff;
  padding: 30px 0;
}
.ind-sol-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.ind-sol-section p { color: #ccc; }

.industry-image {
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 12px;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solutions-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: auto;
  max-width: 350px;
  line-height: 1.9;
}


/* =====================================================
   CONTACT PAGE (contact.html) – HERO, CARDS, FORM, MAP
   ===================================================== */

.contact-hero {
  height: 60vh;
  position: relative;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1200&q=80") center/cover;
  filter: brightness(30%) blur(1px);
  z-index: 0;
}
.contact-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.contact-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.contact-hero p {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 30px;
}

/* Contact info cards */
.contact-section {
  padding: 100px 0;
  background: #000;
}
.contact-card {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}
.contact-card:hover {
  border-color: rgba(0, 170, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
}
.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0af, #00a0ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}
.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.contact-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-link {
  color: #0af;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Contact form section */
.form-section {
  background: linear-gradient(135deg, #111 0%, #000 100%);
  padding: 100px 0;
  position: relative;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,170,255,0.3), transparent);
}
.form-card {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 60px;
  backdrop-filter: blur(15px);
}
.form-control {
  background: rgba(17,17,17,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  background: rgba(17,17,17,0.9);
  border-color: #0af;
  box-shadow: 0 0 0 0.2rem rgba(0,170,255,0.2);
  color: #fff;
}
.form-control::placeholder { color: #888; }
.btn-contact {
  background: linear-gradient(135deg, #0af, #00a0ff);
  border: none;
  border-radius: 10px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,170,255,0.4);
  color: #000;
}

/* Map section */
.map-section {
  padding: 100px 0;
  background: #000;
}
.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}



/* new css added by ani -contact page*/

.contact-combined-card {
  background: rgba(17,17,17,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(14px);
}

.mini-contact i {
  font-size: 2rem;
  color: #0af;
  margin-bottom: 12px;
  display: inline-block;
}

.mini-contact h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.mini-contact a,
.mini-contact p {
  color: #ccc;
  font-size: 0.95rem;
}

.mini-contact a:hover {
  color: #0af;
}

.form-map-section {
  padding: 50px 0;
  background: #000;
}

.form-map-section .form-card {
  padding: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
}





/* Contact responsiveness */
@media (max-width: 768px) {
  .contact-hero h1 { font-size: 2.5rem; }
  .contact-card,
  .form-card { padding: 30px 20px; }
  .contact-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}


/* =====================================================
   SERVICE PAGES (web_development, SEO-SMM, ERP-CRM, etc.)
   ===================================================== */

.hero-section {
  padding: 170px 0 120px;
  text-align: center;
  background: linear-gradient(to bottom, #000 0%, #020202 100%);
}
.hero-section h1 {
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-section p {
  font-size: 1.2rem;
  max-width: 850px;
  margin: auto;
  opacity: 0.85;
  line-height: 1.7;
}

/* Generic content sections (if used) */
.content-section { padding: 80px 0; }
.content-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.content-section p,
.content-section li {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.8;
}

/* Main content wrapper and list styling */
.section-wrapper {
  padding: 140px 0 80px 0;
  max-width: 1100px;
  margin: auto;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.content-box {
  font-size: 18px;
  line-height: 1.9;
  background: #0c0c0c;
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid #0af;
}
.service-list {
  margin-left: 15px;
  padding-left: 18px;
}
.service-list li { margin-bottom: 6px; }

/* Testimonials block used across service pages */
.testimonial-section {
  max-width: 1100px;
  margin: 40px auto 20px auto;
  padding: 20px 0;
}
.testimonial-box {
  background: #0c0c0c;
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid #0af;
  font-size: 18px;
  line-height: 1.9;
}
.testimonial-box h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.testimonial-box p {
  margin-bottom: 12px;
  opacity: 0.9;
}
.testimonial-box a {
  color: #0af;
  text-decoration: none;
  font-size: 15px;
}
.testimonial-box a:hover {
  text-decoration: underline;
}


.content-box {
  font-size: 18px;
  line-height: 1.9;
  background: #0c0c0c;
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid #0af;
  text-align: justify;  /* Add this line */
}








/* =====================================================
   what we think
   ===================================================== */

.insights-section {
  padding: 120px 0 60px;
  background: #000;
}
.insights-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 1px;
}
.insight-card {
  position: relative;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.insight-card:hover { transform: translateY(-8px); }
.insight-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.insight-category {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
}
.insight-title {
  font-size: 24px;
  font-weight: 700;
}


/* WhatWeThink hero text overlay */
.hero {
  position: relative;
}

.hero-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-text-overlay h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-text-overlay p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  color: #ddd;
}


/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Heading */
.engineering-heading {
  text-align: center;
  padding: 60px 20px;
  background: #f4f7fb;
}
.engineering-heading h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1b1b1b;
  letter-spacing: 1px;
}
.engineering-heading span { color: #0077b6; }
.engineering-heading .highlight { color: #ff7600; }

/* Sections */
.section {
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.section.reverse { flex-direction: row-reverse; }
.img-box {
  width: 50%;
  position: relative;
}
.img-box img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}
.content {
  width: 50%;
  padding: 50px;
}

/* Overlay */
.image-overlay-box {
  position: absolute;
  top: 40px;
  left: 50px;
  display: flex;
  gap: 12px;
}
.image-overlay-line {
  width: 4px;
  height: 80px;
  background: #ffb400;
  animation: lineGrow 1s ease forwards;
}
.overlay-text {
  animation: fadeUp .9s ease forwards;
}
.overlay-text h3 {
  font-size: 26px;
  font-weight: 700;
}
.overlay-text p {
  font-size: 15px;
  opacity: .85;
}

@keyframes lineGrow {
  from { height: 0; opacity: 0; }
  to { height: 80px; opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .section {
    flex-direction: column;
    text-align: center;
  }
  .img-box,
  .content {
    width: 100%;
  }
  .content {
    padding: 25px;
  }
  .hero { height: 60vh; }
}






/* ===================== GLOBAL BASE ===================== */
body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  padding-top: 0;
}

@media (max-width: 991px) {
  body {
    padding-top: 0;
  }
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #0af;
}

/* ===================== NAVBAR ===================== */
.navbar {
  transition: transform 0.35s ease, background 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  height: 100px;
  display: flex;
  align-items: center;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  height: 70px;
}
.navbar.hide-nav {
  transform: translateY(-100%);
}

.navbar-nav {
  margin: 0 auto;
}
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
}
.navbar .dropdown-menu {
  background: #111;
}
.dropdown-item {
  color: #ccc;
}
.dropdown-item:hover {
  background: #0af;
  color: #000;
}

/* Modern glassy dropdown style */
.navbar .dropdown-menu {
  background: rgba(10, 10, 10, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(0, 170, 255, 0.25);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  transform-origin: top;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out,
    visibility 0.18s ease-out;
}

/* Show animation on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }
}

/* Dropdown items */
.navbar .dropdown-item {
  padding: 9px 16px;
  color: #ddd;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
}

/* Hover effect with left accent line */
.navbar .dropdown-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #0af;
  transform: translateY(-50%);
  transition: width 0.18s ease;
}

.navbar .dropdown-item:hover {
  background: rgba(0, 170, 255, 0.08);
  color: #fff;
  padding-left: 24px;
}

.navbar .dropdown-item:hover::before {
  width: 10px;
}

/* Optional: subtle divider between items */
.navbar .dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}



/* ===================== LIFE AT COMPANY PAGE ===================== */

/* HERO */
.life-hero {
  height: 90vh;
  position: relative;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, rgba(0, 170, 255, 0.05) 100%);
  overflow: hidden;
}
.life-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2070&q=80")
    center/cover;
  filter: brightness(40%) blur(1px);
  z-index: 0;
}
.life-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.life-hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.2s ease-out;
}
.life-hero h1 span {
  background: linear-gradient(135deg, #0af, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.life-hero p {
  font-size: 1.4rem;
  color: #ddd;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}
.btn-life-primary {
  background: linear-gradient(135deg, #0af, #00a0ff);
  color: #000;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}
.btn-life-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 170, 255, 0.4);
  color: #000;
}
.btn-life-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-life-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #0af;
  color: #0af;
}

/* COMPANY CULTURE SECTION */
.culture-section {
  padding: 70px 0;
  background: #000;
  position: relative;
}
.culture-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.4), transparent);
}
.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -1px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0af, #00a0ff);
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.culture-card {
  background: rgba(17, 17, 17, 0.6);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.culture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0af, #00a0ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.culture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 170, 255, 0.15);
  border-color: rgba(0, 170, 255, 0.3);
}
.culture-card:hover::before {
  transform: scaleX(1);
}
.culture-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #0af, #00a0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}
.culture-card:hover .culture-icon {
  transform: scale(1.1) rotate(5deg);
}
.culture-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.culture-card p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1rem;
}

/* TEAM SECTION */
.team-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.team-card {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  transition: all 0.4s ease;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: all 0.4s ease;
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-card:hover img {
  transform: scale(1.1);
}
.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.team-role {
  color: #0af;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.team-social {
  display: flex;
  gap: 15px;
}
.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
}
.team-social a:hover {
  background: #0af;
  color: #000;
  transform: translateY(-3px);
}
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}


/* PERKS SECTION */
.perks-section {
  padding: 120px 0;
  background: #000;
}
.perks-container {
  max-width: 1200px;
  margin: 0 auto;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 15px;
  border-left: 4px solid rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}
.perk-item:hover {
  background: rgba(0, 170, 255, 0.05);
  border-left-color: #0af;
  transform: translateX(10px);
}
.perk-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0af, #00a0ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.perk-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.perk-content p {
  color: #ccc;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .life-hero h1 {
    font-size: 3rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .culture-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .life-hero h1 {
    font-size: 2.5rem;
  }
  .life-hero p {
    font-size: 1.2rem;
  }
  .culture-card {
    padding: 40px 25px;
  }
}

@media (max-width: 576px) {
  .life-hero {
    height: 80vh;
  }
  .section-title {
    font-size: 2.5rem;
  }
}

/* ===================== IMAGE GALLERY ===================== */
.gallery-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,170,255,0.2);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.4s ease;
}

a[href*='unsplash'] {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

a[href*='unsplash']:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #0af;
  margin-bottom: 10px;
  transform: scale(0);
  transition: all 0.3s ease 0.2s;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: all 0.3s ease 0.2s;
}

a[href*='unsplash']:hover .gallery-overlay i {
  transform: scale(1);
}

a[href*='unsplash']:hover .gallery-overlay span {
  opacity: 1;
}

/* Responsive gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-img {
    height: 240px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}








/* about.css - COMPLETELY NEW BOLD DESIGN */



@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        display: block !important;
    }
}
/* BANNER SECTION CSS - Add to your existing about.css */

/* BANNER SECTION */
.banner-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/p-3.png") center/cover;
    filter: brightness(30%) blur(2px);
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    padding-right: 40px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #0af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-desc {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.banner-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #0af;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 500;
}

.banner-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.banner-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 100px rgba(0,170,255,0.2);
}

.banner-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0af, #00a0ff);
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,170,255,0.4);
    transform: rotate(-2deg);
}

.overlay-badge {
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .banner-title {
        font-size: 2.5rem;
    }
    .banner-stats {
        gap: 30px;
    }
    .banner-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        padding: 80px 0;
    }
    .banner-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .banner-title {
        font-size: 2rem;
    }
    .banner-stats {
        flex-direction: column;
        gap: 20px;
    }
    .banner-desc {
        font-size: 1.1rem;
    }
    .banner-image img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 1.8rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}


/* HERO - BOLD NEW DESIGN */
.about-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    background: linear-gradient(135deg, #0af, #00a0ff);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,170,255,0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #0af 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(0,170,255,0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(0,170,255,0.8)); }
}

.hero-desc {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #0af;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0af 0%, #00a0ff 100%);
    color: #000;
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 20px 40px rgba(0,170,255,0.4);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,170,255,0.6);
    color: #000;
}

/* STORY SECTION */
.story-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #0af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-lead {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.story-visual {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0,170,255,0.2);
}

.visual-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #0af;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(5deg);
    box-shadow: 0 10px 30px rgba(0,170,255,0.4);
}

.timeline-point {
    margin-bottom: 50px;
    padding-left: 40px;
    position: relative;
}

.timeline-point::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, #0af, transparent);
}

.year {
    display: inline-block;
    background: linear-gradient(135deg, #0af, #00a0ff);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-point h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.timeline-point p {
    color: #ccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* WHY SECTION */
.why-section {
    padding: 140px 0;
    background: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 60px 30px;
    border: 1px solid rgba(0,170,255,0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0af, #00a0ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: #0af;
    box-shadow: 0 40px 80px rgba(0,170,255,0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0af, #00a0ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 20px 40px rgba(0,170,255,0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.7;
}

/* PROCESS SECTION */
.process-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 50px 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0af, #00a0ff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(0,170,255,0.3);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.step p {
    color: #ccc;
    line-height: 1.7;
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .hero-stats { gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .story-img { height: 300px; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 576px) {
    .about-hero { height: 90vh; }
    .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .newsletter-form { width: 100%; }
    .newsletter-form input { flex: 1; min-width: 0; }
}






/* leadership.css - FRESH MODERN DESIGN */


/* HERO */
.leadership-hero {
    height: 60vh; position: relative; 
    display: flex; align-items: center;
    background: linear-gradient(135deg, #000 0%, rgba(0,170,255,0.05) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("../images/p-4.png") center/cover;
    filter: brightness(30%) blur(1px); z-index: 1;
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }

.hero-badge {
    background: linear-gradient(135deg, #0af, transparent);
    color: #000; padding: 12px 32px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; display: inline-block;
    box-shadow: 0 10px 30px rgba(0,170,255,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,170,255,0.4); }
    50% { box-shadow: 0 20px 40px rgba(0,170,255,0.6); }
}

.hero-title {
    font-size: 5rem; font-weight: 900; line-height: 1.1;
    margin: 30px 0 20px 0; background: linear-gradient(135deg, #fff 0%, #0af 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-title span { display: block; }
.hero-desc { font-size: 1.3rem; color: #ccc; max-width: 600px; margin: 0 auto; }

/* LEADERS GRID */
.leaders-section { padding: 120px 0; background: #000; }
.leaders-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px; max-width: 1100px; margin: 0 auto;
}

.leader-card {
    background: rgba(17,17,17,0.8); border-radius: 20px;
    padding: 40px 30px; position: relative; overflow: hidden;
    border: 1px solid rgba(0,170,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.leader-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #0af; box-shadow: 0 40px 80px rgba(0,170,255,0.2);
    background: rgba(17,17,17,0.95);
}

.leader-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #0af, #fff, #0af);
    animation: shimmer 2s infinite;
}

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

.leader-badge {
    position: absolute; top: 20px; right: 20px;
    background: #0af; color: #000; padding: 6px 16px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 1px;
}

.leader-image {
    width: 120px; height: 120px; margin: 0 auto 25px;
    border-radius: 50%; position: relative; overflow: hidden;
    border: 3px solid rgba(0,170,255,0.3);
}

.leader-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: all 0.4s ease;
}

.leader-card:hover .leader-image img { transform: scale(1.1); }

.leader-status {
    position: absolute; bottom: 8px; right: 8px;
    width: 12px; height: 12px; border-radius: 50%;
    box-shadow: 0 0 0 3px #000;
}

.leader-status.online { background: #00ff88; animation: pulse-status 2s infinite; }
.leader-status.active { background: #0af; animation: pulse-status 1.5s infinite; }

@keyframes pulse-status {
    0% { box-shadow: 0 0 0 0 rgba(0,255,136,0.7); }
    70% { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.leader-info h3 {
    font-size: 1.6rem; font-weight: 700; margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.role {
    color: #0af; font-weight: 600; font-size: 0.95rem;
    margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase;
}

.experience {
    color: #666; font-size: 0.85rem; font-weight: 500;
    margin-bottom: 15px; letter-spacing: 0.5px;
}

.leader-info p {
    color: #ccc; font-size: 0.95rem; line-height: 1.6;
    margin: 0;
}



/* MEET OUR TEAM - NEW CATEGORY DESIGN */
.meet-team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}

.section-badge {
    background: linear-gradient(135deg, #0af, #00a0ff);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(10, 170, 255, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #0af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.team-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.team-category {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(10, 170, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-category:hover {
    transform: translateY(-10px);
    border-color: #0af;
    box-shadow: 0 30px 60px rgba(10, 170, 255, 0.15);
}

.team-category.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0af, #fff, #0af);
    animation: shimmer 2s infinite;
}

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

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.category-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.category-count {
    background: #0af;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-member.compact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.team-member.compact:hover {
    background: rgba(10, 170, 255, 0.1);
    border-left-color: #0af;
    transform: translateX(10px);
}

.team-member.compact.highlighted {
    background: linear-gradient(135deg, rgba(10, 170, 255, 0.15), rgba(0, 160, 255, 0.1));
    border-left-color: #0af;
}

.team-member img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: rgba(10, 170, 255, 0.5);
}

.member-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px 0;
}

.member-info .role {
    font-size: 0.85rem;
    color: #0af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0af;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .team-categories {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-stats {
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .meet-team-section {
        padding: 80px 0;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .team-member.compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}







/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .leaders-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .leadership-hero { height: 70vh; }
    .hero-title { font-size: 2.8rem; }
    .leaders-section { padding: 80px 0; }
    .newsletter-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .leader-card { padding: 30px 20px; }
}

/* =====================================================
   RESPONSIVE FIXES – APPEND ONLY (NO EXISTING CODE TOUCHED)
   ===================================================== */

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */
@media (max-width: 991px) {
  .navbar {
    height: auto;
    padding: 10px 15px;
    background: rgba(0,0,0,0.95);
  }

  .navbar-nav {
    margin: 20px 0;
    text-align: center;
  }

  .navbar .nav-link {
    margin: 10px 0;
    font-size: 1.05rem;
  }

  .navbar .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #111;
    box-shadow: none;
    border-radius: 8px;
  }
}

/* ---------- HERO SECTION ---------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
    bottom: 45%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero .content h1 {
    font-size: 2rem;
  }

  .hero .content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    width: 100%;
  }

  .hero .content {
    padding: 0 15px;
  }
}

/* ---------- CARD SLIDER ---------- */
@media (max-width: 1200px) {
  .slide-card { flex: 0 0 33.33%; }
}

@media (max-width: 992px) {
  .slide-card { flex: 0 0 50%; }

  .acce-card,
  .view-more-card {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .slide-card { flex: 0 0 100%; }

  .acce-card,
  .view-more-card {
    height: 340px;
  }

  .card-overlay h3 {
    font-size: 1.15rem;
  }

  .hover-text {
    font-size: 0.9rem;
  }
}

/* ---------- PROJECT STATS ---------- */
@media (max-width: 768px) {
  .projects-section h2 {
    font-size: 2rem;
  }

  .projects-section p.subtitle {
    font-size: 0.85rem;
  }

  .stat-box h3 {
    font-size: 1.6rem;
  }
}

/* ---------- INDUSTRY + SOLUTIONS ---------- */
@media (max-width: 992px) {
  .industry-image {
    height: 280px;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .industry-image {
    height: 240px;
  }

  .solutions-list {
    max-width: 100%;
    text-align: left;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 768px) {
  .newsletter-text h2 {
    font-size: 1.6rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-cols {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ---------- BUTTONS ---------- */
@media (max-width: 576px) {
  .btn,
  .btn-lg {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

/* =====================================================
   ABOUT PAGE – RESPONSIVE FIXES (APPEND ONLY)
   ===================================================== */

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- BANNER SECTION ---------- */
@media (max-width: 992px) {
  .banner-content {
    padding-right: 0;
    text-align: center;
  }

  .banner-stats {
    justify-content: center;
  }

  .banner-image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: 80px 0;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-desc {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .banner-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .banner-image img {
    height: 280px;
  }
}

/* ---------- ABOUT HERO ---------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 90vh;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-btn {
    padding: 14px 36px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 18px;
  }
}

/* ---------- STORY SECTION ---------- */
@media (max-width: 992px) {
  .story-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 100px 0;
  }

  .story-img {
    height: 300px;
  }

  .visual-badge {
    right: 10px;
    top: 10px;
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .timeline-point {
    padding-left: 30px;
  }

  .timeline-point::before {
    left: 10px;
  }
}

@media (max-width: 576px) {
  .timeline-point h3 {
    font-size: 1.4rem;
  }

  .timeline-point p {
    font-size: 1rem;
  }
}

/* ---------- WHY SECTION ---------- */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    padding: 50px 25px;
  }
}

@media (max-width: 576px) {
  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.4rem;
  }
}

/* ---------- PROCESS SECTION ---------- */
@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .step {
    padding: 40px 15px;
  }

  .step-number {
    width: 65px;
    height: 65px;
    font-size: 1.2rem;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 768px) {
  .newsletter-text h2 {
    font-size: 1.6rem;
  }

  .newsletter-inner {
    text-align: center;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-cols {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ---------- BUTTONS ---------- */
@media (max-width: 576px) {
  .btn,
  .hero-btn {
    font-size: 0.95rem;
    padding: 12px 26px;
  }
}

/* =====================================================
   CONTACT PAGE – RESPONSIVE FIXES (APPEND ONLY)
   ===================================================== */

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- CONTACT HERO ---------- */
@media (max-width: 992px) {
  .contact-hero {
    height: 60vh;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 55vh;
  }

  .contact-hero h1 {
    font-size: 2.4rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 50vh;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}

/* ---------- CONTACT CARDS ---------- */
@media (max-width: 992px) {
  .contact-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-card {
    padding: 35px 25px;
  }

  .contact-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
}

/* ---------- FORM SECTION ---------- */
@media (max-width: 992px) {
  .form-section {
    padding: 80px 0;
  }

  .form-card {
    padding: 45px 35px;
  }
}

@media (max-width: 768px) {
  .form-card {
    padding: 35px 25px;
  }

  .form-card h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .form-control {
    font-size: 0.95rem;
    padding: 13px 16px;
  }

  .btn-contact {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}

/* ---------- MAP SECTION ---------- */
@media (max-width: 992px) {
  .map-container {
    height: 350px;
  }

  .map-container iframe {
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 576px) {
  .map-container {
    height: 280px;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-text h2 {
    font-size: 1.6rem;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-cols {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ---------- BUTTONS ---------- */
@media (max-width: 576px) {
  .btn,
  .btn-lg {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}


/* =====================================================
   SERVICE PAGE (DATABASE MANAGEMENT) – RESPONSIVE FIXES
   APPEND ONLY – DO NOT MODIFY EXISTING CSS
   ===================================================== */

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- MAIN CONTENT WRAPPER ---------- */
@media (max-width: 992px) {
  .section-wrapper {
    padding: 120px 20px 70px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-wrapper {
    padding: 100px 15px 60px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .content-box {
    padding: 28px;
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 576px) {
  .section-wrapper {
    padding: 90px 12px 50px;
  }

  .section-title {
    font-size: 26px;
  }

  .content-box {
    padding: 22px;
    font-size: 15.5px;
  }
}

/* ---------- LIST STYLING ---------- */
@media (max-width: 768px) {
  .service-list {
    margin-left: 10px;
    padding-left: 15px;
  }

  .service-list li {
    margin-bottom: 10px;
  }
}

/* ---------- TESTIMONIAL SECTION ---------- */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 30px 20px;
  }

  .testimonial-box {
    padding: 30px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .testimonial-box {
    padding: 24px 20px;
    font-size: 15px;
  }

  .testimonial-box h3 {
    font-size: 22px;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-text h2 {
    font-size: 1.6rem;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-cols {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ---------- BUTTON & LINK SAFETY ---------- */
@media (max-width: 576px) {
  .btn,
  .btn-lg {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

/* =====================================================
   SERVICE PAGE (ERP & CRM) – RESPONSIVE FIXES
   APPEND ONLY – NO EXISTING CSS MODIFIED
   ===================================================== */

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- MAIN CONTENT WRAPPER ---------- */
@media (max-width: 992px) {
  .section-wrapper {
    padding: 120px 20px 70px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-wrapper {
    padding: 100px 15px 60px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .content-box {
    padding: 28px;
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 576px) {
  .section-wrapper {
    padding: 90px 12px 50px;
  }

  .section-title {
    font-size: 26px;
  }

  .content-box {
    padding: 22px;
    font-size: 15.5px;
  }
}

/* ---------- LIST READABILITY ---------- */
@media (max-width: 768px) {
  .service-list {
    margin-left: 10px;
    padding-left: 15px;
  }

  .service-list li {
    margin-bottom: 10px;
  }
}

/* ---------- TESTIMONIAL SECTION ---------- */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 30px 20px;
  }

  .testimonial-box {
    padding: 30px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .testimonial-box {
    padding: 24px 20px;
    font-size: 15px;
  }

  .testimonial-box h3 {
    font-size: 22px;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-text h2 {
    font-size: 1.6rem;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-cols {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ---------- BUTTON & LINK SAFETY ---------- */
@media (max-width: 576px) {
  .btn,
  .btn-lg {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}
.hero-title {
  pointer-events: none;
}

/* =====================================================
   WHAT WE THINK – RESPONSIVE FIXES (APPEND ONLY)
   NO DESIGN CHANGES
   ===================================================== */

/* ---------- SECTION STACKING ---------- */
@media (max-width: 900px) {
  .section {
    flex-direction: column;
    padding: 40px 0;
  }

  .section.reverse {
    flex-direction: column;
  }

  .img-box,
  .content {
    width: 100%;
  }

  .content {
    padding: 25px 20px;
    text-align: center;
  }
}

/* ---------- IMAGE SCALING ---------- */
@media (max-width: 768px) {
  .img-box img {
    max-height: 260px;
    object-fit: cover;
  }
}

/* ---------- IMAGE OVERLAY FIX ---------- */
@media (max-width: 768px) {
  .image-overlay-box {
    position: absolute;
    top: 20px;
    left: 20px;
    gap: 10px;
  }

  .image-overlay-line {
    height: 60px;
  }

  .overlay-text h3 {
    font-size: 20px;
  }

  .overlay-text p {
    font-size: 14px;
  }
}

/* ---------- HEADING RESPONSIVE ---------- */
@media (max-width: 768px) {
  .engineering-heading h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .engineering-heading h1 {
    font-size: 22px;
  }
}

/* ---------- HERO IMAGE ---------- */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
}

/* ---------- TEXT SAFETY ---------- */
@media (max-width: 576px) {
  .content h2 {
    font-size: 22px;
  }

  .content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}










/* ================= INTERNSHIP PAGE ================= */

/* Hero */
.intern-hero {
  
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top left, rgba(0,170,255,0.2), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0,170,255,0.08), transparent 55%),
              #000;
  position: relative;
}

.intern-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.intern-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,170,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0af;
  margin-bottom: 14px;
}

.intern-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.intern-title span {
  color: #0af;
}

.intern-subtitle {
  max-width: 540px;
  color: #ccc;
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.intern-cta-group .btn {
  margin-right: 12px;
  margin-bottom: 10px;
}

.intern-btn-primary {
  background: linear-gradient(120deg, #0af, #38bdf8);
  color: #000;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 12px 30px rgba(0,170,255,0.35);
}

.intern-btn-primary:hover {
  background: linear-gradient(120deg, #0ac, #22c1ff);
  color: #000;
}

.intern-btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  color: #fff;
  background: transparent;
}

.intern-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
}

/* Meta stats */
.intern-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.intern-meta h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.intern-meta p {
  font-size: 0.85rem;
  color: #aaa;
}

/* Glass card */
.intern-glass-card {
  background: radial-gradient(circle at top, rgba(0,170,255,0.15), transparent 70%);
  border-radius: 18px;
  border: 1px solid rgba(0,170,255,0.3);
  padding: 26px 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  position: relative;
  z-index: 1;
}

.intern-glass-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.intern-glass-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.intern-glass-card li {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intern-glass-card i {
  color: #0af;
}

.intern-note {
  font-size: 0.8rem;
  color: #999;
}

/* Section head */
.section-head {
  margin-bottom: 32px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0af;
  margin-bottom: 6px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-head p {
  color: #bbb;
  font-size: 0.9rem;
}

/* Benefits */
.intern-benefits {
  padding: 70px 0 60px;
  background: #020202;
}

.benefit-card {
  background: linear-gradient(145deg, #050505, #0a0a0a);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 22px 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,170,255,0.2), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.95);
  border-color: rgba(0,170,255,0.55);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0,170,255,0.12);
  color: #0af;
  margin-bottom: 14px;
}

.benefit-card h5 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.87rem;
  color: #ccc;
}

/* Timeline */
.intern-timeline {
  padding: 70px 0 60px;
  background: #000;
}

.timeline-wrapper {
  position: relative;
  margin-top: 20px;
  padding-left: 18px;
}

.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(#0af, transparent);
  opacity: 0.5;
}

.timeline-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 26px;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #0af;
  box-shadow: 0 0 0 6px rgba(0,170,255,0.18);
}

.timeline-content h5 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.86rem;
  color: #bbb;
}

/* Apply section */
.intern-apply {
  padding: 80px 0 90px;
  background: radial-gradient(circle at top right, rgba(0,170,255,0.15), transparent 55%),
              #020202;
}

.apply-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.apply-text {
  font-size: 0.96rem;
  color: #ccc;
  max-width: 460px;
}

.apply-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.apply-list li {
  font-size: 0.9rem;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Form card */
.apply-card {
  background: rgba(4,4,4,0.96);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 24px 26px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.95);
}

.apply-card .form-group label {
  font-size: 0.85rem;
  color: #ccc;
}

.apply-card .form-control {
  background: #050505;
  border-radius: 10px;
  border: 1px solid #333;
  color: #fff;
  font-size: 0.9rem;
}

.apply-card .form-control:focus {
  border-color: #0af;
  box-shadow: 0 0 0 1px rgba(0,170,255,0.5);
}

.apply-card .form-control::placeholder {
  color: #777;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .intern-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .intern-title {
    font-size: 2.4rem;
  }
  .intern-meta {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .intern-hero {
    text-align: left;
  }
  .intern-meta {
    justify-content: flex-start;
  }
  .apply-title {
    font-size: 1.8rem;
  }
  .apply-card {
    margin-top: 10px;
  }
}










/* ================ PRODUCTS PAGE ================ */

.products-hero {
  min-height: 36vh;
  padding-top: 130px;
  padding-bottom: 70px;
  background: radial-gradient(circle at top left, rgba(0,170,255,0.2), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0,170,255,0.08), transparent 55%),
              #000;
  position: relative;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.products-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,170,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0af;
  margin-bottom: 14px;
}

.products-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.products-title span {
  color: #0af;
}

.products-subtitle {
  font-size: 0.96rem;
  color: #ccc;
  max-width: 540px;
  margin-bottom: 16px;
}

.products-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #ddd;
}

.products-highlights li {
  margin-bottom: 6px;
}

/* Right hero card */
.products-hero-card {
  background: rgba(4,4,4,0.96);
  border-radius: 18px;
  border: 1px solid rgba(0,170,255,0.35);
  padding: 22px 22px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  backdrop-filter: blur(14px);
}

.products-hero-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.products-hero-card p {
  font-size: 0.86rem;
  color: #bbb;
  margin-bottom: 10px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-tags span {
  font-size: 0.78rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

/* Products grid */
.products-grid-section {
  padding: 70px 0 80px;
  background: #020202;
}

.product-card {
  background: linear-gradient(145deg, #050505, #0a0a0a);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 22px 20px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

  min-height: 420px;   /* 👈 eta add kor */
}

.product-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card a {
  text-decoration: none;
  font-weight: 500;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,170,255,0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,1);
  border-color: rgba(0,170,255,0.6);
}

.product-card:hover::before {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}

.product-badge.badge-blue {
  border-color: rgba(56,189,248,0.7);
  color: #38bdf8;
}

.product-badge.badge-green {
  border-color: rgba(34,197,94,0.7);
  color: #22c55e;
}

.product-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
  padding-right: 80px;
}

.product-tagline {
  font-size: 0.86rem;
  color: #ccc;
  margin-bottom: 10px;
}

.product-points {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: #ddd;
}

.product-points li {
  margin-bottom: 4px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.product-category {
  color: #aaa;
}

/* Fix clickable link */
.product-link {
    font-size: 0.82rem;
    color: #0af;
    text-decoration: none;
    display: inline-block;      /* Makes link properly clickable */
    padding: 8px 12px;          /* Larger touch target */
    border-radius: 6px;         /* Optional hover effect */
    transition: background 0.2s ease;
    z-index: 2;                 /* Above card overlay */
    position: relative;
}

.product-link:hover {
    background: rgba(0, 170, 255, 0.1);
}

.product-card {
    overflow: visible;          /* Allow links to be clickable */
}

/* Hover overlay shouldn't block clicks */
.product-card::before {
    pointer-events: none;       /* Allows clicks through overlay */
}


.product-link i {
  font-size: 0.8rem;
}

/* Note */
.products-note p {
  font-size: 0.86rem;
  color: #aaa;
  margin-top: 18px;
}
.product-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    min-height: 196px;
}

.product-footer {
    margin-top: auto;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .product-card {
        padding: 1rem;
    }
    .product-footer {
        padding-top: 0.75rem;
    }
}


/* Responsive */
@media (max-width: 991px) {
  .products-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .products-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .products-hero {
    text-align: left;
  }
}










/* ====== PORTFOLIO PAGE ====== */

/* hero bar like screenshot */
.portfolio-hero {
  background: #000;
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid #111;
}

.portfolio-hero .hero-kicker {
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.portfolio-hero h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.portfolio-hero .hero-sub {
  font-size: 0.95rem;
  color: #ccc;
}

/* main area */
.portfolio-main {
  padding: 50px 0 60px;
}

/* left sidebar */
.portfolio-sidebar {
  border-top: 2px solid #0af;
  border-bottom: 1px solid #111;
}

.sidebar-item {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 10px 0;
  color: #ddd;
  font-size: 0.9rem;
  border-bottom: 1px solid #111;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.sidebar-item:hover {
  color: #0af;
  padding-left: 4px;
}

.sidebar-item.active {
  color: #0af;
  font-weight: 600;
}

/* right content */
.portfolio-content h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.portfolio-content p {
  font-size: 0.92rem;
  color: #ddd;
  line-height: 1.7;
}

/* portfolio cards */
/* REPLACE your existing portfolio card CSS with this modern glassmorphism design */
/* NEW METALLIC HOLOGRAPHIC CARDS - DELETE old portfolio CSS first */

.portfolio-grid {
  margin-top: 40px;
}

.portfolio-card {
  background: linear-gradient(145deg, #1e1e1e, #0a0a0a);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(10, 170, 255, 0.1) 20%,
    rgba(0, 255, 255, 0.1) 50%,
    rgba(10, 170, 255, 0.1) 80%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.portfolio-card:hover {
  transform: translateY(-18px);
  box-shadow: 
    0 30px 60px rgba(10, 170, 255, 0.25),
    0 0 0 1px rgba(10, 170, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.portfolio-card:hover::before {
  opacity: 1;
  animation: shimmer 2s infinite;
}

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

.portfolio-thumb {
  width: 100%;
  height: 255px;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
  filter: saturate(1.1);
}

.portfolio-card:hover .portfolio-thumb img {
  filter: saturate(1.3) brightness(1.05);
  transform: scale(1.15);
}

.portfolio-card .card-body {
  padding: 30px 25px;
  position: relative;
  z-index: 2;
}

.portfolio-card h5 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
}

.portfolio-card h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0af, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover h5::after {
  opacity: 1;
}

.view-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(10, 170, 255, 0.2), rgba(0, 255, 255, 0.1));
  border: 2px solid rgba(10, 170, 255, 0.4);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.view-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.view-link:hover {
  background: linear-gradient(135deg, #0af, #00f0ff);
  border-color: #0af;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(10, 170, 255, 0.4);
}

.view-link:hover::before {
  left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-thumb {
    height: 215px;
  }
  
  .portfolio-card:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 576px) {
  .portfolio-thumb {
    height: 195px;
  }
}




/* Portfolio hero with background image */
.portfolio-hero {
  padding: 140px 0 80px 0;      /* top space so it clears navbar */
  text-align: center;
  background: url("asset/images/portfolio-hero.jpg") center/cover no-repeat,
              #000;             /* fallback color */
}
.portfolio-hero .hero-kicker {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.85rem;
  color: #bbb;
  margin-bottom: 15px;
}
.portfolio-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 15px;
}
.portfolio-hero .hero-sub {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}





/* =====================================================
   TECHNOLOGY PAGE
   ===================================================== */

.tech-intro-section {
  background: #000;
  color: #f5f5f5;
}

.tech-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: none;
}

.tech-lead {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 0.5rem;
}

.tech-text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
}

/* main strip (top 6 cards similar to original site) */
.tech-strip-section {
  background: #050505;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.tech-main-row {
  border: 1px solid #222;
}

.tech-main-card {
  border-right: 1px solid #222;
}

.tech-main-card:last-child {
  border-right: none;
}

.tech-main-inner {
  background: #000;
  text-align: center;
  padding: 18px 10px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tech-main-inner img {
  max-width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.tech-main-inner h5 {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.04em;
  margin: 0;
  color: #e0e0e0;
}

.tech-main-inner:hover {
  background: #020b13;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

/* secondary logo grid */
.tech-logo-grid {
  background: #000;
}

.tech-logo-grid img {
  max-width: 90px;
  height: auto;
  filter: grayscale(10%);
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.2s ease, filter 0.2s ease;
}

.tech-logo-grid img:hover {
  transform: translateY(-4px);
  opacity: 1;
  filter: grayscale(0%);
}
/* make tech cards and logos clickable without underline */
.tech-main-inner,
.tech-logo-grid a {
  text-decoration: none;
  color: inherit;
}

.tech-main-inner:hover h5 {
  color: #0af;
}

.tech-banner {
  background: #000;
  border-bottom: 1px solid #111;
}

.tech-banner-inner {
  position: relative;
}

.tech-banner-img {
  width: 100%;
  height: 310px;              /* same height you liked */
  object-fit: cover;
  display: block;
}

/* centered overlay text */
.tech-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}

.tech-banner-text h1 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-banner-text p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #ddd;
}
@media (max-width: 767.98px) {

  .tech-banner-img {
    height: 310px;              /* shorter banner on mobile */
  }

  .tech-banner-text h1 {
    font-size: 1.7rem;
  }

  .tech-banner-text p {
    font-size: 0.85rem;
  }
}


/* smaller text on mobile */
@media (max-width: 575px) {
  .tech-banner-img {
    height: 270px;
  }

  .tech-banner-text h1 {
    font-size: 1.8rem;
  }

  .tech-banner-text p {
    font-size: 0.85rem;
  }
}




/* responsive tweaks */
@media (max-width: 991px) {
  .tech-main-card {
    border-bottom: 1px solid #222;
  }

  .tech-main-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 575px) {
  .tech-main-inner img {
    max-width: 64px;
  }
}


/* ===== ABSOLUTE FIX FOR DARK SELECT DROPDOWN ===== */

/* Select field itself */
.form-control,
select.form-control {
  color: #fff !important;
  background-color: #111 !important;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Force dropdown list (browser-level fix) */
select.form-control option {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Selected option highlight */
select.form-control option:checked {
  background-color: #0af !important;
  color: #000 !important;
}

/* Remove glass effect ONLY for select */
select.form-control {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}



/* ===== FINAL FIX: DROPDOWN TEXT CUT / NOT FULLY VISIBLE ===== */

/* Select box text spacing */
select.form-control {
  font-size: 1rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;   /* IMPORTANT */
  padding-right: 40px !important; /* space for arrow */
}

/* Force option readability (browser-controlled) */
select.form-control option {
  font-size: 1rem !important;
  line-height: 1.4 !important;
  padding: 10px 14px !important;  /* works in Firefox + partial Chrome */
  white-space: normal !important; /* allow wrapping */
}

/* Prevent clipping on Windows */
select.form-control {
  min-height: 52px !important;
}

/* Remove global interference */
.form-control {
  letter-spacing: normal !important;
}



/* FINAL MOBILE MENU  */


.navbar-toggler {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  background: rgba(10,170,255,0.15);
  backdrop-filter: blur(25px);
  padding: 0;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-toggler::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent);
  transition: left 0.7s;
}

.navbar-toggler:hover::before { left: 100%; }
.navbar-toggler:hover { 
  background: rgba(10,170,255,0.3);
  box-shadow: 0 10px 30px rgba(10,170,255,0.4);
  transform: scale(1.08);
}

/* Perfect original Bootstrap hamburger */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 22px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M5 7l20 20M5 23L25 3'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  /* Full viewport glass menu - NO AUTO CLOSE */
  #navbarContent.navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(35px);
    z-index: 1050 !important;
    padding: 120px 35px 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    overflow-y: auto !important;
  }

  #navbarContent.navbar-collapse.show {
    transform: translateY(0) !important;
  }

  /* Menu stays open until toggle clicked */
  #navbarContent.navbar-collapse.show {
    pointer-events: auto !important;
  }

  .navbar-collapse .navbar-nav {
    width: 100%;
    max-width: 480px;
    flex-direction: column !important;
    align-items: center;
    margin: 0 !important;
    gap: 4px;
  }

  .navbar-collapse .nav-item {
    width: 100% !important;
    margin: 14px 0 !important;
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInPerfect 0.7s forwards;
  }

  .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.25s; }
  .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.35s; }
  .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.45s; }
  .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.55s; }

  @keyframes slideInPerfect {
    to { opacity: 1; transform: translateX(0); }
  }

  /* Premium glass navigation items */
  .navbar-collapse .nav-link {
    width: 100% !important;
    padding: 26px 40px !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: rgba(255,255,255,0.06) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    backdrop-filter: blur(30px) !important;
    text-align: center !important;
    transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    position: relative !important;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  }

  .navbar-collapse .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #0af, transparent);
    transition: height 0.4s ease;
    transform: translateY(-50%);
  }

  .navbar-collapse .nav-link:hover::before {
    height: 60px;
  }

  .navbar-collapse .nav-link:hover {
    background: rgba(10,170,255,0.22) !important;
    border-color: rgba(10,170,255,0.6) !important;
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(10,170,255,0.35) !important;
  }

  /* Smooth expandable dropdowns */
  .navbar-collapse .dropdown-menu {
    position: static !important;
    margin: 18px 0 0 0 !important;
    width: 100% !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(17,17,17,0.99) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(10,170,255,0.5) !important;
    backdrop-filter: blur(30px) !important;
    transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .navbar-collapse .dropdown.show .dropdown-menu {
    opacity: 1 !important;
    max-height: 400px !important;
    margin-top: 12px !important;
    padding: 20px 0 !important;
  }

  .navbar-collapse .dropdown-item {
    padding: 22px 45px !important;
    font-size: 1.25rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ddd !important;
    transition: all 0.35s ease !important;
  }

  .navbar-collapse .dropdown-item:hover {
    background: rgba(10,170,255,0.18) !important;
    color: #fff !important;
    padding-left: 55px !important;
    transform: translateX(10px);
  }

  /* Hero Contact button */
  .navbar-collapse .btn-outline-light {
    margin-top: 50px !important;
    width: 100% !important;
    max-width: 380px !important;
    padding: 24px 50px !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    background: rgba(255,255,255,0.12) !important;
    border-radius: 60px !important;
    backdrop-filter: blur(30px) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px;
    transition: all 0.45s ease !important;
  }

  .navbar-collapse .btn-outline-light:hover {
    background: rgba(10,170,255,0.35) !important;
    border-color: #0af !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 25px 60px rgba(10,170,255,0.45) !important;
  }
}








.brand-section .brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 1px solid rgba(10,170,255,0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.brand-section .brand-text {
  font-weight: 600;
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
  margin-right: 12px;
}

.brand-section .brand-logo-link:hover .brand-logo {
  transform: scale(1.05);
}

/* Mobile & Tablet Centering ONLY (max-width: 991px) */
@media (max-width: 991px) {
  .brand-section .d-flex {
    justify-content: center !important;
    gap: 12px;
  }
  
  .brand-section .brand-text {
    font-size: 13px;
    margin-right: 0;
  }
  
  .brand-section .brand-logo {
    width: 55px;
    height: 55px;
  }
}









.hero-title-simple {
  font-size: clamp(3rem, 6vw, 8rem) !important;
  font-weight: 100 !important;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #79bee1 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.word {
  opacity: 0;
  transform: translateY(50px);
}

.left-word {
  font-weight: 900 !important;
  transform: translateX(-100vw) translateY(50px);
}

.right-word {
  font-weight: 900 !important;
  transform: translateX(100vw) translateY(50px);
}

.flash-word {
  font-weight: 400 !important;
  font-size: 0.6em !important;
  text-transform: none !important;
  opacity: 0;
  transform: scale(0.5) translateY(50px);
}

.hero-portfolio-btn {
  opacity: 0;
  transform: translateY(30px);
}


/* ================= PAYMENT FORM – EXACT SNAPSHOT MATCH ================= */

/* Wrapper spacing */
.payment-section {
  margin-top: 10px;
}

/* Logos row */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 15px 0 25px;
}

.payment-logos img {
  height: 26px;
  width: auto;
  filter: brightness(1.1);
  opacity: 0.95;
}

/* Make SELECT look EXACTLY like input */
.payment-form .form-control {
  background: rgba(17,17,17,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  height: 52px;
  padding: 12px 16px;
  font-size: 0.95rem;
}

/* Remove Bootstrap select arrow styling */
.payment-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 42px;
}

/* Dropdown list (white like snapshot) */
.payment-form select option {
  background: #ffffff !important;
  color: #000000 !important;
  font-size: 0.95rem;
  padding: 10px;
}

/* Selected option highlight */
.payment-form select option:checked {
  background: #eaeaea !important;
  color: #000 !important;
}

/* Focus state */
.payment-form .form-control:focus {
  border-color: #0af;
  box-shadow: 0 0 0 0.2rem rgba(0,170,255,0.25);
  background: rgba(17,17,17,0.95);
}

/* Fix label spacing */
.payment-form label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #ddd;
}








/* ===== PDF VIEW SECTION ===== */

.pdf-view-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #020202, #000);
  border-top: 1px solid rgba(0,170,255,0.2);
}

.pdf-card {
  background: linear-gradient(145deg, #050505, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.pdf-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,170,255,0.5);
  box-shadow: 0 30px 60px rgba(0,170,255,0.2);
}

.pdf-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0af, #00a0ff);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: #000;
}

.pdf-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pdf-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 25px;
}

.pdf-view-btn {
  background: rgba(0,170,255,0.15);
  border: 2px solid rgba(0,170,255,0.4);
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
}

.pdf-view-btn:hover {
  background: #0af;
  color: #000;
}

/* ===== MODAL ===== */

.pdf-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.pdf-modal.active {
  display: block;
}

.pdf-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}

.pdf-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(15,15,15,0.98);
  width: 90%;
  max-width: 650px;
  border-radius: 20px;
  border: 1px solid rgba(0,170,255,0.4);
  padding: 35px;
}

.pdf-step {
  display: none;
}

.pdf-step.active {
  display: block;
}

.pdf-form-step h4 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
}

.pdf-form-step p {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}

#pdfAccessForm input {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #050505;
  color: #fff;
}

#pdfAccessForm button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
}

.form-note {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 20px;
}

/* Viewer */
.viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#pdfFrame {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  background: #fff;
}



.pdf-view-btn,
.pdf-view-btn a {
  position: relative;
  z-index: 50;
  pointer-events: auto;
}
.pdf-card::before,
.pdf-card::after,
.pdf-modal-overlay {
  pointer-events: none;
}






.solutions-wrap {
  text-align: left;
  padding-left: 172px;   
  padding-top: 35px;
}


.solutions-title {
  margin-bottom: 8px;
}

.solutions-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.solutions-list li {
  line-height: 1.7;
  margin-bottom: 6px;
}

/* add latter by ayan */

.features-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background: #665e5e;
  transition: 0.3s;
  height: 100%;
}

.features-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 7px;
}

.features-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.features-item{
display:flex;
align-items:center;
gap:18px;
padding:20px;
border:1px solid #e6e6e6;
background:#fff;
transition:0.3s;
height:80px;
}

.features-item img{
width:40px;
height:40px;
object-fit:contain;
}

.features-item span{
font-size:16px;
font-weight:600;
color:#ff5a1f;
}

.features-item:hover{
border:1px solid #ff5a1f;
box-shadow:0 6px 15px rgba(0,0,0,0.08);
transform:translateY(-3px);
}


.features{
background:#0f0f0f;
padding:80px 0;
}

.features-item{
display:flex;
align-items:center;
gap:18px;
padding:22px 24px;

background:#1a1a1a;   /* dark card */
border:1px solid #2a2a2a;
border-radius:8px;

transition:all .3s ease;
}

.features-item img{
width:40px;
height:40px;
object-fit:contain;
}

.features-item span{
font-size:16px;
font-weight:600;
color:#ffffff;
}

.features-item:hover{
border:1px solid #ff5a1f;
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.features .row{
row-gap:35px;
}

.features .section-title h2{
color:#ffffff;
}

.features .section-title p{
color:#cfcfcf;
}

.features-item:hover{
box-shadow:0 0 15px rgba(255,90,31,0.4);
}

.section-wrapper_1 {
  padding: 0px 0 80px 0;
  max-width: 1100px;
  margin: auto;
}

/* Section Background */
.pricing{
  position: relative;
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

/* Blue Glow */
.pricing::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #0066ff;
  filter: blur(180px);
  top: -120px;
  right: -120px;
  opacity: .5;
}

/* Orange Glow */
.pricing::after{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #ff6a00;
  filter: blur(180px);
  bottom: -120px;
  left: -120px;
  opacity: .5;
}

/* Cards */
.pricing-item{
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .35s ease;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Title */
.pricing-item h3{
  color: #ff7a18;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Description */
.pricing-item .description{
  color: #d1d1d1;
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Effect */
.pricing-item:hover{
  transform: translateY(-10px);
  border-color: #007bff;
  box-shadow: 
  0 10px 25px rgba(0,123,255,0.3),
  0 10px 25px rgba(255,106,0,0.25);
}

/* Featured Card */
.pricing-item.featured{
  border: 1px solid rgba(255,255,255,0.2);
}
/* spacing for cards */
.pricing .row{
  row-gap: 25px;
}

/* mobile spacing fix */
@media (max-width: 991px){

  .pricing .col-lg-4{
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-item{
    margin-bottom: 10px;
  }

}

/* small mobile extra spacing */
@media (max-width: 576px){

  .pricing .row{
    row-gap: 20px;
  }

  .pricing-item{
    padding: 30px 20px;
  }

}


/* gallery design */
.modern-gallery {
  background: #f8f9fc;
  padding: 80px 0;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.6s ease;
  border-radius: 20px;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  transform: translateY(100%);
  transition: 0.4s ease;
  backdrop-filter: blur(8px);
}

.gallery-overlay h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.gallery-overlay a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #ff6b00;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

.gallery-overlay a:hover {
  background: #fff;
  color: #ff6b00;
}

/* Hover Effects */
.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-card img {
    height: 280px;
  }
}

.cards-row{
  margin-top:40px;
}

.info-card{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;

  padding:40px 25px;
  text-align:center;
  color:#fff;

  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  transition: all 0.35s ease;

  height:100%;
}

.info-card:hover{
  transform: translateY(-8px);
  border-color:#0af;
  box-shadow:0 15px 40px rgba(0,170,255,0.4);
}

.card-icon{
  font-size:45px;
  margin-bottom:15px;
}

.info-card h4{
  color:#fff;
  font-weight:700;
  margin-bottom:15px;
}

.info-card p{
  font-size:14px;
  line-height:1.6;
  color:#ddd;
}


/* =========================
   EVENT GALLERY STYLE
========================= */



/* Section Background */

.event-gallery{
    background: radial-gradient(circle at top, #0b1a26, #000000);
    padding:80px 0;
}

/* Title */

.gallery-title{
    text-align:center;
    margin-bottom:50px;
}

.gallery-title h1{
    font-size:48px;
    color:#7cc7ff;
    font-weight:700;
}

.gallery-title p{
    color:#6c7a89;
    font-size:16px;
}

/* Grid */

.gallery-container{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:30px;
}

/* Card */

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    position:relative;

    box-shadow:
        0 0 20px rgba(0,150,255,0.15);
}

/* Image */

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;

    border-radius:18px;
    transition:0.5s;
}

/* Hover Zoom */

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Responsive */

@media(max-width:768px){

.gallery-container{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:260px;
}

}



/* INDUSTRY VERTICALS SECTION */
.industry-verticals-section {
    padding: 80px 0;
    background: #020202;
}

.vertical-card {
    background: linear-gradient(145deg, #050505, #0a0a0a);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.vertical-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0,170,255,0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.vertical-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,170,255,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.vertical-card:hover::before {
    opacity: 1;
}

.vertical-icon {
    font-size: 2.5rem;
    color: #0af;
    margin-bottom: 1.25rem;
}

.vertical-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.vertical-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-points li {
    font-size: 0.85rem;
    color: #ccc;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding-left: 1.2rem;
}

.vertical-points li::before {
    content: "•";
    color: #0af;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.vertical-points li:last-child {
    border-bottom: none;
}

/* PROCESS SECTION */
.process-section {
    padding: 60px 0 80px;
    background: #000;
    position: relative;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,170,255,0.3), transparent);
}

.process-timeline {
    margin-top: 2rem;
}

.process-card {
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0af;
    transition: width 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,170,255,0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.process-card:hover::after {
    width: 50px;
}

.process-number {
    font-size: 0.85rem;
    color: #0af;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.process-icon {
    font-size: 2rem;
    color: #0af;
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.process-card p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

/* ENGAGEMENT MODELS SECTION */
.engagement-section {
    padding: 60px 0 80px;
    background: #020202;
}

.engagement-card {
    background: linear-gradient(145deg, #080808, #111);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem 1.8rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.engagement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,170,255,0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.engagement-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(0,170,255,0.15);
    color: #0af;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0,170,255,0.3);
    letter-spacing: 0.5px;
}

.engagement-icon {
    font-size: 2.8rem;
    color: #0af;
    margin-bottom: 1.5rem;
}

.engagement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.engagement-desc {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.engagement-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engagement-features li {
    font-size: 0.85rem;
    color: #ddd;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.engagement-features li i {
    color: #0af;
    font-size: 1rem;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .process-card {
        padding: 1.2rem 0.8rem;
    }
    
    .vertical-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industry-verticals-section,
    .process-section,
    .engagement-section {
        padding: 50px 0;
    }
    
    .engagement-card {
        padding: 2rem 1.5rem;
    }
    
    .vertical-icon {
        font-size: 2rem;
    }
    
    .process-number {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .process-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }
    
    .process-icon {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    
    .process-number {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    
    .process-card h4 {
        margin-bottom: 0.2rem;
    }
    
    .vertical-points li {
        font-size: 0.8rem;
    }
}

/*====================================================================== product section css====================================================================== */

        .features-1 {
        background: #000000;
        padding: 80px 0;
    }
    
    .section-title h2.new-color {
            color: #f0f5ff;
            font-weight: 600;
            border-bottom: 4px solid #f58634; /* orange */
            display: inline-block;
            padding-bottom: 10px;
            letter-spacing: 0.3px;
        }
        /* tile design (clickable) */
        .features-item-product {
            background: #171f2b;
            border-radius: 28px;
            padding: 2rem 0.8rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s ease;
            border: 1px solid #2e3b4f;
            box-shadow: 0 10px 22px rgba(0,0,0,0.7);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .features-item-product:hover {
            transform: translateY(-6px);
            border-color: #f58634;
            box-shadow: 0 18px 30px -6px rgba(245, 134, 52, 0.4);
            background: #1d2635;
        }
        .features-item-product img {
            width: 70px;
            height: 70px;
            background: #26344a;
            border-radius: 24px;
            margin-bottom: 1rem;
            border: 2px solid #3a4a62;
            object-fit: cover;
            background: linear-gradient(145deg, #1d3853, #f58634); /* fallback */
        }
        .features-item-product span {
            color: #f0f5fd;
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.3;
            padding: 0 0.3rem;
        }
        /* modal dark theme */
        .modal-content {
            background-color: #121b26;
            border: 1px solid #2f4057;
            border-radius: 38px;
            color: #eaf0fc;
            overflow: hidden;
        }
        .modal-header {
            border-bottom: 1px solid #2c4055;
            padding: 1.6rem 1.8rem 0.8rem;
        }
        .modal-title {
            color: #f58634;
            font-weight: 700;
            font-size: 2rem;
            letter-spacing: -0.3px;
        }
        .btn-close {
            filter: invert(1) brightness(2);
            opacity: 0.9;
        }
        .modal-body {
            padding: 1.8rem;
        }
        .modal-footer {
            border-top: 1px solid #25364a;
            padding: 1rem 1.8rem;
        }
        .left-side-image {
            background-color: #14212e;
            border-radius: 30px;
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border: 4px solid #f58634; /* orange */
            box-shadow: 0 12px 26px #00000060;
        }
        /* the container that holds the "button panel" — non‑clickable, just styled */
        .product-desc-panel {
            background: #0e1622;
            border-radius: 32px;
            padding: 1.6rem 1.5rem;
            border-left: 6px solid #3b82f6; /* blue accent */
            color: #d3e2fd;
            font-size: 1rem;
            line-height: 1.65;
            max-height: 400px;
            overflow-y: auto;
            white-space: pre-line;
            box-shadow: inset 0 0 0 1px #2d405a;
        }
        .product-desc-panel strong {
            color: #f58634; /* orange */
            font-weight: 700;
        }
        .product-desc-panel em {
            color: #70a0ff; /* lighter blue */
            font-style: normal;
            font-weight: 500;
        }
        /* non‑clickable "button-like" chips – exactly as marked in the uploaded images */
        .info-chip {
            display: inline-block;
            background: #1f2e41;
            border-radius: 40px;
            padding: 8px 20px;
            margin: 5px 8px 5px 0;
            color: #f0c89e;
            border: 1.5px solid #f58634;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            pointer-events: none;          /* NOT clickable */
            user-select: text;              /* but text can be selected */
            transition: none;
            background: linear-gradient(145deg, #1e3146, #182433);
        }
        .info-chip i {
            color: #f58634;
            margin-right: 8px;
        }
        /* tech tags (blue) */
        .tech-tag {
            display: inline-block;
            background: #132337;
            border-radius: 40px;
            padding: 5px 18px;
            margin: 4px 6px 0 0;
            color: #b0d6ff;
            border: 1px solid #3b82f6;
            font-size: 0.85rem;
            pointer-events: none;
        }
        /* extra badge for "production ready" etc */
        .ribbon-chip {
            background: #2e3f58;
            color: #fad6a8;
            border-color: #f58634;
        }
        .row.g-4 {
            --bs-gutter-y: 1.8rem;
        }
        /* dummy placeholder images (gradient) */
        .features-item img {
            background: linear-gradient(145deg, #1e3b58, #f57c2e);
        }
        .info-chip, .tech-tag {
        cursor: default;            /* not clickable */
        transition: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.6);
        font-weight: 500;
        background: #18273e;
        border: 1.2px solid #f58634;
        color: #f7dbbc;
        }
        /* <!-- tiny style to make chips extra button-like but non‑clickable --> */
        .info-chip i, .tech-tag i {
            color: #f58634;
        }
        .product-desc-panel {
            scrollbar-width: thin;
            scrollbar-color: #f58634 #1d3148;
        }
        .product-desc-panel::-webkit-scrollbar {
            width: 6px;
            background: #1d3148;
        }
        .product-desc-panel::-webkit-scrollbar-thumb {
            background: #f58634;
            border-radius: 20px;
        }
        .modal-content {
            border: 2px solid #f5863430;
        }
        
        /*=============================== form ceo desk section ======================== */


        /* Updated About Section Styles - Modified version */
.about {
  padding: 100px 0;
  background: #000; /* Pure black background */
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(10, 170, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

/* Image on RIGHT side - swap columns */
@media (min-width: 992px) {
  .about-img {
    order: 2; /* Moves image to right */
    margin-left: auto;
    text-align: right;
  }
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 48px 96px rgba(10, 170, 255, 0.4);
}

.inner-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0af 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  position: relative;
}

.inner-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0af, transparent);
  border-radius: 2px;
}

.our-story {
  background: rgba(10, 10, 10, 0.9); /* Darker for pure black bg */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.our-story h4 {
  color: #0af;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.our-story h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.our-story p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* REMOVE BULLET POINTS - No ::before pseudo-element */
.our-story ul {
  list-style: none;
  padding: 0;
}

.our-story li {
  margin-bottom: 25px;
  padding-left: 0; /* No left padding */
}

.our-story li span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.8;
  display: block;
  font-style: italic;
}

/* Image on LEFT, Text on RIGHT - Desktop */
@media (min-width: 992px) {
  .about-img {
    order: 1; /* Stays first (left) */
  }
  
  .about .row > div:nth-child(2) {
    text-align: left; /* Text aligns left on right side */
  }
}

/* Mobile - Stack image above text */
@media (max-width: 991px) {
  .row.position-relative {
    flex-direction: column;
  }
  
  .about-img {
    order: 1; /* Image first on mobile */
    margin-bottom: 40px;
    text-align: center;
  }
  
  .about-img img {
    height: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 80px 0;
  }
  
  .about-img img {
    height: 300px;
    border-radius: 16px;
  }
}

.view-more-btn-1 {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #007BFE, #f58634);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.view-more-btn-1:hover {
    background: linear-gradient(45deg, #f58634, #007BFE);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    text-decoration: none !important;
    color: #fff;
}

.view-more-btn-1:active {
    transform: scale(0.95);
}
