/* Base Styles */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #10b981;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --transition: all 0.3s ease;
  --text-white: #ffffff;

  /* Primary color palette - Blue theme */
  --primary-color: #1e88e5; /* Rich blue */
  --primary-light: #64b5f6;
  --primary-dark: #0d47a1;
  --secondary-color: #0288d1; /* Lighter blue */
  --secondary-light: #5eb8ff;
  --secondary-dark: #005b9f;
  --accent-color: #29b6f6; /* Sky blue */
  --accent-light: #73e8ff;
  --accent-dark: #0086c3;

  /* Text colors */
  --text-color: #263238;
  --text-light: #546e7a;
  --text-white: #ffffff;
  --text-highlight: #e3f2fd; /* Light blue for highlights */

  /* Background colors */
  --background-color: #ffffff;
  --background-light: #f5f5f5;
  /* --background-alt: #e3f2fd; Light blue background */
  --background-gradient: linear-gradient(135deg, #e3f2fd, #bbdefb);

  /* UI elements */
  --border-color: #e0e0e0;
  --border-highlight: #90caf9; /* Light blue border */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-highlight: 0 0 15px rgba(30, 136, 229, 0.5); /* Blue glow */
  --border-radius: 10px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.section-header:hover h2::after {
  width: 100px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary: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: 0.5s;
  z-index: -1;
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  /*display: inline-block;*/
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover:before {
  width: 100%;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* Header - IMPROVED FOR MOBILE AND DESKTOP */
header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 18px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.sticky {
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.98);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*.logo {*/
/*  font-size: 1.5rem;*/
/*  font-weight: 700;*/
/*  width: 140px;*/
/*  height: auto;*/
/*  transition: all 0.3s ease;*/
/*}*/

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  width: 100px;
  height: auto;
  transition: all 0.3s ease;
}

.logo img {
  height: 70%;
  width: auto;
  transition: all 0.3s ease;
}

header.sticky .logo img {
  height: 65%;
}

.logo span {
  color: var(--primary-color);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li a {
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.btn-primary {
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
}

nav ul li a.btn-primary:after {
  display: none;
}

/* Navigation toggle for mobile */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.1);
  transition: all 0.3s ease;
}

.nav-toggle-label:hover {
  background-color: rgba(30, 136, 229, 0.2);
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background-color: var(--background-alt);
  background-image: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.2) 0%, rgba(100, 181, 246, 0) 70%);
  top: -100px;
  left: -100px;
}

.hero:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.15) 0%, rgba(100, 181, 246, 0) 70%);
  bottom: -200px;
  right: -100px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.hero-content h1:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  left: 0;
  bottom: -10px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

.hero-image img {
  max-width: 90%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: all 0.5s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background-color: var(--background);
  position: relative;
}

.stats:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.stats .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.point {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background-color: var(--background-color);
  padding: 40px 25px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 5px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--background-alt), transparent);
  transition: var(--transition);
  z-index: -1;
}

.point:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.point:hover::before {
  height: 100%;
}

.point h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.point:hover h3 {
  transform: scale(1.1);
}

.point h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.point p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

.point-icon {
  width: 70px;
  height: 70px;
  background-color: var(--background-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  font-size: 30px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.point:hover .point-icon {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: rotateY(360deg);
  transition: transform 0.8s, background-color 0.3s, color 0.3s;
  box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
  color: white;
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.read-more:hover {
  gap: 10px;
}

 /*Countries Section */
/*.countries {*/
/*  padding: 80px 0;*/
/*  background-color: var(--background);*/
/*  position: relative;*/
/*}*/

/*.countries:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 1px;*/
/*  background: linear-gradient(90deg, transparent, var(--border-color), transparent);*/
/*}*/

/*.countries-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*  gap: 30px;*/
/*}*/

/*.country-card {*/
/*  background-color: var(--background);*/
/*  border-radius: var(--radius);*/
/*  overflow: hidden;*/
/*  box-shadow: var(--shadow);*/
/*  transition: var(--transition);*/
/*  animation: fadeInUp 0.8s ease-out;*/
/*  animation-fill-mode: both;*/
/*  position: relative;*/
/*}*/

/*.country-card:nth-child(1) {*/
/*  animation-delay: 0.1s;*/
/*}*/
/*.country-card:nth-child(2) {*/
/*  animation-delay: 0.2s;*/
/*}*/
/*.country-card:nth-child(3) {*/
/*  animation-delay: 0.3s;*/
/*}*/
/*.country-card:nth-child(4) {*/
/*  animation-delay: 0.4s;*/
/*}*/
/*.country-card:nth-child(5) {*/
/*  animation-delay: 0.5s;*/
/*}*/
/*.country-card:nth-child(6) {*/
/*  animation-delay: 0.6s;*/
/*}*/

/*.country-card:hover {*/
/*  transform: translateY(-10px);*/
/*  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.country-card:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.03));*/
/*  opacity: 0;*/
/*  transition: all 0.3s ease;*/
/*  z-index: 1;*/
/*  pointer-events: none;*/
/*}*/

/*.country-card:hover:before {*/
/*  opacity: 1;*/
/*}*/

/*.country-card img {*/
/*  width: 100%;*/
/*  height: 180px;*/
/*  object-fit: cover;*/
/*  transition: all 0.5s ease;*/
/*}*/

/*.country-card:hover img {*/
/*  transform: scale(1.05);*/
/*}*/

/*.country-card h3 {*/
/*  font-size: 1.3rem;*/
/*  padding: 20px 20px 10px;*/
/*  position: relative;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.country-card:hover h3 {*/
/*  color: var(--primary-color);*/
/*}*/

/*.country-card ul {*/
/*  padding: 0 20px 20px;*/
/*}*/

/*.country-card ul li {*/
/*  position: relative;*/
/*  padding-left: 20px;*/
/*  margin-bottom: 8px;*/
/*  color: var(--text-light);*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.country-card:hover ul li {*/
/*  transform: translateX(5px);*/
/*}*/

/*.country-card ul li::before {*/
/*  content: "✓";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  color: var(--secondary-color);*/
/*}*/

/*.country-card .btn-secondary {*/
/*  margin: 0 20px 20px;*/
/*  display: block;*/
/*}*/



/* Countries Section --- New*/

/* Countries Section */
.countries {
  padding: 80px 0;
  background-color: var(--background);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.country-card {
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.country-card:hover {
  transform: translateY(-10px);
}

.country-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.country-card h3 {
  font-size: 1.3rem;
  padding: 20px 20px 10px;
}

.country-card ul {
  padding: 0 20px 20px;
}

.country-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.country-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.country-card .btn-secondary {
  margin: 0 20px 20px;
  display: block;
}

/* Universities Section */
.universities {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
}

.universities:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.universities-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.university-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.university-card:nth-child(1) {
  animation-delay: 0.1s;
}
.university-card:nth-child(2) {
  animation-delay: 0.15s;
}
.university-card:nth-child(3) {
  animation-delay: 0.2s;
}
.university-card:nth-child(4) {
  animation-delay: 0.25s;
}
.university-card:nth-child(5) {
  animation-delay: 0.3s;
}
.university-card:nth-child(6) {
  animation-delay: 0.35s;
}

.university-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.university-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.university-card:hover img {
  transform: scale(1.1);
}

.university-card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.university-card:hover h3 {
  color: var(--primary-color);
}

.university-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Process Section */
.process {
  padding: 80px 0;
  background-color: var(--background);
  position: relative;
}

.process:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(30, 136, 229, 0.5);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.process-step:hover .step-content h3 {
  color: var(--primary-color);
}

.step-content p {
  color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  color: rgba(30, 136, 229, 0.1);
  font-family: serif;
  line-height: 1;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover:before {
  color: rgba(30, 136, 229, 0.2);
  transform: scale(1.2);
}

.testimonial-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--background);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.testimonial-content {
  flex: 1;
}

.rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.testimonial-content p {
  margin-bottom: 15px;
  font-style: italic;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.testimonial-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-content h4 {
  color: var(--primary-color);
}

.university {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--background);
  position: relative;
}

.about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  animation: fadeInLeft 1s ease-out;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(5px);
}

.feature i {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.feature span{
    text-align: left;
}



.feature:hover i {
  transform: scale(1.2);
}

.about-image {
  animation: fadeInRight 1s ease-out;
  position: relative;
  text-align: -webkit-center;
}

.about-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  top: 15px;
  left: 15px;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.about-image:hover:before {
  top: 10px;
  left: 10px;
  opacity: 0.7;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.about-image:hover img {
  transform: translateY(-5px) translateX(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
/*.faq {*/
/*  padding: 80px 0;*/
/*  background-color: var(--background-alt);*/
/*  position: relative;*/
/*}*/

/*.faq:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 1px;*/
/*  background: linear-gradient(90deg, transparent, var(--border-color), transparent);*/
/*}*/

/*.faq-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));*/
/*  gap: 20px;*/
/*}*/

/*.faq-item {*/
/*  background-color: var(--background);*/
/*  border-radius: var(--radius);*/
/*  overflow: hidden;*/
/*  box-shadow: var(--shadow);*/
/*  transition: all 0.3s ease;*/
/*  animation: fadeInUp 0.8s ease-out;*/
/*  animation-fill-mode: both;*/
/*  border-left: 3px solid transparent;*/
/*}*/

/*.faq-item:nth-child(1) {*/
/*  animation-delay: 0.1s;*/
/*}*/
/*.faq-item:nth-child(2) {*/
/*  animation-delay: 0.2s;*/
/*}*/
/*.faq-item:nth-child(3) {*/
/*  animation-delay: 0.3s;*/
/*}*/
/*.faq-item:nth-child(4) {*/
/*  animation-delay: 0.4s;*/
/*}*/
/*.faq-item:nth-child(5) {*/
/*  animation-delay: 0.5s;*/
/*}*/
/*.faq-item:nth-child(6) {*/
/*  animation-delay: 0.6s;*/
/*}*/

/*.faq-item:hover {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.faq-item.active {*/
/*  border-left: 3px solid var(--primary-color);*/
/*}*/

/*.faq-question {*/
/*  padding: 20px;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.faq-question:hover {*/
/*  background-color: rgba(30, 136, 229, 0.05);*/
/*}*/

/*.faq-question h3 {*/
/*  font-size: 1.1rem;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.faq-item.active .faq-question h3 {*/
/*  color: var(--primary-color);*/
/*}*/

/*.faq-toggle i {*/
/*  transition: var(--transition);*/
  /*color: var(--primary-color);*/
/*}*/

/*.faq-answer {*/
/*  padding: 0 20px;*/
/*  max-height: 0;*/
/*  overflow: hidden;*/
/*  transition: all 0.5s ease;*/
/*  opacity: 0;*/
/*}*/

/*.faq-item.active .faq-answer {*/
/*  padding: 0 20px 20px;*/
/*  max-height: 200px;*/
/*  opacity: 1;*/
/*}*/


/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.faq-grid {
  /*display: grid;*/
  /*grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));*/
  /*gap: 20px;*/
}

.faq-item {
        margin-bottom: 10px;
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
}

.faq-toggle i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--background);
  position: relative;
}

.contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  animation: fadeInLeft 1s ease-out;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
  background-color: white;
}

.contact-info {
  animation: fadeInRight 1s ease-out;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.info-item:hover i {
  transform: scale(1.2);
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: -100%;
  left: 0;
  transition: all 0.3s ease;
}

.social-link:hover:before {
  top: 0;
}

.social-link:hover {
  transform: translateY(-5px) rotate(360deg);
  background-color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

/* Footer */
.footer {
  background-color: #1a202c;
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-column p {
  color: #a0aec0;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}

.footer-column:hover h3::after {
  width: 60px;
}

.footer-links li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-links a {
  color: #a0aec0;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover:before {
  width: 100%;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  color: #a0aec0;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-contact li:hover {
  transform: translateX(5px);
}

.footer-contact li i {
  color: var(--primary-color);
}

.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;
  gap: 20px;
}

.footer-bottom p {
  color: #a0aec0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #a0aec0;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: none;
}


/* FaceBook Float Button */
.facebook-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 115px;
  right: 30px;
  /*background-color: #25d366;*/
  background-color: #1877F2;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  /*animation: facebookPulse 2s infinite;*/
}

.facebook-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: none;
}


/* Instagram Float Button */
.instagram-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 30px;
  /*background-color: #25d366;*/
  /*background-color: #1877F2;*/
  background: linear-gradient(45deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  /*animation: instagramPulse 2s infinite;*/
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: none;
}
.instagram-float i{
    font-size:45px;
}


/* Blog Section */
.blog-section {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
}

.blog-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.all-blog {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.one-blog {
  background: #f8f8f8;
  padding: 20px;
  margin: 10px;
  border-radius: 20px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  border-bottom: 3px solid transparent;
}

.one-blog:nth-child(1) {
  animation-delay: 0.1s;
}
.one-blog:nth-child(2) {
  animation-delay: 0.2s;
}
.one-blog:nth-child(3) {
  animation-delay: 0.3s;
}

.one-blog:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid var(--primary-color);
}

.image-of-blog {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-of-blog:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.one-blog:hover .image-of-blog:before {
  opacity: 1;
}

.image-of-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}

.image-of-blog img:hover {
  transform: scale(1.05);
}

.date-content-of-blog {
  margin-top: 15px;
}

.date-content-of-blog h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}

.news-title {
  transition: all 0.5s ease;
}

.news-title:hover {
  color: var(--primary-color);
}

/* Admission Section */
.admission {
  position: relative;
}

.admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.step {
  background-color: var(--background-color);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}
.step:nth-child(2) {
  animation-delay: 0.2s;
}
.step:nth-child(3) {
  animation-delay: 0.3s;
}
.step:nth-child(4) {
  animation-delay: 0.4s;
}
.step:nth-child(5) {
  animation-delay: 0.5s;
}
.step:nth-child(6) {
  animation-delay: 0.6s;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  z-index: -1;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step:hover::before {
  width: 100%;
  opacity: 0.05;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.1;
  transition: var(--transition);
}

.step:hover .step-number {
  transform: scale(1.2);
  opacity: 0.15;
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step:hover h3 {
  transform: translateX(5px);
}

.step h3::before {
  content: attr(data-number);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step:hover h3::before {
  transform: rotate(360deg);
  background-color: var(--primary-dark);
}

.step ul {
  padding-left: 0;
}

.step ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.step:hover ul li {
  transform: translateX(5px);
  transition-delay: calc(0.05s * var(--i));
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*Whatsapp Animation*/
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*Facebook Animation*/
@keyframes facebookPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(24, 119, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
  }
}

/*Instagram Animation*/
/*@keyframes instagramPulse {*/
/*  0% {*/
/*    box-shadow: 0 0 0 0 rgba(236, 115, 87, 0.5);*/
/*  }*/
/*  70% {*/
/*    box-shadow: 0 0 0 10px rgba(253, 175, 93, 0.3);*/
/*  }*/
  /*50% {*/
  /*  box-shadow: 0 0 0 15px rgba(214, 41, 118, 0.2);*/
  /*}*/
/*  100% {*/
    /*box-shadow: 0 0 0 0 rgba(236, 115, 87, 0);*/
/*    box-shadow: 0 0 0 0 rgba(236, 115, 87, 0);*/
/*  }*/
/*}*/

@keyframes instagramPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 115, 87, 0.5); /* Start with a soft glow */
  }
  70% {
    box-shadow: 0 0 0 15px rgba(236, 115, 87, 0.2); /* Maximum glow with reduced opacity */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 115, 87, 0); /* Fully invisible */
  }
}

/* Responsive Styles - IMPROVED FOR MOBILE */
@media (max-width: 992px) {
  header {
    padding: 15px 0;
  }

  header.sticky {
    padding: 12px 0;
  }

  .logo img {
    height: 70px;
  }

  header.sticky .logo img {
    height: 65px;
  }

  /* Mobile Navigation */
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1002; /* Ensure it's above the nav menu */
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    background-color: rgba(30, 136, 229, 0.1);
  }

  .nav-toggle-label span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s ease;
    border-radius: 3px;
  }

  .nav-toggle:checked + .nav-toggle-label {
    background-color: rgba(30, 136, 229, 0.2);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--primary-dark);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--primary-dark);
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 80px;
    border-left: 3px solid var(--primary-color);
  }

  .nav-toggle:checked ~ nav {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
  }

  nav ul li {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .nav-toggle:checked ~ nav ul li {
    opacity: 1;
    transform: translateX(0);
  }

  nav ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  nav ul li:nth-child(2) {
    transition-delay: 0.15s;
  }
  nav ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  nav ul li:nth-child(4) {
    transition-delay: 0.25s;
  }
  nav ul li:nth-child(5) {
    transition-delay: 0.3s;
  }
  nav ul li:nth-child(6) {
    transition-delay: 0.35s;
  }
  nav ul li:nth-child(7) {
    transition-delay: 0.4s;
  }
  nav ul li:nth-child(8) {
    transition-delay: 0.45s;
  }

  nav ul li a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul li a:after {
    display: none;
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  nav ul li a.btn-primary {
    display: inline-block;
    margin-top: 15px;
    width: auto;
    padding: 12px 24px;
    border: none;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content,
  .hero .container {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  /*.stats .container {*/
  /*  grid-template-columns: repeat(2, 1fr);*/
  /*  gap: 20px;*/
  /*}*/

  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image img {
    width: 55%;
  }
}

@media screen and (max-width: 768px) {
  .hero-image img {
    width: 60%;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .all-blog {
    justify-content: center;
  }

  .one-blog {
    max-width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 576px) {
  header {
    padding: 15px 0;
  }

  header.sticky {
    padding: 12px 0;
  }

  header .container {
    padding: 0 15px;
  }

  .logo {
    width: auto;
  }

  .logo img {
    height: 50px;
    /*max-width: 150px;*/
  }

  .nav-toggle-label {
    padding: 8px;
  }

  .nav-toggle-label span {
    width: 25px;
    height: 3px;
    margin: 3px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /*.stats .container {*/
  /*  grid-template-columns: 1fr;*/
  /*  place-items: center;*/
  /*}*/

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .hero-image img {
    width: 80%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
  .facebook-float {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 85px;
    right: 20px;
    font-size: 24px;
  }
  .instagram-float {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 150px;
    right: 20px;
    font-size: 24px;
  }
  .instagram-float i{
      font-size: 33px;
  }
}

@media screen and (max-width: 430px) {
  .logo img {
    height: 52px;
    max-width: 130px;
  }

  .nav-menu li a.btn-primary {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
  }

  .nav-toggle-label span {
    width: 22px;
  }

  .hero {
    padding: 130px 0 50px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 15px;
  }
  .hero-image img {
    width: 120%;
  }
}

/* Fix for buttons and interactive elements */
button,
a.btn-primary,
a.btn-secondary,
.nav-toggle-label,
.social-link,
.whatsapp-float {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Ensure form buttons are properly styled */
form button[type="submit"] {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  width: auto;
  min-width: 150px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

form button[type="submit"]: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: 0.5s;
  z-index: -1;
}

form button[type="submit"]:hover:before {
  left: 100%;
}

form button[type="submit"]:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

/* Improve touch targets for better mobile interaction */
.btn-primary,
.btn-secondary,
.nav-toggle-label,
.social-link {
  min-height: 44px; /* Minimum touch target size */
  display: flex;
  align-items: center;
  justify-content: center;
  /*justify-content:space-between;*/
}

.btn-primary,
.btn-secondary {
  min-width: 100px;
}

@media (max-width: 576px) {
  /*.btn-primary,*/
  /*.btn-secondary {*/
  /*  padding: 12px 20px;*/
  /*  width: 100%;*/
  /*}*/

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    margin-bottom: 10px;
  }
  .scroll-top {
  position: fixed;
  bottom: 21px;
    right: 100px;
      
  }
}

/* Active state for navigation */
nav ul li a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-toggle:checked ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 33px;
    right: 120px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(30, 136, 229, 0.2);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Add this to your JavaScript */
/* 
document.addEventListener('DOMContentLoaded', function() {
  // Preloader
  setTimeout(function() {
    document.querySelector('.preloader').classList.add('fade-out');
  }, 800);
  
  // Scroll to top button
  const scrollTopBtn = document.createElement('div');
  scrollTopBtn.classList.add('scroll-top');
  scrollTopBtn.innerHTML = '<i class="fas fa-arrow-up"></i>';
  document.body.appendChild(scrollTopBtn);
  
  window.addEventListener('scroll', function() {
    if (window.pageYOffset > 300) {
      scrollTopBtn.classList.add('active');
    } else {
      scrollTopBtn.classList.remove('active');
    }
  });
  
  scrollTopBtn.addEventListener('click', function() {
    window.scrollTo({
      top: 0,
      behavior: 'smooth'
    });
  });
  
  // Add overlay for mobile menu
  const overlay = document.createElement('div');
  overlay.classList.add('nav-overlay');
  document.body.appendChild(overlay);
  
  overlay.addEventListener('click', function() {
    document.getElementById('nav-toggle').checked = false;
  });
  
  // Animation on scroll
  const animateElements = document.querySelectorAll('.service-card, .country-card, .university-card, .testimonial-card, .step, .point, .one-blog');
  
  const observer = new IntersectionObserver((entries) => {
    entries.forEach(entry => {
      if (entry.isIntersecting) {
        entry.target.style.opacity = 1;
        entry.target.style.transform = 'translateY(0)';
      }
    });
  }, { threshold: 0.1 });
  
  animateElements.forEach(element => {
    element.style.opacity = 0;
    element.style.transform = 'translateY(20px)';
    element.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
    observer.observe(element);
  });
});
*/
}




/*New Css FOr COuntries learn more button*/
/*@media (max-width: 600px) {*/
/*  .countries-grid {*/
    grid-template-columns: 1fr; /* Single column layout for mobile */
/*  }*/
/*  .country-card {*/
/*    padding: 10px;*/
/*  }*/
/*  .country-card ul {*/
/*    padding: 0 10px 10px;*/
/*  }*/
/*  .country-card h3 {*/
/*    font-size: 1.1rem;*/
/*  }*/
/*  .country-card {*/
/*  overflow: hidden;*/
/*}*/
/*}*/


/*Improved Css for FAQs*/

.faq-question{
    justify-content:space-between;
}



/*Menu button In big size Display None*/
.nav-toggle-label{
    display:none;
}

/*Menu button In small size Display */
@media (max-width: 992px) {
    .nav-toggle-label{
        display: flex;
}
}



    /* Popup overlay */
    .popup-overlay {
      position: fixed;
      top: 40px;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease;
      z-index: 1000;
    }

    /* When popup is active */
    .popup-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Popup box */
    .popup-form {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      position: relative;
      transform: scale(0.8);
      opacity: 0;
      transition: all 0.5s ease;
    }

    /* Animate form when overlay becomes active */
    .popup-overlay.active .popup-form {
      transform: scale(1);
      opacity: 1;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 18px;
      cursor: pointer;
      color: #999;
    }

    .popup-form h2 {
      margin-bottom: 15px;
    }

    .popup-form input,
    .popup-form select {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .popup-form button {
      background-color: #007bff;
      color: white;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-form button:hover {
      background-color: #0056b3;
    }
    nav ul li a.btn-primary.active {
  color: white !important;
}

/* Dropdown container */
/*.dropdown-parent {*/
/*  position: relative;*/
/*}*/

/*.dropdown {*/
/*  position: absolute;*/
/*  top: 100%;*/
/*  left: 0;*/
/*  background: #fff;*/
/*  border-radius: 6px;*/
/*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
/*  display: none;*/
/*  flex-direction: column;*/
/*  min-width: 180px;*/
/*  z-index: 1000;*/
/*}*/

/*.dropdown a {*/
/*  padding: 12px 16px;*/
/*  display: block;*/
/*  text-decoration: none;*/
/*  color: #333;*/
/*  transition: background 0.3s ease;*/
/*  font-size: 14px;*/
/*  white-space: nowrap;*/
/*}*/

/*.dropdown a:hover {*/
/*  background-color: #f3f3f3;*/
/*}*/

/* Show dropdown on hover */
/*.dropdown-parent:hover .dropdown {*/
/*  display: flex;*/
/*}*/



/* Hide dropdown by default */
.dropdown {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  min-width: 180px;
  z-index: 999;
}

/* Dropdown link styles */
.dropdown a {
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown a:hover {
  background-color: #f5f5f5;
}

/* Desktop: show on hover */
@media (min-width: 993px) {
  .dropdown-parent {
    position: relative;
  }

  .dropdown-parent:hover .dropdown {
    display: flex;
  }
}

/* Mobile: show on click */
@media (max-width: 992px) {
  .dropdown-parent {
    position: relative;
  }

  .dropdown-parent.active .dropdown {
    display: flex;
    position: relative;
    box-shadow: none;
  }

  .dropdown {
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown a {
    padding: 10px 0;
  }
}
.second-about{
  margin-top:50px;
}
.bj-digital-link:hover{
    color: white;
}
.ihsm-info{
  margin-top:0px;
}