/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #f4f6fc;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #112f5c; /* deep navy */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  border-radius: 50%;
  border: 2px solid #fff;
  height: 50px;
  width: 50px;
}
.logo span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #4facfe;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #4facfe;
}
.nav-links a:hover::after {
  width: 100%;
}   

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #599cbe 0%, #182494 100%);
  color: white;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #599cbe 0%, #182494 100%);
  color: white;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Hero Section Logo */
.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(59,130,246,0.6);
  transition: transform 0.3s ease;
}

/* Smooth Glow Animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 15px rgba(59,130,246,0.3), 0 0 30px rgba(59,130,246,0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(59,130,246,0.8), 0 0 60px rgba(59,130,246,0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(59,130,246,0.3), 0 0 30px rgba(59,130,246,0.3);
  }
}

.glow-logo {
  animation: glow 2.5s ease-in-out infinite;
}

/* Hero Text */
.hero h1 {
  font-size: 55px;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero p {
  font-size: 22px;
  margin-bottom: 25px;
  color: #fff;
  opacity: 0.9;
}

/* Button */
.btn {
  display: inline-block;
  background: #fff;
  color: #6a11cb;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn:hover {
  background: #6a11cb;
  color: #fff;
}


/* Section Titles */
section {
  padding: 70px 60px;
  text-align: center;
}
section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0a1930;
  font-weight: bold;
}
section p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
}

/* About Section Background and Styling */
#about {
  background: linear-gradient(135deg, #c6e2ef 0%, #b0b6ef 100%); /* subtle tech-themed gradient */
  padding: 70px 60px;
}

#about h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #0a1930;
}

#about p {
  font-size: 15px; /* smaller, readable font */
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

#about p em {
  color: #6a11cb;
  font-weight: bold;
  font-style: normal;
}



/* Services */
/* Services Section Background */
#services {
  background: linear-gradient(135deg,#b0b6ef 0%, #c6e2ef 100%);
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
}

#services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  font-weight: 700;
}

.service-card {
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Backgrounds for each service */
.web-bg {
  background: #f4f7ff;
}

.software-bg {
  background: #f8f9fc;
}

.training-bg {
  background: #f5faff;
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px;
  flex-wrap: wrap;
}

.service-card.reverse .service-content {
  flex-direction: row-reverse;
}

.service-content .text {
  flex: 1;
}

.service-content .text h3 {
  font-size: 1.8rem;
  color: #3a3a8f;
  margin-bottom: 20px;
}

.service-content .text p {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444;
}

.service-content .image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-content .image img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.contact-btn {
  background-color: #3a3a8f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-btn:hover {
  background-color: #29296b;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* For ALL services on mobile → image first, text second */
  .service-content {
    flex-direction: column !important;
    padding: 30px;
    gap: 20px;
  }

  .service-content .image {
    order: -1; /* put image above text */
  }

  .service-content .image img {
    max-width: 100%;
  }

  #services h2 {
    font-size: 2rem;
  }

  .service-content .text h3 {
    font-size: 1.5rem;
  }

  .service-content .text p {
    font-size: 0.95rem;
  }

  .contact-btn {
    padding: 10px 20px;
  }
}






/* Internships */
/* Features of Internships */
.internship-features {
  background: linear-gradient(145deg, #b1b9ea, #eef3ff);
  padding: 60px 40px;
  border-radius: 15px;
  margin-top: 50px;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}
.feature-card h3 {
  font-size: 18px;
  color: #6a11cb;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: #555;
}

/* FAQ Section */
.internship-faq {
  margin-top: 60px;
  padding: 60px 40px;
  background: linear-gradient(145deg, #b1b9ea, #eef3ff);
  border-radius: 15px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: #6a11cb;
  color: white;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #4facfe;
}

.faq-answer {
  display: none;
  background: #fff;
  padding: 15px;
  font-size: 14px;
  color: #444;
}

/* Show answer when active */
.faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .features-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 100%;
    max-width: 320px;
  }
}



/* Internships Section Background */
#internships {
  background: linear-gradient(135deg,#47ee9a, #3169db); 
  padding:40px 60px;
}
.internship-heading {
  position: relative;
  text-align: center;
  margin-bottom: -130px;
}

.internship-heading .heading-bg {
  width: 500px;
  height: auto;
}

.internship-heading h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.internship-intro {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: -20px;
}
.sp-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(145deg, #d0e8f0, #eef3ff);
  flex-direction: column;
  border-radius: 15px;
  align-items: center;
  gap: 60px; /* space between each card */
  margin: 60px auto;
  width: 100%;

}

.sp-ad-card {
  background: linear-gradient(135deg,#f8f8fa, #7cd8a5, #eeeaec);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 40px 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  width: 100%;
  gap: 40px;
}

.sp-ad-card:hover {
  transform: translateY(-12px) scale(1.02); /* 👈 subtle lift + scale */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, #8cd6ae,#c3c3d8, #7cd8a5,); /* soft light gradient */
}
/* Left Section (Text) */
.sp-ad-card .text {
  flex: 1;
  text-align: left;
}

.sp-ad-card .text h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 15px;
}

.sp-ad-card .text p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
}

.sp-ad-card .text ul {
  list-style: none;
  padding: 0;
}

.sp-ad-card .text ul li {
  color: #444;
  font-size: 1em;
  margin: 6px 0;
}

/* Right Section (Image + Buttons) */
.sp-ad-card .image {
  flex: 1;
  text-align: center;
}

.sp-ad-card .image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sp-ad-card .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}


.price-section {
  margin-top: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.3rem;
  margin-right: 10px;
}

.new-price {
  color: #00a859;
  font-size: 2rem;
  font-weight: 700;
}

.validity {
  margin-top: 8px;
  font-size: 1rem;
  color: #ff4b4b;
  font-weight: 600;
}


/* Buttons */
.Broucher-btn,
.Apply-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 38px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease;
}

.Broucher-btn {
  background-color: #6c63ff;
}

.Apply-btn {
  background-color: #007bff;
}

.Broucher-btn:hover {
  background-color: #5750d6;
}

.Apply-btn:hover {
  background-color: #0056b3;
}
/* 🎯 RESPONSIVE DESIGN */

/* Tablets (≤ 900px) */
@media (max-width: 900px) {
  #internships {
    padding: 30px 25px;
  }

  .internship-heading .heading-bg {
    width: 300px;
  }

  .sp-ad-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 25px;
  }

  .sp-ad-card .text {
    text-align: center;
  }

  .sp-ad-card .text h2 {
    font-size: 1.8rem;
  }

  .sp-ad-card .text p {
    font-size: 1rem;
  }

  .sp-ad-card .image img {
    max-width: 280px;
  }

  .Broucher-btn,
  .Apply-btn {
    font-size: 1.2rem;
    padding: 12px 22px;
  }

  .price-section {
    margin-top: 15px;
  }

  .new-price {
    font-size: 1.6rem;
  }
}

/* Mobiles (≤ 600px) */
@media (max-width: 600px) {
  #internships {
    padding: 25px 15px;
  }

  .internship-heading .heading-bg {
    width: 220px;
  }

  .internship-heading h1 {
    font-size: 1.5rem;
  }

  .sp-card {
    padding: 30px 10px;
    gap: 40px;
  }

  .sp-ad-card {
    padding: 25px 15px;
    gap: 20px;
  }

  .sp-ad-card .text h2 {
    font-size: 1.5rem;
  }

  .sp-ad-card .text p,
  .sp-ad-card .text ul li {
    font-size: 0.95rem;
  }

  .new-price {
    font-size: 1.4rem;
  }

  .validity {
    font-size: 0.9rem;
  }

  .sp-ad-card .image img {
    max-width: 220px;
  }

  .Broucher-btn,
  .Apply-btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px 18px;
  }

  .sp-ad-card .buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/*
.internships-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}
.internships-container .card {
  background: linear-gradient(145deg, #b1b9ea, #eef3ff);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 250px;
}
.internships-container .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}
.internships-container h3 {
  margin-bottom: 10px;
  color: #4facfe;
  font-size: 20px;
}
.internships-container p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
}
.internships-container .btn {
  font-size: 14px;
  padding: 10px 20px;
  background: #6a11cb;
  color: #fff;
  border-radius: 25px;
}
.internships-container .btn:hover {
  background: #4facfe;
}*/



/* Contact */
/* Contact Section Background */
#contact {
  background: linear-gradient(135deg, #e6fff7, #ccffe6); /* soft greenish gradient */
  padding: 70px 60px;
  border-radius: 15px;
}
.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}
.contact input:focus,
.contact textarea:focus {
  border-color: #4facfe;
}
.contact button {
  border: none;
  cursor: pointer;
  background: #6a11cb;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-weight: bold;
}
.contact button:hover {
  background: #4facfe;
}
/* Spinner */
.spinner {
  margin: 15px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6a11cb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer */
footer {
  background: #0a1930;
  color: #fff;
  padding: 50px 20px 20px;
}

/* Footer Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-between;
}

/* Footer Columns */
.footer-column {
  flex: 1 1 180px;
}

.footer-column h3,
.footer-column h4 {
  color: #4facfe;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li a:hover {
  color: #6a11cb;
}

/* Social Media Column */
.footer-column.social .social-icons {
  display: flex;
  flex-direction: column; /* vertical stacking */
  gap: 10px;
}

.footer-column.social .social-link {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and name */
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column.social .social-link img {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.footer-column.social .social-link:hover {
  color: #4facfe; /* highlight on hover */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.7;
}
/* Hamburger toggle button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu with transparent blur */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px; /* below navbar */
    right: 20px;
    width: 180px; /* compact width */
    background: rgba(255, 255, 255, 0.2); /* transparent white */
    backdrop-filter: blur(10px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    flex-direction: column;
    align-items: center;
    display: none;
    border-radius: 12px;
    padding: 15px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #fff; /* change to white to look good on blur */
    font-weight: 500;
    transition: 0.3s;
  }

  .nav-links a:hover {
    color: #4facfe;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {

  /* Hero Section */
  .hero {
    height: auto;
    padding: 50px 20px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-logo {
    width: 150px;
    height: 150px;
  }

  /* About Section */
  #about {
    padding: 50px 20px;
  }
  #about h2 {
    font-size: 28px;
    text-align: center;
  }
  #about p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
  }

  /* Services Section */
  #services {
    padding: 50px 20px;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-cards .card {
    width: 90%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  /* Internships Section */
  #internships {
    padding: 50px 20px;
  }
  .internships-container {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 20px;
  }
  .internships-container .card {
    width: 100%;
    max-width: 100%;
  }

  /* Features of Internships */
  .internship-features {
    padding: 40px 20px;
  }
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .feature-card {
    width: 90%;
    max-width: 300px;
  }

  /* FAQ Section */
  .internship-faq {
    padding: 40px 20px;
  }

  /* Team Section */
  #team {
    padding: 50px 20px;
  }
  .team-members {
    flex-direction: column;
    align-items: center;
  }
  .member {
    width: 90%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Footer adjustments 
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }*/

}



