/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: left;
  justify-content: left;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: slideShow 15s infinite;
}

.slide1 {
  background-image: url('static/about.jpg');
  animation-delay: 0s;
}
.slide2 {
  background-image: url('static/about1.jpg');
  animation-delay: 5s;
}
.slide3 {
  background-image: url('static/about2.jpg');
  animation-delay: 10s;
}

@keyframes slideShow {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* 

Content */
.overlay {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 50px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
}

.hero h1 span {
  color: #0088ff;
}

.hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #f9f6f6;
  position: relative; /* keep it relative for absolute elements */
}

.logo img {
  height: 70px;
  width: 300px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #007bff;
}

/* Hide hamburger on big screens */
.hamburger {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  color: #333;
  outline: none;
}

/* Remove focus outline */
.hamburger:focus {
  outline: none;
}



/* Show only on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    line-height: 3;
    z-index: 10000;
  }
}

/* When menu is open, change to "X" icon */
.hamburger.open i::before {
  content: "\f00d"; /* Font Awesome X icon */
}


/* Mobile View */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 180px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
    position: absolute; /* ✅ stays in place even if menu opens */
    right: 20px;
    top: 20px; /* ✅ fixes its vertical position */
    line-height: 3;
    z-index: 10000;
  }
}



/* Section Styles */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #080808;
}

section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

section img {
  width: 80%;
  max-width: 500px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
/* founder */
#founder-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f0f9ff, #e0f7ff);
  color: #0a2a43;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1.2s ease-out;
}

.founder-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.founder-text {
  flex: 1 1 60%;
  opacity: 0;
  transform: translateY(50px);
  animation: slideIn 1.2s ease forwards;
}

.founder-text h2 {
  font-size: 2.5rem;
  color: #080808;
}

.founder-text h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.founder-text hr {
  width: 100px;
  height: 3px;
  background-color: #007bff;
  border: none;
  margin-bottom: 20px;
}

.founder-text p {
  font-size: 1.1rem;
  line-height: 1.8;
   text-align: center;
}

.founder-image {
  flex: 1 1 35%;
  text-align: center;
  animation: zoomIn 5.5s ease;
   animation: fadeBackground 10s ease-in-out infinite alternate;
}

.founder-image img {
    max-width: 60%;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.founder-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-text, .founder-image {
    flex: 1 1 100%;
  }
}

/* Services Section */
/* Section full screen */
.aql-slider {
  position: relative;
  width: 100%;
  min-height: 80vh;        
  padding: 0;               
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.aql-section-title {
  margin-top: 25px;
    text-align: center;        
    font-size: 40px;               
    color: #222;                    
}

/* Slide full big card */
.aql-slide {
  width: 95%;              
  max-width: 1200px;       
  min-height: 450px;       
  background: white;
  border-radius: 25px;      
  padding: 30px 60px;       
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: none;
  text-align: center;
}

/* Active slide */
.aql-slide.aql-show {
  display: block;
  animation: fadeIn 0.6s ease;
}

/* Title */
.aql-slide h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0e2f42;
}

/* Description */
.aql-slide p {
  font-size: 20px;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Arrow buttons */
.aql-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fbfafa00;
  color: #0e0d0d;
  border: none;
  padding: 10px 16px;       /* bigger button */
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.aql-prev { left: 50px; }   /* more spacing left-right */
.aql-next { right: 50px; }

.aql-nav:hover {
  background: #9294934b;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Mobile */
@media (max-width: 768px) {
  .aql-slide {
    width: 95%;
    min-height: 420px;
    padding: 40px 25px;
  }

  .aql-slide h2 {
    font-size: 32px;
  }

  .aql-nav {
    padding: 5px 10px;
    font-size: 18px;
  }

  .aql-prev { left: 10px; }
  .aql-next { right: 10px; }
}
/* Service Section – Compact 2 Column Grid */
.service-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;         /* spacing कमी */
  margin-top: 25px;       /* वरचा gap कमी */
}

/* Box design */
.service-box {
  background: #ffffff;
  padding: 16px 20px;     /* padding कमी */
  border-radius: 10px;    /* corner कमी */
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  transition: 0.3s ease;
  text-align: left;
}

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.10);
}

/* Icons */
.service-box i {
  font-size: 25px;        /* icon छोटा */
  color: #1e6982;
  margin-bottom: 6px;
}

/* Title */
.service-box h3 {
  font-size: 15px;        /* छोटा heading */
  margin: 3px 0;
  color: #1e6482;
  font-weight: 700;
}

/* Description */
.service-box p {
  font-size: 14px;        /* text छोटा */
  color: #444;
  line-height: 1.35;      /* कमी line height */
}

/* Mobile responsive – same */
@media (max-width: 768px) {
  .service-section {
    grid-template-columns: 1fr;
  }
}



/* industries */
.industries-section {
  background-color: #f9f9f9;
  text-align: center;
}

.industries-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.industries-list {
  display: flex;
  justify-content: center; /* Center all columns */
  gap: 250px; /* Equal gap between columns */
  flex-wrap: wrap;
}

.industries-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  min-width: 200px; /* Same width for all columns */
}

.industries-list li {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px; /* Better space between icon and text */
  transition: transform 0.2s ease, color 0.2s ease;
}

.industries-list li i {
  color: #ff6600;
  min-width: 20px;
}

.industries-list li:hover {
  color: #ff6600;
  transform: translateX(5px);
}

/* Mobile View: one below another */
@media (max-width: 480px) {
  .industries-list {
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Left align */
    gap: 15px;
  }

  .industries-list ul {
    min-width: 100%;
  }
}


/* Contact Section */
.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.tag {
  background-color: #fee;
  color: rgb(15, 3, 3);
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 15px;
  color: #555;
}

/* Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 30px;
  gap: 30px;
  justify-content: space-between;
}

/* Left Column */
.contact-info-box {
  flex: 1 1 350px;
  background-color: #f8f9fc;
  padding: 20px 25px;
  border-radius: 10px;
}

.contact-info-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.info-block {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.red {
  background-color: #63def1;
  color: white;
}

.info-block h3 {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.info-block p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  text-align: left;
}

/* Right Column - Form */
.form-box {
  flex: 1 1 500px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  background-color: rgba(5, 5, 5, 0.842);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: rgb(129, 181, 200);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* why choose us */
.why-choose-us {
  background: linear-gradient(to right, #e6f0ff, #f5f9ff);
  /* padding: 50px 20px; */
  font-family: 'Segoe UI', sans-serif;
  /* margin-top: 250px !important; */
  margin-bottom: 140px !important;
}

.why-choose-us .container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(to right, #3c3d3e, #3b3d3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
  animation: fadeInDown 0.8s ease-out;
}

.subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 5px;
  font-weight: 500;
}

.description {
  font-size: 15px;
  color: #666;
  max-width: 680px;
  margin-bottom: 35px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 50px;
  margin-top: 10px;
}

.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #007bff;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-top-color: #00c6ff;
}

.feature-box .icon {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 12px;
  display: inline-block;
}

.feature-box h3 {
  font-size: 18px;
  color: #1a1a40;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Lock to exactly 2 rows layout */
@media (max-width: 991px) {
  .features {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 per row */
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr; /* Mobile: 1 per row */
  }
}

/* Entry animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Testimonials */
#testimonials {
  background: url('static/wave-bg.jpg') no-repeat center bottom/cover;
  padding: 30px 30px;
  text-align: center;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

#testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fbf8f8;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  height: 220px;
  margin: auto;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 30px;
  width: 100%;
  max-width: 700px;
  /* background: rgba(255, 255, 255, 0.15); */
  backdrop-filter: blur(2px);
  color: #fff;
  border-radius: 15px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
  opacity: 0;
  animation: fadeSlide 9s infinite;
  text-align: center;
}

.testimonial-card.card2 {
  animation-delay: 3s;
}

.testimonial-card.card3 {
  animation-delay: 6s;
}

@keyframes fadeSlide {
  0%, 30% {
    opacity: 1;
    transform: scale(1);
  }
  33%, 100% {
    opacity: 0;
    transform: scale(0.98);
  }
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
  color: #ffffff;
}


/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
/* footer */
/* social icons */
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 15px; 
}

.social-icons a {
  text-decoration: none;
  color: #fff;
  /* background: #f8f5f5; */
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s ease;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: #fbfcfc;
  color: #fff;
  transform: scale(1.1);
}

/* .footer-section.quick-links {
  margin-left: 160px !important;
} */

@media (max-width: 768px) {
    .footer-section.quick-links {
        margin-left: 0 !important;
        text-align: center;
        width: 100%;
    }

    .footer-section.quick-links ul {
        padding: 0;
        list-style: none;
    }
}

/* Footer */
footer {
  background-color: #fdfbfbd5;
  color: #080808;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;          
  justify-content: center;
  padding: 40px 60px;
}

.footer-section {
  flex: 1 1 0;     
  min-width: 260px; 
  margin: 20px 10px;
}


.footer-logo {
  width: 250px;
  margin-bottom: 15px;
}

.footer-section h3 {
  color: rgb(14, 13, 13);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #0c0c0c;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #00bcd4;
}

.footer-section p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section i {
  color: rgba(72, 146, 210, 0.936);
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  background-color: #090909;
  color: #f8f4f4;
  font-size: 14px;
}

/* about */
#about {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5)),
              url("static/about.jpg") no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.about-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.text-content {
  flex: 1;
}

.text-content .tagline {
  background: #ff4d4f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.text-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 1.6rem;
  color: #ff4d4f;
  margin-top: 4px;
}

.feature h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature p {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: #ddd;
}

.cta-button {
  margin-top: 30px;
  display: inline-block;
  background: #ff4d4f;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e03c3f;
}

.image-box {
  flex: 1;
  position: relative;
  text-align: center;
}

.image-box img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4d4f;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* vision & mission */
#vision-mission {
  /* background: url("static/vision-bg.jpg") no-repeat center center/cover; */
  background: url("static/vision-bg.jpg") no-repeat center center/cover;
  position: relative;
  text-align: justify;
  padding: 10px 20px;
  color: white; 
  z-index: 1;
  animation: fadeBackground 10s ease-in-out infinite alternate;
}

#vision-mission::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* or use rgba(255,255,255,0.4) for light tone */
  z-index: -1;
}

#vision-mission .overlay {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

#vision-mission h2 {
  color: #f9f4fa;
  font-size: 2.5rem;
  margin: 40px 0 20px;
}

#vision-mission p {
  font-size: 1.1rem;
  color: #f0f0f0;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}

/* Optional subtle animation */
@keyframes fadeBackground {
  0% { background-position: center top; }
  90% { background-position: center bottom; }
}

@media (max-width: 768px) {
  #vision-mission {
    animation: panMove 12s ease-in-out infinite alternate;
  }

  @keyframes panMove {
    0% { background-position: left center; }
    100% { background-position: right center; }
  }
}


/* Internship Form */
/* #internship {
  padding: 60px 20px;
  text-align: center;
}

.internship-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.internship-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.internship-form input,
.internship-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.internship-form button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.form-pointer {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  animation: float 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-55%) translateX(-5px); }
}

/* Make sure it's mobile-friendly */
/* @media (max-width: 768px) {
  .form-pointer {
    display: none;
  }
} */ */
  /* Wrapper to center the form */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

/* Main Form Card */
.form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 1s ease;
    padding: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Image Holder */
.form-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.form-info img {
  max-width: 150px;
  height: auto;
  border-radius: 12px;
}

/* Form Section */
.form-section {
  width: 100%;
}

.form-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-section input,
.form-section textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.form-section button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-section button:hover {
  background-color: #0056b3;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .form-card {
    padding: 30px;
  }



  .status-message {
  padding: 10px;
  margin-bottom: 15px;
  color: green;
  background-color: #e6ffe6;
  border: 1px solid #a3d7a3;
  border-radius: 5px;
}
}
/*
.slogan-small {
  font-size: 0.8rem;
  color: #093987;
  margin-top: -5px;
} */

/* --- Responsive All Sections --- */

/* Tablets (<=992px) */
@media (max-width: 992px) {
  /* Hero */
  .hero .overlay {
    padding: 30px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Founder */
  .founder-container {
    flex-direction: column;
    text-align: center;
  }
  .founder-text, .founder-image {
    flex: 1 1 100%;
  }

  /* Services */
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Choose Us */
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Industries */
  .industries-list {
    gap: 50px;
  }

  /* About */
  .about-content {
    flex-direction: column;
  }
  .text-content, .image-box {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  /* Navbar */
  nav {
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  /* Hero */
  .hero .overlay {
    padding: 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.95rem;
  }

  /* Founder */
  .founder-container {
    gap: 20px;
  }

  /* Services */
  .service-container {
    grid-template-columns: 1fr;
  }

  /* Why Choose Us */
  .features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Industries */
  .industries-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .industries-list ul {
    min-width: 100%;
  }

  /* Contact */
  .contact-container {
    flex-direction: column;
  }

  /* About */
  .about-content {
    flex-direction: column;
  }

  /* Vision & Mission */
  #vision-mission .overlay {
    padding: 20px;
  }

  /* Internship Form */
  .form-card {
    flex-direction: column;
    padding: 20px;
  }
  .form-info {
    margin-bottom: 20px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

/* Put this at the end of your stylesheet */
.hamburger,
.hamburger * {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important; /* mobile blue flash */
  -webkit-focus-ring-color: transparent !important;
}

/* Remove focus visuals on mouse/pointer interactions,
   but keep focus-visible for keyboard users if you want. */
.hamburger:focus,
.hamburger:active,
.hamburger:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* If you want to show a subtle ring for keyboard users only:
.hamburger:focus-visible {
  outline: 2px solid rgba(0,0,0,0.12);
  outline-offset: 4px;
}
*/


/* Scroll to Top Button */
/* Scroll to Top Button */
/* Prevent horizontal overflow (helps button not sit in right gutter) */
html, body {
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Base - hidden by default (JS will toggle .visible) */
#scrollToTopBtn {
  position: fixed !important;
  right: 16px !important; /* Simplified: No env() dependency for better emulation support */
  bottom: 16px !important;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a1f44;
  color: #fff;
  border: 0;
  z-index: 2147483647 !important; /* Slightly higher for safety */
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: auto;
  /* Force hardware acceleration for better mobile rendering */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* visible / hiding states */
#scrollToTopBtn.visible {
  display: flex !important;
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
#scrollToTopBtn.hiding {
  opacity: 0;
  transform: translateY(8px) translateZ(0);
}

/* Small screens: More conservative positioning to avoid clipping */
@media (max-width: 480px) {
  #scrollToTopBtn {
    right: 12px !important;
    bottom: 12px !important;
    width: 40px;
    height: 40px;
    /* Ensure it's not behind other elements */
    z-index: 999999 !important;
  }
}

/* ===================== EXTRA RESPONSIVE FIXES ===================== */

/* Prevent overflow on small screens */
* {
  box-sizing: border-box;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Process tree better stacking */
@media (max-width: 600px) {
  .process-tree {
    flex-direction: column;
    align-items: center;
  }
  .node-box {
    width: 90%;
    height: auto;
  }
}

/* Zigzag circles aligned in center even on tiny screens */
@media (max-width: 480px) {
  .staff-augmentation-benefits .zigzag-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .staff-augmentation-benefits .zigzag-list li {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
    margin: 5px;
  }
}

/* Make images always fit container */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Reduce spacing and padding on very small devices */
@media (max-width: 400px) {
  .staff_overlay {
    padding: 20px;
  }
  .title {
    font-size: 1.4rem;
  }
  .type-title {
    font-size: 1.3rem;
  }
  .staff-augmentation-roles {
    padding: 30px 10px;
  }
}

/* Ensure no overlapping or text clipping */
@media (max-width: 360px) {
  .node-box {
    padding: 1.5rem;
  }
  .staff-augmentation-benefits .right h2 {
    font-size: 1.5rem;
  }
}





