/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --gray: #95a5a6;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

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

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.container_lakshyaup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: auto;
  border-radius: 5px;
}

.logo h1 {
  margin: 0;
  font-size: 1.6rem;
}

.logo p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.logo .excel {
    color: var(--primary-color);
}

.logo .ed {
    color: var(--secondary-color);
}

.logo p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: 5px;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar ul li a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar ul li a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: var(--transition);
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.mobile-menu ul li a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.navbar ul li.dropdown {
    position: relative;
}

.navbar ul li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 10px 0;
  display: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  min-width: 220px;
  z-index: 999;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.navbar ul li.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar ul li .dropdown-menu li {
  display: block;
  padding: 10px 25px;
  transition: background 0.2s ease;
}

.navbar ul li .dropdown-menu li:hover {
  background-color: #f4f4f4;
}

.navbar ul li .dropdown-menu li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  display: block;
  width: 100%;
}
.mobile-menu .mobile-submenu {
  display: none;
  padding: 10px 15px;
  margin-top: 5px;
  flex-direction: column;
  gap: 8px;
  background-color: #f9f9f9;
  border-left: 2px solid var(--primary-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu .mobile-submenu li a {
  padding: 6px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 3px;
  transition: background 0.2s;
}

.mobile-menu .mobile-submenu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu .mobile-dropdown.active .mobile-submenu {
  display: flex;
}

.carousel-wrapper {
  max-width: 95%;
  margin: 20px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
  max-height:1000px;
  
  /* Professional Gradient Background */
  background: linear-gradient(135deg, #2c3e50 0%, #1a2a3a 100%);
  
  /* Optional metallic border for premium feel */
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Subtle texture */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  
}

.carousel-wrapper:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero {
  margin-top: 20px;
  position: relative;
}

.carousel {
  position: relative;
  width: 100%;
  /* height: 40vh; */
  /* max-height: 300px; */
  overflow: hidden;
  padding-bottom: 98.25%; /* 16:9 aspect ratio */
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  max-height: 170vh; /* limit height to viewport */
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin: 0; /* remove top margin */
/* Sharp, high-contrast border */
  border: 10px solid #2a2f3a; /* Dark navy-gray */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 2px; /* Slightly sharp corners for a pro look */
}
.carousel-control {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-control:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicators .indicator.active {
  background-color: var(--white);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    max-height: 400px;
    margin-bottom: 20px;
  }

  .carousel {
    height: auto;
    max-height: 320px;
  }

  .carousel-item img {
    height: auto;
    max-height: 330px;
    object-fit: contain; /* ✅ Prevent image from being cut */
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .carousel-indicators {

     bottom: 100px;
  }
}

/* News Ticker */
.news-ticker {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.ticker-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ticker-label {
    background-color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
}

.ticker-content ul {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-content li {
    display: flex;
    align-items: center;
    margin-right: 40px;
    white-space: nowrap;
}

.ticker-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: 10px;
}

/* Features Section */
.features {
    background-color: var(--white);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

/* Courses Section */
.courses {
    background-color: #f9f9f9;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-img {
    height: 200px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.course-content ul {
    margin-bottom: 20px;
}

.course-content ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

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

/* Results Section */
.results {
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: var(--transition);
}

.stat-card:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-card:hover .stat-number {
    color: var(--white);
}

.stat-card:hover .stat-label {
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.toppers-slider {
    position: relative;
    margin-top: 70px;
    padding: 20px 0;
}

.toppers-slider h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.toppers-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.toppers-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.topper-card {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 300px;
}

.topper-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.topper-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--light-color);
}

.topper-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.topper-card p {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: var(--text-light);
    position: relative;
    padding: 0 20px;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
}

.quote::before {
    top: -15px;
    left: 0;
}

.quote::after {
    bottom: -25px;
    right: 0;
}

.topper-prev,
.topper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.topper-prev:hover,
.topper-next:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.topper-prev {
    left: -25px;
}

.topper-next {
    right: -25px;
}

/* Faculty Section */
.faculty {
    background-color: #f9f9f9;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faculty-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.faculty-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.faculty-img img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    transition: var(--transition);
}

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

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.faculty-card:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.faculty-info {
    padding: 20px;
    text-align: center;
}

.faculty-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.subject {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
}

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

.testimonial {
    display: none;
    text-align: center;
    padding: 0 20px;
     transition: opacity 0.4s ease;
}

.testimonial.active {
    display: block;
    animation: fadeIn 1s ease;
}

.testimonial .quote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.author .info h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: left;
}

.author .info p {
    color: var(--text-light);
    text-align: left;
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    padding-right: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.info-content p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col.about .logo {
    margin-bottom: 20px;
}

.footer-col.about .logo h1 {
    color: var(--white);
}

.footer-col.about .logo .ed {
    color: var(--secondary-color);
}

.footer-col.about .logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col.about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

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

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

.footer-col.links ul li a,
.footer-col.courses ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

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

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter .form-group {
    position: relative;
}

.newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter button {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #2980b9;
}

.payment-methods {
    margin-top: 30px;
}

.payment-methods p {
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.copyright,
.developer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.developer i {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar ul {
        gap: 15px;
    }
    
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* .hero{
         max-height: 400px;
         margin-bottom:20px;
    }
    .carousel {
       max-height: 300px;
    }
    
    .carousel-caption {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
       .carousel-item img {
        max-height: 330px;
          object-fit: cover;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
     */
    .section-title {
        font-size: 2rem;
    }
    
    .ticker-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticker-label {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-large {
        padding: 12px 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .topper-card {
        min-width: 250px;
    }
}
/* Awards Section Styles */
.lc-awards-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.lc-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lc-award-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.lc-award-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.lc-award-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lc-award-card:hover .lc-award-img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0.8);
}

.lc-award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lc-award-card:hover .lc-award-overlay {
    opacity: 1;
    transform: translateY(0);
}

.lc-award-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.lc-award-overlay p {
    font-size: 0.9rem;
    color: #ddd;
}

.lc-award-content {
    padding: 20px;
}

.lc-award-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.lc-award-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lc-awards-grid {
        grid-template-columns: 1fr;
    }
    
    .lc-award-img-container {
        height: 200px;
    }
}
/* Center the button container */
.new_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 20px 0;
}

/* Base button styles */
.know_buttoon {
    position: relative;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(500px) rotateX(0deg);
}

/* Hover effects */
.know_buttoon:hover {
    transform: perspective(500px) rotateX(15deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
    color: #fff;
}

/* Animated border effect */
.know_buttoon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.know_buttoon:hover::before {
    opacity: 1;
}

/* Ripple effect */
.know_buttoon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.know_buttoon:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Glow effect on hover */
.know_buttoon:hover {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px -5px #00d2ff;
    }
    to {
        box-shadow: 0 0 20px 5px #00d2ff;
    }
}

/* Click effect */
.know_buttoon:active {
    transform: perspective(500px) rotateX(15deg) scale(0.95);
}

/* Text animation */
.know_buttoon span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.know_buttoon:hover span {
    transform: translateX(5px);
}

// new about page 

        .lakshya-about-wrapper {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
            overflow-x: hidden;
        }

        .lakshya-hero-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lakshya-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: lakshya-rotate 20s linear infinite;
        }

        @keyframes lakshya-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .lakshya-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .lakshya-main-title {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0;
            animation: lakshya-slideInUp 1s ease-out 0.5s forwards;
        }

        .lakshya-subtitle {
            font-size: 1.3em;
            margin-bottom: 30px;
            opacity: 0;
            animation: lakshya-slideInUp 1s ease-out 0.8s forwards;
        }

        @keyframes lakshya-slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .lakshya-section {
            padding: 80px 0;
            opacity: 0;
            animation: lakshya-fadeInUp 1s ease-out forwards;
        }

        .lakshya-section:nth-child(even) {
            background: rgba(255, 255, 255, 0.7);
        }

        @keyframes lakshya-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lakshya-section-title {
            font-size: 2.5em;
            color: #1e3c72;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            font-weight: 700;
        }

        .lakshya-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
            border-radius: 2px;
        }

        .lakshya-about-content {
            font-size: 1.1em;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 40px;
            color: #555;
        }

        .lakshya-highlight {
            color: #1e3c72;
            font-weight: 600;
        }

        .lakshya-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .lakshya-feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(30, 60, 114, 0.1);
            position: relative;
            overflow: hidden;
        }

        .lakshya-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
        }

        .lakshya-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .lakshya-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            margin-bottom: 20px;
            animation: lakshya-pulse 2s infinite;
        }

        @keyframes lakshya-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .lakshya-feature-title {
            font-size: 1.4em;
            color: #1e3c72;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .lakshya-feature-description {
            color: #666;
            line-height: 1.7;
        }

        .lakshya-stats-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .lakshya-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .lakshya-stat-item {
            padding: 30px;
            border-radius: 10px;
            background: rgb(255, 255, 255);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .lakshya-stat-item:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.74);
        }

        .lakshya-stat-number {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .lakshya-stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .lakshya-cta-section {
            background: white;
            padding: 80px 0;
            text-align: center;
        }

        .lakshya-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 20px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
        }

        .lakshya-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 60, 114, 0.4);
        }

        /* .lakshya-floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .lakshya-floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(30, 60, 114, 0.1);
            border-radius: 50%;
            animation: lakshya-float 15s infinite linear;
        } */

        @keyframes lakshya-float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .lakshya-courses-highlight {
            background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
            padding: 60px 0;
            margin: 40px 0;
            border-radius: 20px;
            border: 2px solid rgba(30, 60, 114, 0.1);
        }

        .lakshya-courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .lakshya-course-tag {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 15px 25px;
            border-radius: 25px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .lakshya-course-tag:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
        }

        @media (max-width: 768px) {
            .lakshya-main-title {
                font-size: 2.5em;
            }
            
            .lakshya-features-grid {
                grid-template-columns: 1fr;
            }
            
            .lakshya-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .lakshya-main-title {
                font-size: 2em;
            }
            
            .lakshya-stats-grid {
                grid-template-columns: 1fr;
            }
        }

        // new courses page 
          .lakshya-courses-wrapper {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
            overflow-x: hidden;
        }

        .lakshya-courses-hero {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lakshya-courses-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: lakshya-courses-rotate 25s linear infinite;
        }

        @keyframes lakshya-courses-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .lakshya-courses-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .lakshya-courses-hero-title {
            font-size: 4em;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0;
            animation: lakshya-courses-slideIn 1s ease-out 0.5s forwards;
        }

        .lakshya-courses-hero-subtitle {
            font-size: 1.4em;
            margin-bottom: 30px;
            opacity: 0;
            animation: lakshya-courses-slideIn 1s ease-out 0.8s forwards;
        }

        @keyframes lakshya-courses-slideIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .lakshya-courses-section {
            padding: 80px 0;
            opacity: 0;
            animation: lakshya-courses-fadeUp 1s ease-out forwards;
        }

        @keyframes lakshya-courses-fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lakshya-courses-section-title {
            font-size: 2.8em;
            color: #1e3c72;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            font-weight: 700;
        }

        .lakshya-courses-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
            border-radius: 2px;
        }

        .lakshya-courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .lakshya-course-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .lakshya-course-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            border-color: rgba(30, 60, 114, 0.3);
        }

        .lakshya-course-header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lakshya-course-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: lakshya-courses-headerRotate 20s linear infinite;
        }

        @keyframes lakshya-courses-headerRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .lakshya-course-title {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .lakshya-course-subtitle {
            font-size: 1.1em;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .lakshya-course-content {
            padding: 30px;
        }

        .lakshya-course-detail {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8fbff;
            border-radius: 10px;
            border-left: 4px solid #1e3c72;
        }

        .lakshya-course-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2em;
            color: white;
        }

        .lakshya-course-detail-content {
            flex: 1;
        }

        .lakshya-course-detail-label {
            font-weight: 600;
            color: #1e3c72;
            margin-bottom: 5px;
        }

        .lakshya-course-detail-value {
            color: #666;
            font-size: 0.95em;
        }

        .lakshya-features-section {
            background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
            padding: 80px 0;
            margin: 60px 0;
            border-radius: 30px;
            border: 2px solid rgba(30, 60, 114, 0.1);
        }

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

        .lakshya-feature-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .lakshya-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
        }

        .lakshya-feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .lakshya-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5em;
            color: white;
        }

        .lakshya-feature-title {
            font-size: 1.3em;
            color: #1e3c72;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .lakshya-feature-description {
            color: #666;
            font-size: 0.95em;
        }

        .lakshya-faculty-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 80px 0;
            margin-top: 60px;
        }

        .lakshya-faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .lakshya-faculty-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .lakshya-faculty-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .lakshya-faculty-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffffff, #f0f8ff);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: #1e3c72;
            font-weight: 700;
        }

        .lakshya-faculty-name {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .lakshya-faculty-subject {
            font-size: 1.1em;
            color: #a8c8ff;
            margin-bottom: 15px;
        }

        .lakshya-faculty-experience {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            font-weight: 600;
        }

        .lakshya-commitment-section {
            background: white;
            padding: 80px 0;
            text-align: center;
        }

        .lakshya-commitment-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
            border-radius: 20px;
            border: 2px solid rgba(30, 60, 114, 0.1);
        }

        .lakshya-commitment-title {
            font-size: 2.2em;
            color: #1e3c72;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .lakshya-commitment-text {
            font-size: 1.1em;
            color: #666;
            line-height: 1.8;
        }

        .lakshya-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
            margin-top: 30px;
        }

        .lakshya-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 60, 114, 0.4);
        }

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

        .lakshya-floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: lakshya-courses-float 20s infinite linear;
        }

        @keyframes lakshya-courses-float {
            0% {
                transform: translateY(100vh) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .lakshya-courses-hero-title {
                font-size: 2.5em;
            }
            
            .lakshya-courses-grid {
                grid-template-columns: 1fr;
            }
            
            .lakshya-faculty-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .lakshya-courses-hero-title {
                font-size: 2em;
            }
            
            .lakshya-course-card {
                margin: 0 10px;
            }
        }

         /* Footer Styles */
    .lakshya-footer {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        padding: 80px 0 0;
        position: relative;
        z-index: 2;
    }

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

    .lakshya-footer-col h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .lakshya-footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #4facfe;
        border-radius: 3px;
    }

    .lakshya-footer-logo h2 {
        font-size: 2rem;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .lakshya-logo-main {
        color: white;
    }

    .lakshya-logo-sub {
        color: #4facfe;
    }

    .lakshya-footer-logo p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lakshya-footer-about {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .lakshya-social-links {
        display: flex;
        gap: 15px;
    }

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

    .lakshya-social-links a:hover {
        background: #4facfe;
        transform: translateY(-3px);
    }

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

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

    .lakshya-footer-list li a {
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        display: inline-block;
    }

    .lakshya-footer-list li a:hover {
        color: #4facfe;
        transform: translateX(5px);
    }

    .lakshya-footer-contact-list {
        list-style: none;
    }

    .lakshya-footer-contact-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }

    .lakshya-footer-contact-list i {
        margin-right: 10px;
        color: #4facfe;
        margin-top: 3px;
    }

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

    .lakshya-copyright {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .lakshya-legal-links {
        display: flex;
        gap: 15px;
    }

    .lakshya-legal-links a {
        color: rgba(26, 52, 168, 0.7);
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .lakshya-legal-links a:hover {
        color: #4facfe;
    }

    @media (max-width: 768px) {
        .lakshya-footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .lakshya-footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
    }



    //new css 
      /* Achievements Section */
  .lakshya-achievements {
        background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
        padding: 80px 0;
        text-align: center;
    }

    .lakshya-courses-section-title::after {
        content: ' ✨'; /* Sparkle emoji added to title */
    }

 .lakshya-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


    .lakshya-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .lakshya-stat-card {
        background: white;
        padding: 40px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(30, 60, 114, 0.1);
    }

    .lakshya-stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(30, 60, 114, 0.3);
    }

    .lakshya-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #1e3c72, #2a5298);
    }

    .lakshya-stat-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .lakshya-stat-card:hover .lakshya-stat-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .lakshya-stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: #1e3c72;
        margin-bottom: 5px;
        line-height: 1;
        transition: all 0.4s ease;
    }

    .lakshya-stat-card:hover .lakshya-stat-number {
        color: #2a5298;
    }

    .lakshya-stat-label {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1e3c72;
        margin-bottom: 10px;
    }

    .lakshya-stat-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.5;
        padding: 0 15px;
    }

    /* Animation for counting numbers */
    @keyframes lakshya-countUp {
        from { 
            opacity: 0;
            transform: translateY(20px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }

    .counting {
        animation: lakshya-countUp 1s ease-out forwards;
    }

    @media (max-width: 768px) {
        .lakshya-stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .lakshya-stat-number {
            font-size: 2.8rem;
        }
        
        .lakshya-stat-icon {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .lakshya-stats-grid {
            grid-template-columns: 1fr;
        }
    }

  .login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  font-size: 14px;
}

.login-btn:hover {
  background: linear-gradient(135deg, #0056b3, #00a6e0);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.login-btn i {
  font-size: 16px;
  margin-right:10px;
}

 .btn-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 10vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .download-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            border-radius: 50px;
            font-family: 'Segoe UI', sans-serif;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .download-btn:active {
            transform: translateY(1px);
        }
        
        .download-btn::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;
        }
        
        .download-btn:hover::before {
            left: 100%;
        }
        
        .download-btn i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .download-btn.pulse {
            animation: pulse 2s infinite;
        }
   .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease-in-out;
  }

  .popup-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: left;
    animation: popIn 0.3s ease-in-out;
  }

  .popup-box h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
  }

  .popup-box p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .popup-box hr {
    border: none;
    height: 1px;
    background: #eee;
    margin: 15px 0;
  }

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

  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
  }

  .form-group .required {
    color: red;
    margin-left: 3px;
  }

  .form-group input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
  }

  .form-group input:focus {
    border-color: #4caf50;
  }

  .form-group small {
    color: #999;
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }

  .popup-box button[type="submit"] {
    background: #28a745;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .popup-box button:hover {
    background: #218838;
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #999;
  }

  .hidden {
    display: none;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes popIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

   /* Common Button Style */
.bottom-left-whatsapp,
.bottom-center-call {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.bottom-left-whatsapp img,
.bottom-center-call img {
  width: 28px;
  height: 28px;
  /* filter: invert(1); */
}

/* WhatsApp: bottom-left */
.bottom-left-whatsapp {
  bottom: 20px;
  left: 20px;
 background-color: #25D366; /* Official WhatsApp green */
}

.bottom-left-whatsapp:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

/* Phone: bottom-center */
.bottom-center-call {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color:rgb(13, 170, 50);
}

.bottom-center-call:hover {
  transform: translateX(-50%) scale(1.1);
  background-color: #1e7e34;
}
@media (min-width: 769px) {
  .bottom-center-call {
    display: none;
  }
}
   /* Modern Chat Button - Default (Desktop) */
        #chatBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(103, 132, 253, 0.3);
            z-index: 100000;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        #chatBtn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(103, 132, 253, 0.4);
        }

        #chatBtn:active {
            transform: translateY(1px);
        }

        /* Mobile Styles - Circular Button */
        @media only screen and (max-width: 600px) {
            #chatBtn {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                padding: 0;
                justify-content: center;
                 bottom: 22px; /* Changed from default 30px to 50px (or your preferred value) */
            }
            
            #chatBtn span {
                display: none;
            }
            
            #chatBtn svg {
                margin-right: 0;
            }
        }

        /* Professional Chat Popup */
        #chatPopup {
            display: none;
            position: fixed;
            bottom: 90px;
            right: 30px;
            width: 350px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            z-index: 1000;
            font-family: 'Segoe UI', Roboto, sans-serif;
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @media only screen and (max-width: 600px) {
            #chatPopup {
                width: 90%;
                right: 5%;
                bottom: 80px;
            }
        }

        #chatPopup.show {
            transform: scale(1);
            opacity: 1;
        }

        .chat-header {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-header h3 {
            margin: 0;
            font-weight: 600;
            font-size: 18px;
        }

        .chat-header .bot-icon {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6e8efb;
            font-weight: bold;
        }

        .chat-body {
            padding: 20px;
        }

        .chat-body p {
            margin: 0 0 15px 0;
            color: #555;
            line-height: 1.5;
        }

        #chatPopup input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            margin: 10px 0;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: border 0.3s;
        }

        #chatPopup input[type="email"]:focus {
            outline: none;
            border-color: #6e8efb;
            box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.1);
        }

        #chatPopup button[type="submit"] {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            border: none;
            padding: 12px 15px;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
        }

        #chatPopup button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(110, 142, 251, 0.3);
        }

        #chatPopup button[type="submit"]:active {
            transform: translateY(0);
        }

        .success-message {
            color: #4BB543;
            font-size: 14px;
            margin-top: 15px;
            display: none;
            text-align: center;
            padding: 10px;
            background: #f0fff0;
            border-radius: 8px;
            border: 1px solid #d4edda;
        }

        .notification {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            z-index: 100001;
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateX(150%);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            max-width: 300px;
        }

        @media only screen and (max-width: 600px) {
            .notification {
                right: 5%;
                max-width: 60%;
                bottom: 100px;
            }
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification .notification-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .notification p {
            margin: 0;
            color: #333;
            font-size: 14px;
        }

        .notification-close {
            margin-left: auto;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 16px;
        }
        .confirmation-message h3 {
  color: green;
}

.error-message h3 {
  color: red;
}