body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
  min-height: 100vh;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.nav-logo-img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  background-color: #0073e6;
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.container {
  max-width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px 20px 20px; /* Add top padding for navbar */
  box-sizing: border-box;
  overflow: hidden; /* Prevent any content overflow */
}

.main-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  margin-top: 0; /* Remove margin since navbar handles spacing */
}

.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-section {
  width: 100%;
  max-width: 500px;
}

.contact-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.center-image {
  max-width: 95%; /* Reduced from 120% by about 20% */
  height: auto;
  border-radius: 10px;
  margin-top: 0; /* Remove margin since no logo overlap */
}

.message {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #888; /* Changed to grey color */
}

.email-info {
  margin-bottom: 25px;
  text-align: center;
}

.email-info p {
  font-size: 18px;
  color: #555;
  margin-bottom: 8px;
}

.email-info a {
  font-size: 20px;
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
}

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

.contact-details {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  color: #333;
  display: inline-block;
  width: 100px;
  font-weight: 600;
}

.contact-item span {
  color: #555;
}

.contact-item a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

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

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  body {
    padding: 0;
    height: auto; /* Allow content to flow naturally */
    overflow-y: auto; /* Allow vertical scrolling on mobile */
  }
  
  .navbar {
    height: 60px;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding-top: 20px;
    transition: left 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    padding: 15px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .container {
    padding: 60px 10px 10px;
    height: auto;
    justify-content: flex-start;
  }
  
  .main-content {
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
    width: 100%;
    align-items: center;
  }
  
  .left-section {
    width: 100%;
    order: 1;
  }
  
  .center-image {
    max-width: 80%;
    margin-top: 0;
  }
  
  .message {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 0;
  }
  
  .right-section {
    width: 100%;
    order: 2;
  }
  
  .contact-section {
    width: 100%;
    max-width: none;
  }
  
  .contact-section h2 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 0;
  }
  
  .email-info {
    margin-bottom: 15px;
  }
  
  .email-info p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .email-info a {
    font-size: 15px;
  }
  
  .contact-details {
    padding: 12px;
    margin-top: 10px;
  }
  
  .contact-item {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .contact-item strong {
    display: block;
    width: auto;
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .contact-item span,
  .contact-item a {
    display: block;
    margin-left: 0;
  }
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
  .container {
    padding: 8px;
    padding-top: 60px;
  }
  
  .logo {
    width: 50px;
    top: 6px;
    left: 6px;
  }
  
  .center-image {
    max-width: 85%;
  }
  
  .message {
    font-size: 15px;
    margin-top: 3px; /* Minimal margin */
    margin-bottom: 0; /* Remove bottom margin */
  }
  
  .contact-section h2 {
    font-size: 18px;
    margin-bottom: 6px; /* Reduced margin */
    margin-top: 0; /* Remove top margin */
  }
  
  .email-info p {
    font-size: 13px;
  }
  
  .email-info a {
    font-size: 14px;
  }
  
  .contact-details {
    padding: 10px;
  }
  
  .contact-item {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .contact-item strong {
    font-size: 13px;
  }
}

/* PAGE CONTAINER STYLES */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 40px;
  min-height: calc(100vh - 70px);
  background: transparent;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 15px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* COURSES PAGE STYLES */
.courses-intro {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.courses-intro h2 {
  color: #1e40af;
  margin-bottom: 20px;
  font-size: 2rem;
}

.courses-intro p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.course-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  min-height: 450px;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}

.course-card h3 {
  color: #1e40af;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.course-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
  min-height: 35px;
}

.course-meta span {
  background: #eff6ff;
  color: #1e40af;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.course-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  min-height: 60px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.course-features li {
  color: #059669;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.course-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #059669;
}

.course-cta {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.btn-primary, .btn-secondary {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
}

.btn-primary.large,
.btn-secondary.large {
  padding: 15px 30px;
  font-size: 1.1rem;
  flex: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

.courses-recognition {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
}

.courses-recognition h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

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

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ADMISSIONS PAGE STYLES */
.admission-banner {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 50px;
  text-align: center;
}

.banner-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.banner-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-features span {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.admission-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.admission-section {
  margin-bottom: 50px;
}

.admission-section:last-child {
  margin-bottom: 0;
}

.admission-section h3 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #eff6ff;
}

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

.requirement-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.requirement-card h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.requirement-card ul {
  list-style: none;
  padding: 0;
}

.requirement-card li {
  color: #64748b;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.requirement-card li:before {
  content: "•";
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.process-steps {
  display: grid;
  gap: 25px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
}

.step-number {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: #1e40af;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
}

.fee-info, .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.fee-card, .info-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.fee-card h4, .info-card h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.hostel-info {
  background: #f0f9ff;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #bfdbfe;
}

.hostel-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  color: #059669;
  font-weight: 500;
}

.admission-cta {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
}

.admission-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.admission-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.cta-note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* ABOUT PAGE STYLES */
.about-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.about-section {
  margin-bottom: 50px;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section h2 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #eff6ff;
}

.mission-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.point {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.point h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.point p {
  color: #64748b;
  line-height: 1.6;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.recognition-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.recognition-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.recognition-card h3 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.recognition-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.recognition-card .badge {
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.facility-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.facility-item h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.facility-item p {
  color: #64748b;
  line-height: 1.6;
}

.faculty-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.feature {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.feature h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature p {
  color: #64748b;
  line-height: 1.6;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.choose-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.choose-item:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.choose-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.choose-item h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.choose-item p {
  color: #64748b;
  line-height: 1.6;
}

.location-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.location-item {
  color: #059669;
  font-weight: 500;
  padding: 10px;
  background: #f0fdf4;
  border-radius: 8px;
}

.commitment-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.commitment-list li {
  color: #64748b;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.commitment-list li:before {
  content: "✓";
  color: #10b981;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.about-cta {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* MOBILE RESPONSIVENESS FOR NEW PAGES */
@media (max-width: 768px) {
  .page-container {
    padding: 90px 15px 30px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .course-card {
    padding: 20px;
    min-height: 400px;
  }
  
  .course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    min-height: 45px;
  }
  
  .course-meta {
    gap: 6px;
    margin-bottom: 12px;
    min-height: 30px;
  }
  
  .course-meta span {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  
  .course-features {
    min-height: 70px;
  }
  
  .course-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .requirements-grid,
  .recognition-grid,
  .facilities-grid,
  .mission-points,
  .faculty-features,
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .admission-cta,
  .about-cta {
    padding: 30px 20px;
  }
  
  .admission-content,
  .about-content {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 30px 0;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .admission-section h3,
  .about-section h2 {
    font-size: 1.5rem;
  }
  
  .course-card h3 {
    font-size: 1.2rem;
  }
  
  .course-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* HOME PAGE STYLES */
.hero-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.1));
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3rem;
  color: #1e40af;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #3b82f6;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.badge-item {
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-section {
  margin-bottom: 80px;
}

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

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #1e40af;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

.popular-courses-section {
  margin-bottom: 80px;
}

.popular-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.popular-course-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.popular-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.course-header h3 {
  color: #1e40af;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.duration-badge {
  background: #eff6ff;
  color: #1e40af;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.popular-course-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-highlights {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.course-highlights span {
  background: #f0fdf4;
  color: #059669;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.course-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.course-link:hover {
  color: #1e40af;
}

.view-all-courses {
  text-align: center;
}

.quick-contact-section {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}

.quick-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info p {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
}

.method-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-details h4 {
  color: #1e40af;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.method-details p {
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.contact-actions h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-action-btn.whatsapp {
  background: #25D366;
  color: white;
}

.quick-action-btn.call {
  background: #2563eb;
  color: white;
}

.quick-action-btn.admission {
  background: #10b981;
  color: white;
}

.quick-action-btn.visit {
  background: #8b5cf6;
  color: white;
}

.quick-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.action-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.stats-section {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 80px;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fbbf24;
}

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

.cta-section {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* MOBILE RESPONSIVENESS FOR HOME PAGE */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .features-grid,
  .popular-courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .quick-contact-section {
    padding: 30px 20px;
  }
  
  .quick-contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-section,
  .cta-section {
    padding: 40px 20px;
  }
  
  .stats-section h2,
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .course-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .course-highlights {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px 80px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

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

/* Quick Contact Actions */
.quick-contact-actions {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.quick-contact-actions h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2d3748;
}

.contact-actions-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-action-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.contact-action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.action-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-action-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3748;
}

.contact-action-card p {
  color: #718096;
  margin-bottom: 20px;
}

.action-number {
  display: block;
  font-weight: 600;
  color: #667eea;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.action-email {
  display: block;
  font-weight: 600;
  color: #667eea;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.action-badge {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.whatsapp .action-icon { color: #25D366; }
.phone .action-icon { color: #007AFF; }
.email .action-icon { color: #EA4335; }

/* Contact Information Grid */
.contact-info-section {
  padding: 80px 20px;
  background: white;
}

.contact-info-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2d3748;
}

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

.info-card {
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #2d3748;
}

.info-details {
  text-align: left;
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.day {
  font-weight: 600;
  color: #4a5568;
}

.time {
  color: #667eea;
  font-weight: 500;
}

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

.services-list li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 20px;
}

.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.recognition-item {
  margin-bottom: 15px;
}

.badge-pnc, .badge-pmdc {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.info-btn {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.info-btn:hover {
  transform: scale(1.05);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #2d3748;
}

.form-header p {
  color: #718096;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #4a5568;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.form-actions {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: scale(1.05);
}

.btn-icon {
  font-size: 1.2rem;
}

.form-note {
  margin-top: 15px;
  color: #718096;
  font-size: 0.9rem;
}

/* Additional Information */
.additional-info {
  padding: 80px 20px;
  background: white;
}

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

.info-item {
  text-align: center;
  padding: 30px 20px;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2d3748;
}

.info-item p {
  color: #718096;
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary.large,
.btn-secondary.large {
  padding: 18px 35px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-primary.large {
  background: white;
  color: #667eea;
}

.btn-secondary.large {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-primary.large:hover,
.btn-secondary.large:hover {
  transform: scale(1.05);
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .contact-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-cta h2 {
    font-size: 2rem;
  }
}
