:root {
  --primary-color: #4f46e5;
  --primary-dark: #3730a3;
  --secondary-color: #06b6d4;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  backdrop-filter: blur(10px);
}

.header .img_logo {
  max-width: 160px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header .img_logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Topbar Styles with Wavy Design */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-height: 110px;
  position: relative;
  overflow: hidden;
}

.topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg,#000,#000, #1e3a8a 51%, #3b82f6 100%); */
  z-index: -2;
}

.topbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q150,40 300,20 T600,30 Q750,50 900,10 T1200,25 L1200,0 Z' fill='%23000000' opacity='0.1'/%3E%3C/svg%3E") center/cover;
  z-index: -1;
  animation: wave-animation 3s ease-in-out infinite;
}

@keyframes wave-animation {

  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }

  50% {
    transform: translateX(-20px) scaleY(1.1);
  }
}

.topbar-left {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%);
  padding: 15px 25px;
  border-radius: 0 50px 50px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.topbar-right {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
  padding: 15px 25px;
  border-radius: 50px 0 0 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
}

.wavy-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 200px;
  z-index: 0;
  overflow: hidden;
}

.wavy-divider::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 100px;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(30, 58, 138, 0.3) 50%,
      rgba(59, 130, 246, 0.2) 75%,
      transparent 100%);
  transform: translateX(-50%) rotate(15deg);
  border-radius: 50px;
  animation: wave-shimmer 4s ease-in-out infinite;
}

.wavy-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 20%,
      rgba(59, 130, 246, 0.8) 40%,
      rgba(30, 58, 138, 0.9) 60%,
      rgba(255, 255, 255, 0.3) 80%,
      transparent 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes wave-shimmer {

  0%,
  100% {
    transform: translateX(-50%) rotate(15deg) scaleY(1);
    opacity: 0.3;
  }

  50% {
    transform: translateX(-50%) rotate(-15deg) scaleY(1.2);
    opacity: 0.7;
  }
}

/* Modern Button Styles */
.btn-modern {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
}

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

.btn-modern.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  box-shadow: none;
}

.btn-modern.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Header Button Container */
.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Navbar Styles */
.navbar-modern {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-200);
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  position: relative;
  margin: 0 0px;
}

.nav-link {
  color: var(--gray-700) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px !important;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 8px;
  position: relative;
}

.nav-link i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: rotate(180deg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(79, 70, 229, 0.08);
}

/* Dropdown Styles */
/* Dropdown Styles */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 240px;
  display: none;
  z-index: 1002;
  border: 1px solid var(--gray-200);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  list-style: none;
  list-style-type: none;
}

.nav-item:hover>.dropdown {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown a {
  color: var(--gray-700) !important;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 8px;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.dropdown a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.1;
  transition: width 0.3s ease;
}

.dropdown a:hover::before {
  width: 100%;
}

.dropdown a:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white) !important;
  transform: translateX(6px);
}

/* Submenu Styles */
.menu-has-children {
  position: relative;
}

.menu-has-children:hover>ul {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu-has-children>ul {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 240px;
  display: none;
  z-index: 1003;
  border: 1px solid var(--gray-200);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

/* Login Dropdown */
.login-dropdown {
  right: 0;
  left: auto;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
  border: none;
  background: none;
  padding: 8px;
  border-radius: 8px;
  position: relative;
  z-index: 10001;
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler.active .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Modern Side Menu */
#sideMenu {
  position: fixed;
  top: 0;
  left: -320px;
  height: 100vh;
  width: 320px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  padding: 20px 0;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  backdrop-filter: blur(20px);
}

#sideMenu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.menu-logo {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

#close-menu {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#close-menu:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.menu-section {
  margin-bottom: 10px;
}

.menu-section-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 20px;
  margin-bottom: 8px;
}

#sideMenu a {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 14px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
  margin: 2px 0;
  position: relative;
  overflow: hidden;
}

#sideMenu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

#sideMenu a:hover::before {
  left: 100%;
}

#sideMenu a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 28px;
  border-left: 4px solid var(--accent-color);
}

#sideMenu a i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Modern Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9998;
}

.overlay.visible {
  visibility: visible;
  opacity: 1;
}

/* Desktop Navigation - Always visible on desktop */
@media (min-width: 992px) {
  .logo-menu {
    display: block !important;
  }

  .navbar-modern {
    display: block !important;
  }

  .navbar-nav {
    display: flex !important;
  }

  .navbar-toggler {
    display: none !important;
  }

  #sideMenu {
    display: none !important;
  }
}

/* Tablet and Mobile - Show mobile menu */
@media (max-width: 991px) {
  .logo-menu {
    display: none !important;
  }

  .navbar-modern {
    display: none !important;
  }

  .navbar-nav {
    display: none !important;
  }

  .navbar-toggler {
    display: block !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .topbar {
    max-height: 70px;
    padding: 8px 0;
  }

  .topbar-left,
  .topbar-right {
    padding: 10px 15px;
  }

  .btn-modern {
    font-size: 11px;
    padding: 5px 12px;
  }

  .header .img_logo {
    max-width: 120px;
  }
}

@media (max-width: 767px) {
  .topbar {
    max-height: 60px;
    padding: 6px 0;
  }

  .topbar-left,
  .topbar-right {
    padding: 8px 12px;
    border-radius: 0 25px 25px 0;
  }

  .topbar-right {
    border-radius: 25px 0 0 25px;
  }

  .header-buttons {
    gap: 8px;
  }

  .navbar-toggler {
    padding: 6px;
    right: 10px;
  }

  .navbar-toggler-icon {
    width: 20px;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 20px;
  }

  .navbar-toggler-icon::before {
    top: -6px;
  }

  .navbar-toggler-icon::after {
    top: 6px;
  }

  .btn-modern {
    font-size: 10px;
    padding: 5px 10px;
  }

  .header .img_logo {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .topbar {
    max-height: 50px;
    padding: 5px 0;
  }

  .topbar-left {
    padding: 6px 10px;
    border-radius: 0 15px 15px 0;
  }

  .topbar-right {
    padding: 6px 10px;
    border-radius: 15px 0 0 15px;
  }

  .navbar-toggler {
    padding: 4px;
    right: 10px;
  }

  .navbar-toggler-icon {
    width: 18px;
    background: black;
    color: black;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 18px;
    background: black;
    color: black;
  }

  .navbar-toggler-icon::before {
    top: -5px;
  }

  .navbar-toggler-icon::after {
    top: 5px;
  }

  .btn-modern {
    font-size: 9px;
    padding: 4px 8px;
  }

  .header .img_logo {
    max-width: 90px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item {
  animation: fadeInUp 0.6s ease forwards;
}

.nav-item:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-item:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-item:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-item:nth-child(4) {
  animation-delay: 0.4s;
}

.nav-item:nth-child(5) {
  animation-delay: 0.5s;
}

.nav-item:nth-child(6) {
  animation-delay: 0.6s;
}

.nav-item:nth-child(7) {
  animation-delay: 0.7s;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}


/* banner css */
/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(79, 70, 229, 0.9) 0%, rgba(6, 182, 212, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--danger-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-actions {
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Action Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.action-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.action-card:hover::before {
  left: 100%;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.card-header {
  display: flex;
  align-items: center;

}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--danger-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--white);
}

.card-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}



.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-color) !important;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.card-btn:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Featured Internships Section */
.featured-internships {
  background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-100) 100%);
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Internship Cards */
.modern-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-card:hover::before {
  opacity: 1;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-card .card-header {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.company-logo {
  width: 35%;

  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modern-card:hover .logo-img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.badge-premium {
  background: linear-gradient(135deg, var(--accent-color), var(--danger-color));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 0.8rem;
  flex-grow: 1;
}

.company-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.company-location {
  color: var(--gray-500);
  font-size: 0.7rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.internship-title {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.internship-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.detail-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.stipend {
  color: var(--success-color);
  font-size: 1rem;
}

.deadline {
  color: var(--danger-color);
}

.card-footer {
  padding: 1.5rem;
  background: var(--gray-50);
  margin-top: auto;
}

.btn-block {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

/* Modern Button Styles - Matching header.php */
.btn-modern {
  background: black;
  border: none;
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  background: white;
  color: black !important;
}

.btn-modern span:hover {
  color: black !important;
}

.btn-modern.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  box-shadow: none;
}

.btn-modern.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white) !important;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Empty State */
.empty-state {
  padding: 3rem;
  border-radius: 20px;
  background: var(--white);
  border: 2px dashed var(--gray-300);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-cards {
    margin-top: 3rem;
  }

  .action-card {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .action-card {
    padding: 1rem;
  }

  .card-header h3 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn-modern {
    padding: 10px 20px;
    font-size: 13px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* index css */

.module-categories {
  padding: 100px 0;

  position: relative;
  overflow: hidden;
}

.module-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}



.category-card {
  background: black;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.category-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  border-radius: 50%;
  pointer-events: none;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover::after {
  width: 200px;
  height: 200px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.category-card a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 60px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.category-card:hover a {
  color: black;
  transform: scale(1.05);
}

.category-card i {
  font-size: 1.4rem;
  margin-right: 0.8rem;
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.category-card:hover i {
  transform: scale(1.2) rotate(5deg);
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: #ffffff;
}

.empty-state i {
  color: #4ecdc4;
  margin-bottom: 1rem;
}

.empty-state h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.empty-state p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.btn-categories {
  background: black;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-categories:hover::before {
  opacity: 1;
}

.btn-categories:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 8s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 1s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 3s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 5s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 7s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .section-titles {
    font-size: 2.5rem;
  }

  .category-card {
    margin-bottom: 1rem;
    padding: 1.2rem;
  }

  .category-card a {
    font-size: 1rem;
    min-height: 50px;
  }

  .btn-categories {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section-titles {
    font-size: 2rem;
  }

  .category-card a {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .category-card i {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}

/* Footer Styles */
.footer-modern {
  background: black;
  color: #ffffff;
  margin-top: auto;
}


/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-column:nth-child(5) {
  animation-delay: 0.5s;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links a:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.footer-links a:hover:before {
  width: 10px;
}

/* Contact & App Section */
.footer-contact-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.contact-info {
  display: flex;
  gap: 60px;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-item p {
  color: #b8c5d1;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-item i {
  color: #667eea;
  margin-right: 10px;
  width: 16px;
}

.app-downloads h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 5px;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.app-btn i {
  font-size: 1.5rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b8c5d1;
  font-size: 0.9rem;
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
  }

  .contact-info {
    flex-direction: column;
    gap: 30px;
  }

  .app-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .app-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .app-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .app-btn {
    justify-content: center;
  }
}

/* Marquee container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f8f9fa;
  /* You can change the background color */
  padding: 10px 0;
}

/* Marquee content */
.marquee {
  display: flex;
  animation: marquee 15s linear infinite;
}

/* Keyframes for the scrolling effect */
@keyframes marquee {
  0% {
    transform: translateX(100%);
    /* Start from the right */
  }

  100% {
    transform: translateX(-100%);
    /* End at the left */
  }
}

/* Optional: Styling the text */
.marquee p {
  margin: 0;
  padding-right: 50px;
  /* To provide some space at the end of the text */
  font-size: 18px;
  /* Customize the font size */
  color: #007bff;
  /* Customize the text color */
}

@media only screen and (max-width: 600px) {
  .internship-font {
    font-size: 15px;
  }

  .feedback-line {
    font-size: 18px;
  }
}

/* linkdin_page start */
@media only screen and (max-width: 600px) {
  .linkding_text {
    font-size: 25px !important;
  }
}


/* linkdin page end */