/**
* Template Name: Lumia
* Template URL: https://bootstrapmade.com/lumia-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #384046; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3498db; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3498db; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3498db; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7fbfe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1d222d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #31394c;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}



/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  flex-wrap: wrap;

  position: fixed;   /* Make header static/fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;      /* Keeps header above other elements */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow for effect */
}

.logo img {
  height: 70px;
}

.contact-number {
  font-size: 25px;
  margin: 0;
  font-weight: bold;
  color: #333;
}

.contact-number:hover {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Responsive for screens smaller than 600px */
@media (max-width: 600px) {
  .header {
    /* flex-direction: column; */
    align-items: flex-start;
    height: auto; /* Changed from fixed 30px so content fits */
    padding: 10px;
  }

  .contact-number {
    font-size: 17px;
    margin-top: 8px;
    margin-left: 31px;
    font-weight: bold;
  }

  .logo img {
    height: 47px;
    /* margin-left: -20px; */
  }
}

/* To prevent content hiding under header */
/* body {
  padding-top: 60px; 
} */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }


  body {
  padding-top: 40px; /* Adjust to header height */
}

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 1;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 87vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
 
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  margin-top: 15px;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}




.btn-container {
  display: flex; /* Use flexbox for layout */
  justify-content: start; /* Align buttons to the left */
  align-items: center; /* Vertically align buttons */
  gap: 10px; /* Add space between buttons */
}

.hero .btn-get-started {
  display: inline-block;
  padding: 14px 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #ff4e50, #f9d423); /* Red-Orange Gradient */
  border: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(249, 77, 77, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: 25px;
  text-align: center;
}

/* Shine effect */
.hero .btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.hero .btn-get-started:hover::before {
  left: 100%;
}

/* Hover interaction */
.hero .btn-get-started:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #e53935, #eecb21); /* Slightly darker on hover */
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero .btn-get-started {
    font-size: 16px;
    padding: 12px 30px;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto 0 auto;
  }
}




/*--------------------------------------------------------------
MY CSS
--------------------------------------------------------------*/
.hero {
  padding: 50px 0;
  background-image: url('/assets/img/banner2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
 
  color: #fff;
}

.text-content {
  text-align: left;
}

.form-container {
  background: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 400px;
  margin-left: 150px;
}

.form-container h3 {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  

  .text-content,
  .form-content {
    text-align: center;
  }

  .form-container {
    margin-top: 20px;
    margin-left: 14px;
    width: 300px;
  }
}

/* Form Heading */
.form-container h3 {
  font-size: 24px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase; /* Optional for styling */
  letter-spacing: 1px;       /* Optional for spacing */
}

/* Form Labels */
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  display: inline-block;
}

/* Form Inputs */
.form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
  color: #333;
  background: #f9f9f9;
  transition: border-color 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #007bff;
  background: #fff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button */
.btn-primary {
  background-color: #e53935;
  border-color: var(--accent-color);;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color:rgb(137, 13, 13);
  box-shadow: 0 4px 10px rgba(0, 91, 179, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-container h3 {
    font-size: 20px;
  
  }
  
  .form-label {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Logo Styling for Top-Left Placement */
.logo-container {
  position: absolute;
  top: 20px; /* Distance from the top */
  left: 20px; /* Distance from the left */
  z-index: 10; /* Ensure it appears above other elements */
}

.logo {
  max-width: 100px; /* Adjust the size of the logo */
  height: auto; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
  .logo-container {
    top: 25px; /* Adjust position for smaller screens */
    left: 10px;
    
    
  }
}

.custom-heading {
  font-size: 104px;
  font-weight: 800;
  text-align: left;
  color: #d32f2f; /* Fill color */
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin: 30px auto;
  padding-bottom: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);

  /* ✅ Text outline */
  -webkit-text-stroke: 2px #ffffff; /* Outline color */
  text-stroke: 2px #ffffff; /* For other potential support */
}

/* Stylish underline effect */
.custom-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #000000;
  border-radius: 2px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .custom-heading {
    font-size: 56px;
    text-align: center;
  }

  .custom-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .custom-heading {
    font-size: 50px;
    padding: 10px 4px;
    letter-spacing: 1px;
    margin-top: -30px;
  
  }
}



.para{
  font-weight: bold;
  font-size: 20px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-top: -20px;

}




/* about */

.about-svyasa {
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background-color: #fff; /* Optional for better contrast */
}

.about-svyasa .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-heading {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff4e4e;
  border-bottom: 2px solid #ff4e4e;
  display: inline-block;
  padding-bottom: 8px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-description {
  font-size: 18px;
  color: #000000;
  padding: 0 10px;
  width: 100%;
  max-width: 100%;
  text-align: center;
  line-height: 1.6;
  
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .about-heading {
    font-size: 24px;
    padding-bottom: 6px;
  }

  .about-description {
    font-size: 16px;
    line-height: 1.6;
  }
}



/* course */

.courses-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #d32f2f;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #000;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid base */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Force third card to new row for 3-column layout */
.course-grid > .course-card:nth-child(3) {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* First row: first two cards span 1 column each */
  .course-grid > .course-card:nth-child(1),
  .course-grid > .course-card:nth-child(2) {
    grid-column: span 1;
  }

  /* Push the 3rd card to a new row */
  .course-grid > .course-card:nth-child(3) {
    grid-column: 1 / span 1;
  }
}

@media (max-width: 768px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .course-card h3 {
    font-size: 20px;
  }

  .course-card li {
    font-size: 15px;
  }
}

/* Card Styling */
.course-card {
  background: #ffffff;
  border-left: 6px solid #d32f2f;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
 
}

.course-card-one
{
   background: #ffffff;
  border-left: 6px solid #d32f2f;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  width: 400px;
}

.course-card h3 {
  color: #333;
  font-size: 22px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.course-card ul {
  list-style-type: disc;
  padding-left: 18px;
}

.course-card li {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}


/* top placement */



 .notification-banner {
      width: 100%;
      background-color: #ffeaea;
      color: #333;
      padding: 25px 15px;
      border-left: 5px solid #f76c6c;
      text-align: center;
      box-shadow: 0 4px 8px rgba(247, 108, 108, 0.1);
    }

    .notify-title {
      font-size: 24px;
      font-weight: bold;
      color: #d12f2f;
      margin-bottom: 10px;
      background-color: #ffd5d5;
      padding: 10px 20px;
      display: inline-block;
      border-radius: 10px;
    }

    .highlight {
      color: #d12f2f;
      font-weight: 600;
    }

    .notify-btn {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 25px;
      background-color: #f76c6c;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      border: none;
      cursor: pointer;
    }

    .notify-btn:hover {
      background-color: #d12f2f;
    }

    /* Popup */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .popup-content {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      position: relative;
    }

    .popup-content h3 {
      margin-top: 0;
      color: #d12f2f;
    }

    .popup-content input {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .popup-content button[type="submit"] {
      width: 100%;
      padding: 10px;
      background: #f76c6c;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }

    .popup-content button[type="submit"]:hover {
      background: #d12f2f;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: #555;
    }




.facilities-section {
 
  padding: 40px 20px;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #c0392b;
  margin-bottom: 30px;
  font-weight: 700;
}

.facilities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.facility-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-left: 5px solid #c0392b;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.facility-card h3 {
  font-size: 20px;
  color: #a61212;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }

  .facility-card h3 {
    font-size: 18px;
  }

  .facility-card p {
    font-size: 14px;
  }
}


.footer-page{
  background-color: lightcoral;
}
.footer-content{
  text-align: center;
  color: whitesmoke;
  padding: 10px;
}


/* <!-- campus life --> */


/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
 
  color: #2c2c2c;
} */
.landing {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 5%;
  justify-content: space-between;
  align-items: center;
   background-color: #fffbea;
}
.text-side {
  flex: 1 1 45%;
}
.text-side h4 {
  color: #2e388e;
  font-weight: 600;
  margin-bottom: 20px;
}
.text-side h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 700;
}
.text-side .highlight {
  background: linear-gradient(to right, #ffbe30, #f66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.explore-btn {
  background-color: #f7931e;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  cursor: pointer;
  transition: background 0.3s;
}
.explore-btn:hover {
  background-color: #da7a0a;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.feature {
  display: flex;
  gap: 20px;
  align-items: start;
}
.feature .icon {
  background: #fff;
  color: #f7931e;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.feature h3 {
  color: #f7931e;
  font-size: 18px;
  margin-bottom: 6px;
}
.feature p {
  font-size: 14px;
  color: #333;
  max-width: 420px;
}

.image-side {
  flex: 1 1 50%;
  position: relative;
}
.image-side .stats {
  display: flex;
  justify-content: space-between;
  background-color: #f7931e;
  color: white;
  border-radius: 25px;
  padding: 20px 30px;
  margin-bottom: -30px;
  z-index: 2;
  position: relative;
  margin-right: 25px;
}
.stats div {
  text-align: center;
}
.stats h2 {
  font-size: 32px;
  font-weight: 700;
}
.stats p {
  margin-top: 5px;
  font-size: 14px;
}
.hero-img {
  width: 110%;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-left: -50px;
  margin-bottom: -100px;
  height: 500px;
}
.bird-icon {
  position: absolute;
  top: -97px;
  right: 500px;
  width: 160px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .landing {
    flex-direction: column;
    padding: 40px 5%;
  }
  .text-side, .image-side {
    flex: 1 1 100%;
    text-align: center;
  }
  .features {
    align-items: center;
  }
  .feature {
    text-align: left;
    max-width: 600px;
  }
  .image-side .stats {
   font-size: 20px !important;
    gap: 15px;
  }
  .bird-icon {
    right: 1cap;
    top: -100px;
  }

  .hero-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-left: -27px;
  margin-bottom: -100px;
  height: 300px;
}
}

/* WHY S-VYASA Section */
.why-section {
  padding: 60px 20px;
  background: #fff;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.why-left {
  flex: 1 1 400px;
}

.why-left h5 {
  color: #313b72;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.why-left h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.why-right {
  flex: 1 1 600px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(255, 163, 55, 0.15);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.feature-card::before {
  content: '';
}

/* placement */

    .partners-section {
      padding: 40px 20px;
      background-color: #fff;
      text-align: center;
    }

    .partners-section h2 {
      margin-bottom: 30px;
      font-size: 28px;
      color: #c0392b;
      font-weight: bold;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: auto;
      padding: 0 10px;
    }

    .partner-card {
      background: #fff;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .partner-card:hover {
      transform: translateY(-5px);
    }

    .partner-card img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .partner-name {
      font-size: 14px;
      color: #555;
    }

    @media (max-width: 600px) {
      .partners-section h2 {
        font-size: 22px;
      }
    }

    /* course */

       .programs-section {
      font-family: 'Segoe UI', sans-serif;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .programs-section .flex-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }

    .programs-section .content {
      flex: 1 1 600px;
    }

    .programs-section .section-title {
      font-size: 14px;
      color: #2e3a8c;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .programs-section h1 {
      font-size: 42px;
      margin-bottom: 20px;
      color: #d32f2f;
    }

   .programs-section .tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 30px;
}

.programs-section .tab {
  cursor: pointer;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-weight: bold;
  color: #333;
}

.programs-section .tab:hover {
  background-color: #e53935;
  border-color: #999;
}

.programs-section .tab.active {
  background-color: #e53935;
  color: #fff;
  border-color: #007bff;
}

    .programs-section .tab.active {
      color: #ffffff;
    }

    .programs-section .tab.active::after {
      content: "";
      height: 3px;
      /* background-color: #f28800; */
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
    }

    .programs-section .course-list {
      display: none;
      columns: 2;
      gap: 30px;
      margin-top: 10px;
    }

    .programs-section .course-list.active {
      display: block;
    }

    .programs-section .course-list p {
      margin: 6px 0;
      font-weight: 500;
    }

    .programs-section .image-container {
  position: relative;
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
  z-index: 1;
}

.programs-section .image-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, #f8b76b 0%, #f5e48b 60%, transparent 80%);
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
}


    @media (max-width: 768px) {
      .programs-section h1 {
        font-size: 28px;
      }

      .programs-section .flex-container {
        flex-direction: column;
        align-items: center;
      }

      .programs-section .course-list {
        columns: 1;
      }

     
    }

    @media (max-width: 768px) {
  .programs-section .image-container {
    display: none;
  }
}





/* WhatsApp Floating Button - Final Fix */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebea5;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 12px;
    font-size: 20px;
  }
}





/* ad banner  */

/* Ad Banner Styles */
    .ad-banner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(90deg, #7c3aed, #6366f1);
      color: #fff;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      max-width: 900px;
      margin: 30px auto;
      flex-wrap: wrap;
    }

    .ad-text {
      flex: 1 1 60%;
      min-width: 250px;
      
    }

    .ad-text h2 {
      font-size: 40px;
      margin-bottom: 8px;
      color: whitesmoke;
    }

    .ad-text p {
      font-size: 20px;
      opacity: 0.9;
      margin-left: 227px;
      font-weight: bold;
    }

    .ad-btn {
      background-color: #fff;
      color: #4c1d95;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin-top: 15px;
    }

    .ad-btn:hover {
      background-color: #eee;
    }

    /* Popup Styles */
    .popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .popup-content {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      position: relative;
    }

    .popup-content h3 {
      margin-top: 0;
      margin-bottom: 15px;
      color: #4c1d95;
    }

    .popup-content input, .popup-content button {
  
      padding: 10px;
      margin-top: 10px;
      font-size: 1rem;
      border-radius: 8px;
    }

    .popup-content input {
      border: 1px solid #ccc;
    }

    .popup-content button {
      background-color: #4c1d95;
      color: white;
      border: none;
      cursor: pointer;
    }

    .popup-content button:hover {
      background-color: #6d28d9;
    }

    .close-btn {
      position: absolute;
      top: 10px; right: 15px;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #888;
    }


    /* Responsive Design */
@media (max-width: 600px) {
  .ad-banner {
    flex-direction: column;
    padding: 20px 15px;
  }

  .ad-text h2 {
    font-size: 24px;
  }

  .ad-text p {
    font-size: 16px;
    margin: 10px 0;
  }

  .ad-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .popup-content {
    padding: 20px;
  }

  .popup-content h3 {
    font-size: 20px;
  }
}

    @media (max-width: 640px) {
      .ad-banner {
        flex-direction: column;
        text-align: center;
      }

      .ad-btn {
        margin-top: 20px;
      }
    }
    
    
    /* Hide menu by default */
.menu {
  display: none;
}

/* Show menu only on laptop view and above (min-width: 768px) */
@media (min-width: 768px) {
  .menu {
    display: block;
  }

  .menu-items {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .menu-items li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    position: relative; /* For underline effect */
    padding: 6px 0;
    transition: all 0.3s ease; /* Smooth popup animation */
  }

  /* Underline effect */
  .menu-items li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #0073e6;
    transition: width 0.3s ease;
  }

  /* Hover = underline + popup */
  .menu-items li a:hover {
    color: #f9d423; /* Change text color on hover */
    transform: translateY(-3px); /* Popup effect */
    font-size: 22px;
  }

  .menu-items li a:hover::after {
    width: 100%;
  }

  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
  }

  
  .logo img {
    height: 50px;
  }
}




 .banner-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
margin-left:160px;
  color: #ffffff;
}

.highlight-banner{

  font-size: 70px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
margin-left:-157px;
  color: #f9d423;

}

.banner-subtitle {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.banner-desc {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color:yellow;
  
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-title {
    font-size: 18px;
  }

  .banner-subtitle {
    font-size: 32px;
  }

  .banner-desc {
    font-size: 16px;
  }
}