/* Base Styles */
:root {
  --primary-color: #2F80ED;
  --secondary-color: #27AE60;
  --accent-color: #F2C94C;
  --text-color: #333333;
  --light-gray: #F5F5F5;
  --dark-gray: #4F4F4F;
  --white: #FFFFFF;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #2F80ED, #56CCF2);
  --gradient-secondary: linear-gradient(135deg, #27AE60, #6FCF97);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Top Bar */
.top-bar {
  background-color: #333333;
  color: white;
  padding: 8px 0;
  font-size: 0.8rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
  line-height: 1;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  line-height: 1;
}

.info-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: -12.5px;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.info-item i {
  margin-right: 8px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.social-icons {
  display: flex;
  align-items: center;
  height: 100%;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.2);
}

/* Modern Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow);
  position: fixed;
  width: 100%;
  top: 55px; /* Height of top bar */
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eaeaea;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 65px;
  transition: all 0.3s ease;
}

header.scrolled .logo img {
  max-height: 55px;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-item {
  margin: 0 20px;
  display: inline-flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.nav-item a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-item a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease, background-color 0.3s ease;
  transform-origin: left;
}

.nav-item a:hover {
  color: var(--primary-color);
}

.nav-item a:hover:after,
.nav-item.active a:after {
  width: 100%;
}

.nav-item.active a {
  color: var(--primary-color);
  font-weight: 600;
}

.apply-btn {
  margin-left: 15px;
  display: flex;
  align-items: center;
  height: 100%;
}

.apply-btn a {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
}

.apply-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 128, 237, 0.4);
}

/* Page Content Spacing */
body {
  padding-top: 130px; /* Account for fixed header + top bar */
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.breadcrumb a {
  color: var(--accent-color);
}

.breadcrumb i {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.section-header h2 {
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 15px;
}

.underline {
  height: 4px;
  width: 70px;
  background-color: var(--secondary-color);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #2563EB;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #219653;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 25px;
}

.nav-item a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.nav-item a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-item a:hover:after,
.nav-item.active a:after {
  width: 100%;
}

.nav-item.active a {
  color: var(--primary-color);
}

.apply-btn a {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
}

.apply-btn a:hover {
  background-color: #219653;
  color: var(--white);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0;
  text-align: center;
}

.hero-banner {
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
  transform: rotate(-2deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.banner-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  margin: 0 10px;
}

/* About Preview Section */
.about-preview {
  padding: 80px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Programs Section */
.programs {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-image {
  margin: -30px -30px 20px -30px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 200px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.program-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.program-card p {
  margin-bottom: 20px;
}

.program-features {
  margin-bottom: 20px;
}

.program-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.program-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  padding: 20px;
  display: none;
}

.testimonial-slide:first-child {
  display: block;
}

.testimonial-content {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.quote-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

.testimonial-controls button {
  background-color: var(--light-gray);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Social Feed Section */
.social-feed {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.facebook-feed {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Footer */
footer {
  background-color: #1A1A2E;
  color: var(--white);
  padding: 80px 0 20px;
}

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

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 14px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #B3B3B3;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-bottom-links a {
  color: #B3B3B3;
  margin-left: 20px;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb span {
  color: var(--secondary-color);
}

/* About Page Styles */
.mission-vision {
  padding: 80px 0;
  background-color: var(--white);
}

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

.mission-box, .vision-box {
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.mission-box {
  background-color: rgba(47, 128, 237, 0.05);
}

.vision-box {
  background-color: rgba(39, 174, 96, 0.05);
}

.icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.vision-box .icon {
  color: var(--secondary-color);
}

/* Values Section */
.values {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

.value-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Principal Message */
.principal-message {
  padding: 80px 0;
  background-color: var(--white);
}

.message-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.principal-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.message-text {
  flex: 2;
  position: relative;
}

.principal-signature {
  margin-top: 20px;
}

.principal-signature h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Accreditation Section */
.accreditation {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.accreditation-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.accreditation-logo {
  text-align: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  width: 200px;
}

.accreditation-logo img {
  height: 80px;
  margin-bottom: 15px;
}

.accreditation-logo h4 {
  font-size: 14px;
  color: var(--primary-color);
}

/* Location Section */
.location {
  padding: 80px 0;
  background-color: var(--white);
}

.location-content {
  display: flex;
  gap: 40px;
}

.location-info {
  flex: 1;
}

.location-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.location-info p {
  margin-bottom: 15px;
}

.location-info i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.location-map {
  flex: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: var(--white);
}

.accordion-header {
  padding: 20px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  font-size: 18px;
  color: var(--primary-color);
}

.accordion-icon {
  color: var(--secondary-color);
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.accordion-body.active {
  padding: 20px;
  max-height: 500px;
}

/* Courses Page Styles */
.courses {
  padding: 80px 0;
  background-color: var(--white);
}

.course-item {
  margin-bottom: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.course-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
}

.course-icon {
  font-size: 30px;
  margin-right: 20px;
}

.course-header h3 {
  flex: 1;
  margin: 0;
}

.course-duration {
  font-size: 14px;
}

.course-duration i {
  margin-right: 5px;
}

.course-content {
  display: flex;
  flex-wrap: wrap;
}

.course-image {
  flex: 1;
  min-width: 300px;
}

.course-details {
  flex: 2;
  padding: 30px;
  min-width: 300px;
}

.course-description h4 {
  color: var(--primary-color);
  margin: 20px 0 10px;
}

.course-description ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.course-description ul li {
  margin-bottom: 5px;
  list-style-type: disc;
}

.course-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* Application Process */
.application-process {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.process-step {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  width: 200px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-icon {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.application-cta {
  text-align: center;
  margin-top: 40px;
}

.application-cta p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* Gallery Page Styles */
.gallery-section {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: var(--light-gray);
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-info {
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.gallery-info h3 {
  margin-bottom: 10px;
}

.video-gallery {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

.video-info {
  margin-top: 15px;
  text-align: center;
}

.video-info h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* Text center utility class */
.text-center {
  text-align: center;
}

/* Auto margin for centered underline */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

/* Contact Info Column */
.contact-info-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Contact Card Styling */
.contact-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

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

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
  font-size: 28px;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0;
}

/* Social Icons Grid */
.contact-social {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--box-shadow);
  text-align: center;
  border-top: 4px solid var(--secondary-color);
}

.contact-social h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.social-icon-box {
  width: 50px;
  height: 50px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.social-icon-box:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-5px);
}

/* Contact Form Column */
.contact-form-column {
  display: flex;
  align-items: stretch;
}

.contact-form-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  width: 100%;
  border-top: 4px solid var(--secondary-color);
}

.contact-form-wrapper h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5rem;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.1);
  outline: none;
}

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

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Map Section Styling */
.map-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.directions-box {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--box-shadow);
  margin-top: 30px;
}

.directions-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.directions-content {
  flex: 1;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-faq {
  padding: 80px 0;
  background-color: var(--white);
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .about-content,
  .message-content {
    flex-direction: column;
  }
  
  .about-image,
  .principal-image {
    margin-top: 30px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .program-cards,
  .values-content,
  .mission-vision-content,
  .contact-content,
  .location-content,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .location-map {
    margin-top: 30px;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 15px;
  }
  
  .footer-bottom-links a {
    margin: 0 10px;
  }
}

@media screen and (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .hero-content .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .page-banner h1 {
    font-size: 32px;
  }
}
