/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Footlight MT Light','Times New Roman', Times, serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

video.bg-video {
  position: fixed;   /* fixed background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;       /* stays behind all content */
}

/* Optional: dark overlay for readability */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

/* Navbar */
header {
  background: #1a2d50;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  height: 70px; /* fixed consistent height */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  height: auto;
  object-fit: contain; /* keeps logo clear */
}

.logo h3 {
  margin-left: 10px;
  color: #fefefe;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px; /* consistent gap between links */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color:  #ff8400;
}

/* Hamburger for mobile */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  z-index: 1100;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 10px 20px;
    height: 60px;
  }

  .logo img {
    width: 45px;
  }

  .logo h3 {
    font-size: 22px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 65px;
    right: 10px;
    width: 150px;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}








  /* Hero Section */
  .hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 95vh;
  text-align: center;
  padding: 20px;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  color: #fff;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 150px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.6);
}

.hero-content .tagline {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 400;
  margin-bottom: 18px;
  font-style: italic;
  color: #ffb700;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-content .subtitle {
  font-size: clamp(14px, 2vw, 20px);
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
}

.btn {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background:  #ff8400;
  color: #fff;
}

.btn-primary:hover {
  background: #fff;
  color: #0a2d50;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

 

  /* Responsive Styles */
   @media (max-width: 2000px) {
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
    }
    .hero-content h1 {
      font-size:95px;
      font-weight: 500    ;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px #000;
    }
  }
  @media (max-width: 768px) {

    .hero-content h1 {
      font-size: 60px;
    }

    .subtitle {
      font-size: 16px;
    }
  }  /* ========== Keyframe Animations ========== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  

/* Possibilities Section */
/* Possibilities Section */
/* Possibilities Section */
.possibilities {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(to bottom, #d3daf8, #ffffff);
}

.possibilities h2 {
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a237e;
  letter-spacing: 1px;
  animation: slideInDown 1s ease;
}

.section-intro {
  font-size: 18px;
  max-width: 850px;
  margin: 0 auto 50px;
  color: #444;
  line-height: 1.6;
  animation: fadeIn 1.2s ease-in;
}

.possibility-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Card Design */
.possibility-card {
  width: 270px;
  background: linear-gradient(to bottom, #6e93fa81, #ffffff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  transition: all 0.4s ease-in-out;
}

.possibility-card:nth-child(1) { animation-delay: 0.3s; }
.possibility-card:nth-child(2) { animation-delay: 0.5s; }
.possibility-card:nth-child(3) { animation-delay: 0.7s; }
.possibility-card:nth-child(4) { animation-delay: 0.9s; }

.possibility-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.card-inner {
  padding: 20px;
}

.possibility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 5px;
  transition: transform 0.4s ease;
}


.possibility-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a237e;
  margin: 12px 0;
}

.possibility-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

.tech-list li::before {
  content: "✔ ";
  color: #1a237e;
  font-weight: bold;
  margin-right: 6px;
}
  
  
  /* About Company Section */
 .company {
  padding: 80px 50px;
  background: linear-gradient(135deg, #fdfdfd, #f4f7ff);
}

.about-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-in-out;
}

.about-text {
  flex: 1 1 500px;
  animation: slideInLeft 1.2s ease;
}

.about-text h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: #1a237e;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.about-text h2 span {
  color: #ff8400;
}

.about-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-text strong {
  color: #1a237e;
}

.about-text em {
  color: #ff8400;
  font-style: normal;
  font-weight: 600;
  background: #aad0ff38;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 2px solid #1a237e;
  color: #1a237e;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  background: #1a237e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(26,35,126,0.3);
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
  animation: slideInRight 1.2s ease;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 2px;
}



/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}


  /* Mission & Vision Section */

.mission-vision {
  padding: 80px 20px;
  background: linear-gradient(135deg, #97b7f6, #ffffff);
}

.mission-vision .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #0a2d50;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ff8400, #0a2d50);
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8400, #0a2d50);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 22px 20px 26px;
}

.card-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0a2d50;
  margin-bottom: 12px;
  letter-spacing: .3px;
}

.card-content p {
  font-size: 15.5px;
  color: #3f4654;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Lists */
.mission-points,
.vision-points {
  list-style: none;
  margin: 6px 0 14px;
  padding: 0;
}

.mission-points li,
.vision-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: #2f3545;
}

.mission-points li::before,
.vision-points li::before {
  content: "▸";
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
  color: #ffb700;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.badge {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #0a2d50;
  background: #f5f8ff;
  border: 1px solid #e0e8ff;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .card-image img { height: 190px; }
  .card-content { padding: 18px 16px 22px; }
  .card-content h2 { font-size: 20px; }
}




  .edge-fog-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding: 80px 10%;
  background: linear-gradient(135deg, #fdfdfd, #90b1ff);
}

.edge-fog-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.edge-fog-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #0a2d50;
  margin-bottom: 18px;
  position: relative;
}

.edge-fog-content h2::after {
content: "";
  width: 80px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ff8400, #0a2d50);
  border-radius: 2px;
}

.edge-fog-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #2f3545;
  margin-bottom: 24px;
}

.edge-fog-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.edge-fog-content ul li {
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #2f3545;
  padding-left: 28px;
  position: relative;
}

.edge-fog-content ul li::before {
  content: "✔";
  color: #ff8400;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.learn-btn {
  background: #ff8400;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(255,132,0,0.3);
}

.learn-btn:hover {
  background: #0a2d50;
  box-shadow: 0 6px 14px rgba(10,45,80,0.35);
}

@media (max-width: 900px) {
  .edge-fog-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 6%;
  }

  .edge-fog-content ul li {
    text-align: left;
  }

  .edge-fog-image img {
    margin: 0 auto;
  }
}



.bsp-project {
  position: relative;
  background: linear-gradient(rgba(10, 45, 80, 0.555), rgba(10, 45, 80, 0.719)),
              url("traffic-bg.jpg") no-repeat center center/cover;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.bsp-content {
  max-width: 1000px;
  margin: 0 auto;
}

.section-tag {
  font-size: 30px;
  letter-spacing: 3px;
  color: #ff8400;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.project-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 30px 0;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ff8400;
}

.project-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e6e6e6;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.12);
}

.learn-btn {
  margin-top: 20px;
  background: #ff8400;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background: #e67300;
}








/* ===== Services Section (Improved & Responsive) ===== */
.services-section {
  padding: 4rem 1.5rem;
  background: #ccd8ee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-container {
  max-width: 1250px;
  margin: auto;
  text-align: center;
}

.services-section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #e67300;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.services-tagline {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #000;
  margin-bottom: 3rem;
  line-height: 1.5;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 40, 85, 0.432);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 40, 85, 0.15);
}

/* Image Section */
.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Text Content */
.service-content {
  padding: 1.5rem;
  text-align: left;
}

.service-content h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  color: #043370;
  margin-bottom: 0.8rem;
}

.service-content p {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #444;
  line-height: 1.6;
}


/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 992px) {
  .services-section {
    padding: 3rem 1rem;
  }
  .services-grid {
    gap: 1.5rem;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .services-section {
    padding: 2rem 0.8rem;
  }
  .services-tagline {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }
  .service-content {
    padding: 1rem;
  }
  .service-content h3 {
    font-size: 1.05rem;
  }
  .service-content p {
    font-size: 0.82rem;
  }
}

/* Extra Small (<=355px like you mentioned) */
@media (max-width: 385px) {
  .services-section {
    padding: 1.5rem 0.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr; /* stack cards in 1 column */
    gap: 1.2rem;
  }
  .service-content {
    padding: 0.8rem;
  }
  .service-content h3 {
    font-size: 0.95rem;
  }
  .service-content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}







  .logo-slider-section {
  padding: 30px 30px;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.slider-heading {
  font-size: 30px;
  margin-bottom: 20px;
  color: #333;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 60px;
  height: auto;
  margin: 0 30px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}



/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 80px;
    margin: 0 15px;
  }

  .slider-heading {
    font-size: 26px;
  }
}






.footer {
  background: linear-gradient(135deg, #0a2d50, #001627);
  color: #ddd;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3, 
.footer-section h4 {
  color: #ff8400;
  margin-bottom: 15px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 15px;
  margin-left: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff8400;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info i {
  margin-right: 8px;
  color: #ff8400;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
}

.feedback-form input, 
.feedback-form textarea {
  margin-bottom: 12px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.feedback-form button {
  background: #ff8400;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.feedback-form button:hover {
  background: #e67300;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #aaa;
}









