/* 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; }
}

/* Overlay 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;
  }

  .logo img {
    height: 90px;
    width: 250px;
  }

  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
  }

  .nav-links li a:hover {
    color: #007bff;
  }

  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
    }

    .nav-links {
      flex-direction: column;
      gap: 15px;
      margin-top: 15px;
    }
  }
/* 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: 400px;
  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;
}

.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 styling */
#services {
  padding: 40px 20px;
  text-align: center;
}

#services h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* Grid: 2 rows, 4 cards per row */
.service-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

 .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}


.flip-container {
  width: 100%;
  height: 200px;
  perspective: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-container:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-back {
  background-color: #f1f1f1;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transform: rotateY(180deg);
}

.service-card h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 992px) {
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-container {
    grid-template-columns: 1fr;
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 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;
  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: 900px;
  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;
}

/* Optional subtle animation */
@keyframes fadeBackground {
  0% { background-position: center top; }
  90% { background-position: center bottom; }
}

/* 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;
} */