body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1000px;
}

section {
  padding: 40px 0;
}

.course-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.course {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 10px 20px;
  background: #4facfe;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.founder-img {
  width: 250px;
  border-radius: 10px;
  display: block;
  margin: 20px auto;
}

.team-members {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.member {
  text-align: center;
}

.member img {
  width: 200px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.yt-thumb {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 10px;
}

/* Responsive container */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive grid for courses and team */
.course-list,
.team-members {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Center text and form fields on smaller screens */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
  }

  .course,
  .member {
    flex: 1 1 100%;
    max-width: 100%;
  }

  form input,
  form textarea,
  form button {
    font-size: 1rem;
  }
}

/* Center content in sections */
section,
footer {
  text-align: center;
}


#about {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2c3e50;
}

#about .container {
  max-width: 900px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.highlight {
  color: #4facfe;
  font-weight: bold;
}

/* 🎯 Vision Section */
.vision-box {
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
  border-left: 5px solid #4facfe;
  padding: 20px 25px;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.vision-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.vision-text {
  font-size: 18px;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.6;
}

/* 📘 What We Offer */
.offerings-box {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.offerings-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #1a1a1a;
}

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

.offerings-list li {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.offerings-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #4facfe;
  font-size: 16px;
}

/* ✅ Course Tags */
.courses-highlight {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
}

.tag {
  display: inline-block;
  margin: 10px 10px 0;
  padding: 8px 15px;
  border: 1px solid #4facfe;
  border-radius: 20px;
  color: #4facfe;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: #4facfe;
  color: white;
  cursor: pointer;
}

/* ✅ Responsive Tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .vision-box,
  .offerings-box {
    padding: 20px;
  }

  .vision-text,
  .offerings-list li {
    font-size: 15px;
  }

  .tag {
    font-size: 14px;
    padding: 6px 12px;
  }
}


.why-choose {
  padding: 60px 20px;
  background-color: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose .container {
  max-width: 1000px;
  margin: auto;
}

.why-choose .section-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}

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

.feature-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #4facfe;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-left-color: #2f80ed;
  background-color: #f8fbff;
}

.feature-card span {
  display: inline-block;
  line-height: 1.5;
}




/* === General Header Styles === */
.vector-header {
  background: linear-gradient(to right, #ff4e50, #f9d423);
  color: white;
  padding-top: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* === Top Bar === */
.top-bar {
  background-color: #c0392b;
  color: white;
  padding: 8px 0;
  text-align: center;
  font-size: 16px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

/* === Main Header === */
.main-header {
  text-align: center;
  padding: 40px 20px 30px;
}

/* === Branding === */
.brand {
  margin: 0;
}

.v-big {
  font-size: 4.2rem;
  color: white;
  font-weight: bold;
}

.ector {
  font-size: 2.8rem;
  font-weight: bold;
}

.academy {
  font-size: 2.8rem;
  font-weight: 500;
  margin-left: 5px;
}

.tagline {
  font-size: 16px;
  font-style: italic;
  margin-top: 8px;
  color: #fdfdfd;
}

/* === Course Highlights === */
.highlighted-courses {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-top: 25px;
  line-height: 1.7;
}

.highlighted-courses span {
  display: inline-block;
  margin: 6px 8px;
  padding: 6px 12px;
  border: 1px solid white;
  border-radius: 20px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.highlighted-courses span:hover {
  background-color: white;
  color: #ff4e50;
  cursor: pointer;
}

/* === Explore Button === */
.explore-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: #fff;
  color: #d35400;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.explore-btn:hover {
  background-color: #fefefe;
  transform: scale(1.05);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .v-big {
    font-size: 3rem;
  }

  .ector,
  .academy {
    font-size: 2rem;
  }

  .tagline {
    font-size: 14px;
  }

  .highlighted-courses {
    font-size: 15px;
    padding: 0 10px;
  }

  .highlighted-courses span {
    font-size: 13px;
    margin: 5px 5px;
  }

  .explore-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}



.courses-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.course-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
  font-size: 22px;
  color: #34495e;
  margin-bottom: 15px;
}

.course-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #4facfe;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #00c6ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.youtube-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.youtube-section .section-title {
  font-size: 30px;
  color: #2c3e50;
  margin-bottom: 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.yt-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.yt-btn:hover {
  background-color: #cc0000;
}


.founder-section {
  background: linear-gradient(to right, #f8f9fa, #fff);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.founder-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.founder-photo {
  flex: 1 1 300px;
  text-align: center;
}

.founder-img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #dbe2e8;
}

.founder-content {
  flex: 2 1 500px;
}

.founder-content h3 {
  font-size: 24px;
  color: #34495e;
  margin-bottom: 5px;
}

.founder-content h4 {
  font-size: 18px;
  color: #777;
  margin-bottom: 15px;
}

.founder-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}

.founder-quote {
  font-style: italic;
  background-color: #eef6ff;
  padding: 15px 20px;
  border-left: 5px solid #4facfe;
  border-radius: 8px;
  color: #2c3e50;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-grid {
    flex-direction: column;
    text-align: center;
  }

  .founder-content {
    padding-top: 20px;
  }

  .founder-img {
    max-width: 220px;
  }
}

.testimonials-section {
  background: linear-gradient(135deg, #fff1f9, #f3e5f5, #ede7f6);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.testimonial {
  background: white;
  color: #2c3e50;
  border-radius: 10px;
  padding: 25px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
}

.testimonial strong {
  display: block;
  margin-top: 15px;
  color: #4facfe;
}


.cta-section {
  background: #ff4e50;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-btn {
  background: white;
  color: #ff4e50;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff0f0;
}

.contact-section {
  background: linear-gradient(135deg, #fff1f9, #f3e5f5, #ede7f6);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 350px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  font-size: 16px;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.contact-list a {
  color: #4facfe;
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
}


.social-icon:hover {
  transform: scale(1.1);
}

.contact-map {
  flex: 1 1 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map iframe {
    height: 250px;
  }

  .social-icon {
    margin-top: 10px;
  }
}

.follow-us-section {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  padding: 40px 20px;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.follow-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.follow-text {
  font-size: 16px;
  margin-bottom: 30px;
  color: #e0f7ff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  width: 55px;
  height: 55px;
  background-color: white;
  color: #4facfe;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #fff4f4;
}

.social-icon.instagram {
  color: #C13584;
}

.social-icon.youtube {
  color: #FF0000;
}

.social-icon.whatsapp {
  color: #25D366;
}

/* FontAwesome CDN Required */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* Responsive */
@media (max-width: 600px) {
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}


#contact {
  background: #f7f9fc;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

#contact h2 {
  margin-bottom: 30px;
  color: #333;
}

#contact form {
  max-width: 500px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

#contact button {
  background: #4facfe;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button:hover {
  background: #00f2fe;
}

.admission-section {
  background: radial-gradient(circle at top left, #4facfe, #00f2fe, #2af598);
  padding: 60px 20px;
  text-align: center;
  color: rgb(12, 12, 12);
  font-family: 'Segoe UI', sans-serif;
}

.admission-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.admission-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.register-btn {
  background: #fff;
  color: #333;
  padding: 12px 25px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.register-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .admission-section h2 {
    font-size: 24px;
  }

  .register-btn {
    width: 100%;
    display: block;
    /* ✅ instead of inline-block */
    text-align: center;
    box-sizing: border-box;
  }
}


.founder-email {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}

.founder-email a {
  color: #4facfe;
  text-decoration: none;
}

.founder-email a:hover {
  text-decoration: underline;
}

.register-link-look {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}

.register-link-look:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.carrerpath-Section {
  background: #f0f8ff;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.carrerpath-Section .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #003366;
  margin-bottom: 20px;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.infographic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
  padding: 0 15px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  flex: 1 1 300px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.03));
  transform: rotate(25deg);
  z-index: 0;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 123, 255, 0.1);
}

.info-card i {
  font-size: 42px;
  color: #007bff;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  text-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.info-card h4 {
  font-size: 21px;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

.info-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* ===== Career Roadmap Section ===== */

.roadmap {
  text-align: center;
  padding: 20px 15px;
}

.roadmap-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.4;

  background: linear-gradient(to right, #e91e63, #ff5722);
  background-clip: text;
  /* ✅ Standard property */
  -webkit-background-clip: text;
  /* ✅ WebKit support */
  -webkit-text-fill-color: transparent;

  color: #e91e63;
  /* fallback color */
}


/* Animated underline */
.roadmap-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60%;
  height: 3px;
  background: #007bff;
  transform: translateX(-50%);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.roadmap-title:hover::after {
  width: 80%;
}


.roadmap-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.step {
  background: linear-gradient(to right, #ffffff, #f2f9ff);
  padding: 22px 20px;
  border-left: 5px solid #007bff;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: left;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.15);
}

.step span {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
}

.step h5 {
  font-size: 18px;
  color: #222;
  margin-bottom: 6px;
  font-weight: 600;
}

.step p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {

  .info-card,
  .step {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .infographic,
  .roadmap-steps {
    flex-direction: column;
    align-items: center;
  }

  .roadmap h3 {
    font-size: 24px;
  }

  .info-card h4 {
    font-size: 18px;
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  padding: 40px 20px;
  transition: all 0.3s ease-in-out;
}

.modal-content {
  background: #ffffff;
  margin: auto;
  padding: 35px 30px;
  border-radius: 16px;
  max-width: 520px;
  position: relative;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.modal-content h2 {
  font-size: 26px;
  color: #003366;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 14px;
  margin: 12px 0 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #007bff;
  outline: none;
}

.modal-content textarea {
  min-height: 120px;
  resize: vertical;
}

.modal-content button[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.modal-content button[type="submit"]:hover {
  background-color: #0056b3;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 26px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: red;
}

.open-modal-btn {
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.open-modal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: 0.5s;
  z-index: 2;
}

.open-modal-btn:hover::before {
  left: 200%;
}

.open-modal-btn:hover {
  background: linear-gradient(135deg, #0056b3, #00aaff);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.4);
}

@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 25px 20px;
  }

  .modal-content h2 {
    font-size: 22px;
  }

  .modal-content input,
  .modal-content textarea {
    font-size: 15px;
  }

  .open-modal-btn {
    font-size: 15px;
    padding: 12px 20px;
  }
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.modal-form textarea {
  resize: vertical;
  min-height: 120px;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.modal-form button[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-form button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Stylish Paragraph Font Enhancer */
.stylish-paragraph {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #2c3e50;
  line-height: 1.7;
}

.career-quote {
  background: #fff0f6;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.1);
  transition: transform 0.3s ease;
}

.career-quote:hover {
  transform: translateY(-4px);
}

.quote-line {
  font-size: 20px;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 12px;
  line-height: 1.6;
}

.quote-subline {
  font-size: 17px;
  color: #444;
  font-weight: 500;
  line-height: 1.7;
}

.highlight {
  color: #d81b60;
  font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .quote-line {
    font-size: 18px;
  }

  .quote-subline {
    font-size: 16px;
  }

  .career-quote {
    padding: 25px 15px;
  }
}

/* Common styles */
.whatsapp-float,
.call-float {
  position: fixed;
  z-index: 1000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

/* WhatsApp Button Styling */
.whatsapp-float {
  bottom: 95px;
  right: 20px;
  background-color: #25d366;
  padding: 12px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebea5;
}

/* Call Button Styling */
.call-float {
  bottom: 20px;
  right: 20px;
  background-color: #101f7c;
  padding: 12px;
}

.call-float:hover {
  transform: scale(1.1);
  background-color: #25d366;
}

/* Image size */
.whatsapp-float img,
.call-float img {
  width: 30px;
  height: 30px;
}