@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-red: #e31837;
  --primary-navy: #1a237e;
  --primary-light: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #e31837 0%, #1a237e 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #1a237e 0%,
    #e31837 50%,
    #1a237e 100%
  );
}

.study-with-annus {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
  padding: 10px 0;
  background: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.brand-logo {
  width: 45px;
  height: 45px;
  /* background: var(--gradient-primary); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.brand-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-navy);
}

.nav-link {
  font-weight: 500;
  color: var(--primary-navy) !important;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-red) !important;
}

.navbar-toggler {
  border: 2px solid var(--primary-navy);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.hero-content {
  color: white;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(90deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-buttons .btn-primary {
  background: var(--primary-red);
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  background: #c41530;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(227, 24, 55, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 2px solid white;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
  background: white;
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: white;
  border-radius: 3px;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0.5;
  }
}

/* ===== SECTION COMMON STYLES ===== */
.section-subtitle {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.section-desc {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--primary-light);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gradient-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 35, 126, 0.3);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.placeholder-icon {
  font-size: 5rem;
  margin-bottom: 15px;
}

.placeholder-text {
  font-size: 1.2rem;
  font-weight: 600;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-red);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(227, 24, 55, 0.4);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.highlight-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.highlight-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.highlight-desc {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: white;
}

.visa-success-badge {
  margin: 30px 0;
}

.success-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  box-shadow: 0 15px 50px rgba(227, 24, 55, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 15px 50px rgba(227, 24, 55, 0.4);
  }
  50% {
    box-shadow: 0 20px 70px rgba(227, 24, 55, 0.6);
  }
}

.success-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.success-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card {
  background: var(--primary-light);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  background: white;
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  display: block;
}

.stat-card .stat-label {
  font-size: 1rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.trust-badges {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.badges-title {
  text-align: center;
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 25px;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

.badge-card:hover {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.badge-icon {
  font-size: 1.5rem;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
  background: white;
}

.destination-card {
  background: var(--primary-light);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.destination-card:hover {
  background: var(--gradient-primary);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(26, 35, 126, 0.3);
}

.destination-card:hover .destination-name,
.destination-card:hover .destination-unis {
  color: white;
}

.destination-flag {
  /* font-size: 3.5rem; */
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.destination-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.destination-unis {
  font-size: 0.85rem;
  color: #666;
  transition: color 0.3s ease;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%);
  color: white;
}

.contact-section .section-subtitle {
  background: linear-gradient(90deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section .section-title {
  color: white;
}

.contact-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-line {
  margin-bottom: 5px;
  opacity: 0.9;
}

.cta-box {
  background: var(--primary-red);
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(227, 24, 55, 0.4);
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.cta-text {
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-box .btn-primary {
  background: white;
  color: var(--primary-red);
  border: none;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
}

.cta-box .btn-primary:hover {
  background: var(--primary-navy);
  color: white;
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer-section {
  background: #0a0f2e;
  color: white;
  padding: 30px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.footer-text {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-tagline {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-copyright {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== ANIMATIONS ===== */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
  animation: slideRight 0.8s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.opacity-0 {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 !important;
  }

  .about-badge {
    right: 10px;
    bottom: -10px;
    padding: 15px 20px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-item .stat-number {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .cta-box {
    padding: 30px 20px;
    text-align: center;
  }

  .destination-flag {
    font-size: 2.5rem;
  }

  .destination-name {
    font-size: 1rem;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: inherit;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(90deg, rgba(26, 35, 126, 0.92) 0%, rgba(26, 35, 126, 0.85) 50%, rgba(26, 35, 126, 0.4) 100%); */
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 92%) 0%,
    rgb(0 0 0 / 85%) 50%,
    rgba(26, 35, 126, 0.4) 100%
  );
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.hero-content {
  color: white;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-gradient {
  /* background: linear-gradient(90deg, #FFD700, #FFA500); */
  background: linear-gradient(90deg, #d22540, #e31837);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  /* color: #FFD700; */
  color: #e31837;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-buttons .btn-primary {
  background: var(--primary-red);
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  background: #c41530;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(227, 24, 55, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 2px solid white;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
  background: white;
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: white;
  border-radius: 3px;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0.5;
  }
}

@media screen and (max-width: 992.99px) {
  .hero-section {
    background-position: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}
.contact-line a {
  text-decoration: none;
}

@media screen and (max-width: 992.99px) {
  .logo {
    margin-left: 35px;
  }
  .footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0;
    text-align: center !important;
}
}
