/* Video Testimonials Section */
.video-testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 10px;
  font-weight: 700;
}

.video-testimonials .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-testimonial {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
}

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

.video-info {
  padding: 25px;
  text-align: center;
}

.video-info h3 {
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 5px;
  font-weight: 600;
}

.video-info p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 10px;
}

.video-info .company {
  display: inline-block;
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .video-testimonials {
    padding: 60px 0;
  }

  .video-testimonials h2 {
    font-size: 2rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .video-testimonial {
    border-radius: 15px;
  }

  .video-info {
    padding: 20px;
  }

  .video-info h3 {
    font-size: 1.3rem;
  }
}

/* Research Papers Section */
.research-papers {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #1a202c;
}

.research-papers h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1a202c;
}

.research-papers .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.papers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.paper-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.paper-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b5adb, #9333ea, #06b6d4);
}

.paper-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 20px 40px rgba(11, 90, 219, 0.15);
  border-color: #0b5adb;
}

.paper-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #1a202c;
  font-weight: 600;
  line-height: 1.4;
}

.paper-category {
  display: inline-block;
  background: rgba(11, 90, 219, 0.1);
  color: #0b5adb;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.authors {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.publication-date {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 15px;
}

.paper-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.paper-links a {
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.arxiv-link {
  background: #ff6b35;
  color: white;
}

.arxiv-link:hover {
  background: #e55a2b;
  transform: scale(1.05);
}

.pdf-link {
  background: #dc2626;
  color: white;
}

.pdf-link:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

.github-link {
  background: #374151;
  color: white;
}

.github-link:hover {
  background: #1f2937;
  transform: scale(1.05);
}

.research-cta {
  text-align: center;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.research-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a202c;
}

.research-cta p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 25px;
}

.research-cta .btn-primary {
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.research-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

@media (max-width: 768px) {
  .research-papers {
    padding: 60px 0;
  }

  .research-papers h2 {
    font-size: 2rem;
  }

  .papers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .paper-card {
    padding: 20px;
  }

  .paper-header h3 {
    font-size: 1.1rem;
  }

  .research-cta {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .research-cta h3 {
    font-size: 1.5rem;
  }
}
/*
 Light theme override for curriculum section */
.curriculum {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  color: #1a202c !important;
}

.curriculum h2 {
  color: #1a202c !important;
}

.curriculum .module {
  background: white !important;
  border: 1px solid #e2e8f0 !important;
  color: #1a202c !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.curriculum .module:hover {
  background: #f8fafc !important;
  border-color: #0b5adb !important;
  box-shadow: 0 8px 25px rgba(11, 90, 219, 0.15) !important;
}

.curriculum .module.active {
  background: white !important;
  border-color: #0b5adb !important;
  box-shadow: 0 8px 25px rgba(11, 90, 219, 0.15) !important;
}

.curriculum .module-header {
  background: transparent !important;
  color: #1a202c !important;
}

.curriculum .module-number {
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%) !important;
  color: white !important;
}

.curriculum .module-header h3 {
  color: #1a202c !important;
}

.curriculum .module-content {
  background: transparent !important;
  color: #64748b !important;
}

.curriculum .module-content p {
  color: #64748b !important;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 10px;
  font-weight: 700;
}

.stats-section .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b5adb, #9333ea, #06b6d4);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 90, 219, 0.15);
  border-color: #0b5adb;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.stat-icon i {
  font-size: 2rem;
  color: white;
}

.stat-box:hover .stat-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-section h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .stat-box {
    padding: 30px 20px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }

  .stat-description {
    font-size: 0.9rem;
  }
} /* 
Tools Marquee */
.tools-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 20px 0;
  margin: 40px 0;
}

.tools-track {
  display: inline-flex;
  animation: marquee 60s linear infinite;
  gap: 30px;
  align-items: center;
}

.tools-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tool-item {
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(0.3) opacity(0.8);
}

.tool-item:hover {
  transform: scale(1.1);
  filter: grayscale(0) opacity(1);
  z-index: 10;
  position: relative;
}

.tool-item img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.tool-item:hover img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .tools-track {
    animation-duration: 40s;
    gap: 20px;
  }

  .tool-item img {
    width: 60px;
    height: 60px;
  }
}

/* Reviews Gallery */
.reviews-gallery {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.review-card {
  display: flex;
  flex-direction: column;
  opacity: 0.7;
  transition: all 0.5s ease-in-out;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 220px;
  max-width: 220px;
  transform: scale(0.95);
  height: fit-content;
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(11, 90, 219, 0.2);
  border: 2px solid #0b5adb;
}

.gallery-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.nav-dot.active {
  background: #0b5adb;
  transform: scale(1.3);
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.reviewer-info h4 {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.reviewer-info p {
  margin: 5px 0 0 0;
  color: #666;
  font-size: 14px;
}

.review-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.company {
  color: #0b5adb;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .reviews-gallery {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Companies Marquee */
.companies-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.02) 100%
  );
  padding: 30px 0;
  margin: 40px 0;
  border-radius: 10px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.companies-track {
  display: inline-flex;
  animation: companiesMarquee 50s linear infinite;
  gap: 40px;
  align-items: center;
  padding-left: 100px;
}

.companies-track:hover {
  animation-play-state: paused;
}

@keyframes companiesMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.company-logo {
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(0.5) opacity(0.8);
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: scale(1.1);
  filter: grayscale(0) opacity(1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  position: relative;
}

.company-logo img {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .companies-marquee {
    margin-left: calc(-50vw + 50%);
    width: 100vw;
  }

  .companies-track {
    animation-duration: 35s;
    gap: 25px;
    padding-left: 50px;
  }

  .company-logo {
    padding: 10px;
  }

  .company-logo img {
    height: 45px;
    max-width: 90px;
  }
}

/* Alumni Marquee */
.alumni-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(0, 119, 181, 0.05) 0%,
    rgba(0, 119, 181, 0.1) 50%,
    rgba(0, 119, 181, 0.05) 100%
  );
  padding: 30px 0;
  margin: 40px 0;
  border-radius: 15px;
}

.alumni-track {
  display: inline-flex;
  animation: alumniMarquee 80s linear infinite;
  gap: 30px;
  align-items: flex-start;
}

.alumni-track:hover {
  animation-play-state: paused;
}

@keyframes alumniMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.linkedin-post {
  flex-shrink: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 20px;
  width: 350px;
  min-height: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: normal;
  position: relative;
}

.linkedin-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0077b5, #00a0dc);
  border-radius: 15px 15px 0 0;
}

.linkedin-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.2);
  border-color: #0077b5;
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.post-header h4 {
  margin: 0;
  color: #1a202c;
  font-size: 16px;
  font-weight: 600;
}

.post-header p {
  margin: 5px 0 0 0;
  color: #0077b5;
  font-size: 13px;
  font-weight: 500;
}

.linkedin-post > p {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 15px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  color: #0077b5;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.linkedin-link:hover {
  color: #005885;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .alumni-track {
    animation-duration: 60s;
    gap: 20px;
  }

  .linkedin-post {
    width: 280px;
    padding: 15px;
    min-height: 180px;
  }

  .post-header h4 {
    font-size: 14px;
  }

  .linkedin-post > p {
    font-size: 13px;
  }
}

/* Gamify Marquee */
.gamify-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(147, 51, 234, 0.1) 100%
  );
  padding: 25px 0;
  margin: 40px 0;
  border-radius: 15px;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.gamify-track {
  display: inline-flex;
  animation: gamifyMarquee 45s linear infinite;
  gap: 40px;
  align-items: center;
}

.gamify-track:hover {
  animation-play-state: paused;
}

@keyframes gamifyMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gamify-item {
  flex-shrink: 0;
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(11, 90, 219, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gamify-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.gamify-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  z-index: 10;
}

.gamify-item:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .gamify-track {
    animation-duration: 30s;
    gap: 25px;
  }

  .gamify-item {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* Success Stories Grid Section - Styles moved to testimonials-fix.css */

/* Testimonial responsive styles moved to testimonials-fix.css */

/* All conflicting CSS rules removed */
/* 
Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  position: relative;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  color: #1a202c;
  font-size: 1.5rem;
  font-weight: 700;
}

.close {
  color: #9ca3af;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close:hover {
  color: #374151;
}

.modal-body {
  padding: 30px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #0b5adb;
  box-shadow: 0 0 0 3px rgba(11, 90, 219, 0.1);
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input .country-code {
  flex: 0 0 120px;
  font-size: 0.9rem;
}

.phone-input input {
  flex: 1;
}

.btn-submit-modal {
  background: linear-gradient(135deg, #0b5adb 0%, #9333ea 100%);
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.btn-submit-modal:active {
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: none;
  }

  .modal-header {
    padding: 20px 25px 15px;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 25px;
  }

  .phone-input {
    flex-direction: column;
    gap: 15px;
  }

  .phone-input .country-code {
    flex: none;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 5% auto;
    width: 98%;
  }

  .modal-header {
    padding: 15px 20px 10px;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 20px;
  }

  .cta-form {
    gap: 15px;
  }
}
/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.email-input-group input[type="email"] {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    background: transparent;
    color: #333;
}

.email-input-group input[type="email"]::placeholder {
    color: #999;
}

.notify-btn {
    background: linear-gradient(135deg, #0b5adb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #0b5adb 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 90, 219, 0.4);
}

.notify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 500;
}

.message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .email-input-group {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .email-input-group input[type="email"] {
        border-radius: 15px;
        text-align: center;
    }
    
    .notify-btn {
        border-radius: 15px;
        width: 100%;
    }
    
    .newsletter-section h2 {
        font-size: 2rem;
    }
    
    .newsletter-section p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}