/* Base Styles & Variables */
:root {
  --primary-color: #3a86ff;
  --primary-dark: #2667cc;
  --secondary-color: #8ecae6;
  --accent-color: #219ebc;
  --text-color: #333333;
  --text-light: #666666;
  --text-xlight: #999999;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #023047;
  --border-color: #e1e4e8;
  --border-radius: 12px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
/*   min-height: 100vh; */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
    font-family: 'Poppins', sans-serif !important;
} 

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600;
}

p, label, input, button {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5em !important;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--primary-color) ;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(58, 134, 255, 0.2);
}

.btn-primary {
  background-color: var(--primary-color);
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background-color: rgba(58, 134, 255, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  
  background-color: #bad6ea;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--bg-dark);
}

.logo span {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #333333 !important;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  text-decoration:none !important;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-btn span {
  height: 2px;
  width: 100%;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
 /*  padding: 130px 0 80px; */
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Slider Styles */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
 /*  height: 500px; */
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 50px;
}

.slide:nth-child(1) {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(2, 48, 71, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500&q=80');
}

.slide:nth-child(2) {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(2, 48, 71, 0.8)), url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1500&q=80');
}

.slide:nth-child(3) {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(2, 48, 71, 0.8)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?auto=format&fit=crop&w=1500&q=80');
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: white;
}

.slide-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out 0.2s;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out 0.4s;
}

.slide-content .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out 0.6s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
  transform: translateY(0);
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.slider-navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.nav-dot.active {
  background-color: white;
  transform: scale(1.3);
}

/* Login Form */
.login-container {
  position: relative;
}

.login-card {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h3 {
	color:#000 !important;
  font-size: 24px;
  margin-bottom: 10px;
}

.login-header p {
  color: var(--text-light);
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember-me input {
  accent-color: var(--primary-color);
}

.forgot-password {
  color: var(--text-light);
  font-size: 14px;
}

.forgot-password:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.login-form button {
  margin-bottom: 20px;
}

.login-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
}

.login-footer a {
  color: var(--primary-color);
  font-weight: 500;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* Handouts Section */
.handouts-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.handouts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.handout-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color) !important;
  position: relative;
  overflow: hidden;
}

.handout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.handout-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.handout-card:hover::before {
  transform: scaleX(1);
}

.handout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: var(--transition);
}

.handout-card:hover .handout-icon {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.handout-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.handout-card p {
  color: var(--text-light) !important;
  font-size: 14px !important;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.faq-question {
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question h4 {
  font-size: 18px;
  margin: 0;
  padding-right: 20px;
  transition: var(--transition);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon span {
  position: absolute;
  background-color: var(--text-color);
  transition: var(--transition);
}

.faq-icon span:first-child {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon span:last-child {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon span:last-child {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-question h4 {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  padding: 0 20px 0 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: all 1s cubic-bezier(1, 0, 1, 0);
  padding-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 80px 0 20px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info .icon {
  flex-shrink: 0;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .login-card {
    max-width: 100%;
  }
  
  .slider-container {
    height: 400px;
    margin-bottom: 30px;
  }
  
  .slide-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
 
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .slider-container {
    height: 350px;
  }
  
  .slide {
    padding: 30px;
  }
  
  .slide-content h2 {
    font-size: 30px;
  }
  
  .handouts-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .section-header h2 {
    font-size: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .slider-container {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 24px;
  }
  
  .slide-content p {
    font-size: 16px;
  }
  
  .login-card {
    padding: 30px 20px;
  }
  
  .handouts-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }
}


/*Particles*/




.logostyle{
	width:500px;	
}

ul {
  padding-left: 0rem !important;

}

ul li a{
  text-decoration:none !important;
}


a{
  text-decoration:none !important;
}

.faicon{
	font-size: 28px !important;
	}
	
	/* Stats Section Styles */
.stats {
  padding: 5rem 0;
 background-color: #f8f9fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #f2f2f7 !important;
  color: #0a84ff !important;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.stat-title {
  color: var(--gray);
  font-size: 1.1rem;
}


 /* Dropdown Styling */
.dropdown {
    position: relative;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: #333333 !important;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  text-decoration: none !important;
  display: inline-block;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

/* DROPDOWN MENU STYLES */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 150px;
  display: none;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
}

