


/* 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: "Nunito",  sans-serif;
  --nav-font: "Inter",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f2ab04; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f2ab04; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f2ab04; /* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #f2ab04;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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;
}
.footer-links p{
    margin-top:17px;
    color: #fff;
}
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

.footer-links .newsletter-form {
  display: flex;
  margin-top: 10px;
}

.footer-links .newsletter-form input[type="email"] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.footer-links .newsletter-form button {
  background: #F9B101;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-links .newsletter-form button:hover {
  background: #b2001c;
}


/* sitename */
.mainlogo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mainlogo .book-icon {
  position: relative;
  width: 48px; /* Slightly larger */
  height: 60px;
  perspective: 600px; /* Enhanced 3D effect */
}
.mainlogo .book-cover {
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(174, 207, 250, 0) 0%, rgba(231, 255, 237, 0) 100%),
    url('https://aionapp.in/html/bhambhewa/assets/images/yashvirinstitute/employee-engagement.gif') center/cover no-repeat;
  border-radius: 2px 6px 6px 2px;
  transform: rotateY(-15deg);
  transform-style: preserve-3d;
  
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}



.mainlogo .sitename-main {
  color: #f2ab04;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 2px 4px rgba(26, 115, 232, 0.1);
  letter-spacing: -0.5px;
  position: relative;
}


.mainlogo:hover .sitename-main::after {
  width: 100%;
}

.sitename-sub {
  color: #484848;
  font-size: 10px;
  letter-spacing: 1.8px;
  display: block;
  margin-top: 0px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.9;
  transition: all 0.3s ease;
  margin-left: 10px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .book-icon {
    width: 36px;
    height: 48px;
  }
  .sitename-main {
    font-size: 15px !important;
  }
  .sitename-sub {
    font-size: 7px !important;
  }
}
/* endsite name */



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

/* .header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
} */

@media (max-width: 768px) {
  .header .btn-getstarted {
    font-size: 12px !important;
  }

}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 12px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 900;
  text-transform: uppercase;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #9eceff;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #747474;
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    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;
    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(--nav-dropdown-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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    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: #747474;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #2b2b2b;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 80px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}




.footer .footer-about .logo span {
  color: #f2ab04;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}






.footer h4 { 
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #f2ab04; /* Change this to any color you prefer */
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 20px 0px;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #fff;
}

.footer .copyright {
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: #f2ab04;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #fff;
}

.footer .credits {
  /* margin-top: 8px; */
  font-size: 13px;
  color: #fff;
}
.footer .credits a{
  color: #000;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #fffbf2;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.rotating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.triangle {
  position: absolute;
  animation: rotate 15s linear infinite;
  opacity: 0.15;
}

/* Triangle 1 - Solid with gradient */
.triangle-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f2ab04 0%, #FFCD9A 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 11%;
  left: 10%;
  animation-delay: 0s;
}

/* Triangle 2 - Outline style */
.triangle-2 {
  width: 80px;
  height: 80px;
  border: 3px solid #f2ab04;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 65%;
  left: 80%;
  animation-delay: -5s;
  animation-duration: 20s;
  opacity: 0.1;
}

/* Triangle 3 - Skewed */
.triangle-3 {
  width: 150px;
  height: 150px;
  background: rgba(249, 171, 0, 0.1);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  top: 30%;
  left: 70%;
  animation-delay: -10s;
  animation-duration: 25s;
  transform: skew(20deg);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .triangle-1, .triangle-2, .triangle-3 {
    display: none;
  }
}
.hero-section {
  position: relative;
  padding: 120px 0 100px;
background-color: #fff8e6; /* Warm soft base */
background-image: 
  radial-gradient(circle at 15% 25%, rgba(255, 190, 0, 0.12) 0%, transparent 40%),
  radial-gradient(circle at 85% 10%, rgba(255, 120, 0, 0.05) 0%, transparent 30%),
  linear-gradient(to bottom, rgba(255, 240, 200, 0.1) 0%, #fff8e6 100%);

  overflow: hidden;
}



.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 141vh;
  background-color: rgba(249, 171, 0, 1); /* Soft blue shade */
  border-radius: 1%;
  z-index: 1;
  pointer-events: none;
}



.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.excellence-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background-color: #f2ab04;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(249, 171, 0, 0.2);
  transition: all 0.3s ease;
}

.excellence-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(249, 171, 0, 0.3);
}

.excellence-badge i {
  margin-right: 10px;
  font-size: 16px;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1d2b;
  margin-bottom: 20px;
}

.highlight-text {
  color: #f2ab04;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(249, 171, 0, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4f62;
  margin-bottom: 35px;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #f2ab04;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(249, 171, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: #f9b101;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 171, 0, 0.35);
}


.btn-primary1 {
  display: block;
  padding: 14px 32px;
  background-color: #f2ab04;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(249, 171, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary1:hover {
  background-color: #f9b101;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 171, 0, 0.35);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  color: #f2ab04;
 padding: 9px 22px;
  background-color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-video:hover {
  color: #004acc;
}

.btn-video i {
  margin-right: 8px;
  font-size: 20px;
}

/* Hero Image Styles */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 61, 165, 0.15));
  animation: float 6s ease-in-out infinite;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.achievement-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  background: white;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 61, 165, 0.1);
  max-width: 280px;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(249, 171, 0, 0.1);
  backdrop-filter: blur(5px);
}

.student-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.avatar:first-child {
  margin-left: 0;
}

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

.avatar.more {
  background-color: #f2ab04;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.achievement-text {
  font-size: 14px;
  color: #4a4f62;
  margin: 0;
  line-height: 1.5;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: -50px;
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: 0px;  
  position: relative;
  z-index: 2;
}

.stat-card {
  display: flex;
  border: 1px solid #f2ab04;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  background-color: #fff8e6;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 190, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 10%, rgba(255, 120, 0, 0.15) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(255, 240, 200, 0.2) 0%, #fff8e6 100%);
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.15);
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(255, 160, 0, 0.25);
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 190, 0, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255, 120, 0, 0.12) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(255, 240, 200, 0.3) 0%, #fff6d1 100%);
}


.stat-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(249, 171, 0, 0.28);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  background-color: #f2ab04;
  transform: rotate(5deg);
}

.stat-icon-wrapper i {
  font-size: 24px;
  color: #f2ab04;
}

.stat-card:hover .stat-icon-wrapper i {
  color: white;
}

.stat-details h3 {
  font-size: 20px;
  color: #1a1d2b;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-details p {
  font-size: 14px;
  color: #6b6f82;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
}







@media only screen and (min-width : 320px) and (max-width : 480px)  {
 
.about-section .experience-badge {
    height: 80px !important;
}
.principal-message-box blockquote { 
    font-size: 14px !important;
}
.features-cards .feature-box { 
    padding: 20px 25px !important;
}
.features-cards .feature-box i {
    font-size: 30px !important; 
    margin-bottom: 10px !important;
}
.features-cards .feature-box h4 {
    font-size: 17px !important;
}
.contact .info-box p {
    font-size: 13px !important;
}
.contact .info-item .icon-box {
    width: 36px !important;
    height: 36px !important;
}
.contact .info-item .content h4 { 
    font-size: 16px !important;
}
.contact .info-item .content p{
     font-size: 13px !important;
}
.contact .contact-form p{
      font-size: 13px !important;
}
    .contact .contact-form h3 {
        font-size: 20px !important;
    }
    .contact .contact-form .form-control, .contact .contact-form .form-select {
    padding: 7px 14px !important;
    }
    .cta-subtext {
        font-size: 14px !important;
    }
    .footer h4 {
    font-size: 15px !important;
    padding-bottom: 12px !important;
 }
 .about-section .feature-item span { 
    line-height: 1.9;
}
 .about-section .features-title {
    font-size: 16px;
 }
     .about-section .section-title {
        font-size: 19px !important;
    }
     .achievement-card { 
        margin: 17px auto 22px !important;
     }
 .hero-title {
        font-size: 20px !important;
    }
    
 .stat-details h3 {
    font-size: 16px !important;
 }
    .footer .footer-about .logo span { 
    font-size: 20px !important;
    }
    .btn-cta{
        padding: 7px 14px !important;
    }
    .cta-heading {
        font-size: 19px !important;
    }
    .btn-primary1{
         padding: 7px 14px !important;
    }
.contact .info-item { 
    gap: 10px !important;
}
    .contact .info-box h3 {
        font-size: 18px !important;
    }
    .inst-btn {
        padding: 4px 15px !important;
        font-size: 13px !important;
    }
        .inst-title {
        margin-bottom: 17px !important;
        font-size: 16px !important;
    }
.notification-title {
        font-size: 18px !important;
    }
    .inst-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin-top: 23px !important;
    }
   .cont{
           margin-top: -70px !important;
   } 
.principal-name { 
    font-size: 12px !important;
}
.inst-highlights li {
    font-size: 13px !important;
}
.notification-title {
        font-size: 19px !important;
    }
.notice-badge { 
    padding: 4px 10px !important; 
    font-size: 10px !important;
}
.notice-title {
    font-size: 16px !important;
}
.notice-text {
    font-size: 12px !important; 
    font-weight: 500 !important;
}
.view-all-btn {
    font-size: 14px !important;
    padding-top: 15px !important;
}
.notice-date {
    font-size: 11px !important;
}
.notice-icon {
    font-size: 14px !important; 
    width: 33px !important;
    height: 33px !important;
}
.notice-box { 
    padding: 1rem !important;
}

}









@media (max-width: 991px) {
  .hero-section {
    padding: 100px 0 80px;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .achievement-card {
    position: static;
    margin: 30px auto 0;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 28px;
  }
  
  .stats-container {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .excellence-badge {
    font-size: 14px;
    padding: 6px 15px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary, .btn-video {
    width: 100%;
    justify-content: center;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
}










/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-section {
  padding: 0px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(249, 171, 0, 0.03) 0%, transparent 70%);
  z-index: 0;
}

/* Image Styles */
.about-images {
  position: relative;
  padding-right: 30px;
}

.about-section .main-image-wrapper {
  position: relative;
  border-radius: 12px;
    border:5px solid #FBBC05;
  overflow: hidden;
  /*box-shadow: 0 20px 40px rgba(0, 61, 165, 0.1);*/
  z-index: 2;
}

.about-section .main-image {
  width: 100%;
  height: auto; 
  display: block;
  transition: transform 0.5s ease;
}

.about-section .main-image-wrapper:hover .main-image { 
  transform: scale(1.02);
}

.about-section .secondary-image-wrapper {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 45%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 61, 165, 0.15);
  border: 5px solid white;
  z-index: 3;
  transform: rotate(3deg);
  transition: all 0.4s ease;
}

.about-section .secondary-image-wrapper:hover {
  transform: rotate(0deg) translateY(-5px);
}

.about-section .secondary-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Experience Badge */
.about-section .experience-badge {
  position: absolute;
  top: 20px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 61, 165, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  animation: float 4s ease-in-out infinite;
}

.about-section .experience-badge .years {
  font-size: 36px;
  font-weight: 700;
  color: #f2ab04;
  line-height: 1;
}

.about-section .experience-badge .text {
  font-size: 14px;
  color: #1a1d2b;
  font-weight: 500;
  line-height: 1.4;
}

/* Content Styles */
.about-section .about-content {
  padding-left: 30px;
  position: relative;
  z-index: 2;
}

.about-section .section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #f2ab04;
  background: rgba(249, 171, 0, 0.1);
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.about-section .section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1d2b;
  /*margin-bottom: 5px;*/
  line-height: 1.3;
}

.about-section .about-description {
  font-size: 16px;
  /*line-height: 1.8;*/
  color: #4a4f62;
  margin-bottom: 30px;
  margin-left: 0px;
}

/* Key Features */
.about-section .key-features {
  margin-bottom: 40px;
}

.about-section .features-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1d2b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-section .feature-icon {
  color: #f2ab04;
  margin-right: 10px;
  font-size: 22px;
}

.about-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-section .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  border-left:3px solid #f2ab04;
  padding: 9px 16px 6px 16px;
  background: rgba(249, 171, 0, 0.13);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-section .feature-item:hover {
  background: rgba(249, 171, 0, 0.08);
  transform: translateX(5px);
}

.about-section .feature-bullet {
  color: #f2ab04;
  margin-right: 12px;
  font-size: 18px;
  margin-top: 2px;
}

.about-section .feature-item span {
  font-size: 15px;
  color: #4a4f62;
  line-height: 1.6;
}

/* Contact Info */
 .about-section .contact-info-wrapper {
  margin-top: 40px;
}

 .about-section .contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 61, 165, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-section .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 61, 165, 0.1);
}

.about-section .contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(249, 171, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-section .contact-icon i {
  font-size: 20px;
  color: #f2ab04;
}

.about-section .contact-label {
  font-size: 14px;
  color: #6b6f82;
  margin-bottom: 5px;
}

.about-section .contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a1d2b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-section .contact-value:hover {
  color: #f2ab04;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .about-section .section-title {
    font-size: 32px;
  }
  
  .about-section .about-images {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .about-section .about-section {
    padding: 80px 0;
  }
  
  .about-section .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
  
 .about-section .secondary-image-wrapper {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .about-section .section-title {
    font-size: 28px;
  }
  
  .about-section .experience-badge {
    padding: 15px;
  }
  
  .about-section .experience-badge .years {
    font-size: 30px;
  }
  
  .about-section .contact-card {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .about-section .about-section {
    padding: 60px 0;
  }
  
  .about-section .section-title {
    font-size: 24px;
  }
  
  .about-section .secondary-image-wrapper {
    width: 50%;
    bottom: -20px;
  }
  
  .about-section .experience-badge {
    bottom: 20px;
    left: 20px;
  }
  
  .about-section .feature-item {
    padding: 10px;
  }
}






/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/


.call-to-action {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.55)
  ),
  url('https://aionapp.in/html/bhambhewa/assets/images/aryainstitute/bgneww.jpg') no-repeat center center / cover;
  padding: 5rem 2rem;
  color: #fff;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #fff;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #f5f5f5;
  max-width: 750px;
  margin: 0 auto;
}

.btn-cta {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

/* Animated Blobs */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  animation: blobMove 20s infinite ease-in-out alternate;
  z-index: 1;
}

.shape-1 {
  width: 280px;
  height: 280px;
  top: -100px;
  right: -80px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
  animation-delay: 4s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 40%;
  animation-delay: 8s;
}

@keyframes blobMove {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-20px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/* Dot Patterns */
.dots {
  position: absolute;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: 1;
}

.dots-1 {
  width: 150px;
  height: 150px;
  top: 0;
  left: 10%;
}

.dots-2 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  right: 15%;
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 1.75rem;
  }

  .cta-subtext {
    font-size: 1rem;
  }

  .shape-1,
  .shape-2,
  .shape-3 {
    display: none;
  }
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
 background: linear-gradient(35deg, #FBBC05 0%, #f2ab04 100%);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: #f2ab04;
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}




/* notification */


.notification.section {
  padding: 80px 0;
   background-color: #f9eecf; 
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.notification-meta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background-color: #E8F0FE;
  border-radius: 50px;
  color: #f2ab04;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.notification-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #202124;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #f2ab04;
  margin: 0 auto;
  border-radius: 2px;
}

 
.notice-box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.notice-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e29500;
}

.notice-badge {
  background-color: #fde293;
  color: #5a4500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.marquee-wrapper {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scroll-up 25s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-up {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #ddd;
  transition: background 0.3s ease;
}

.notice-item:hover {
  background-color: #fef6e4;
  border-radius: 8px;
  padding-left: 0.5rem;
} 
.notice-icon {
  font-size: 1.3rem;
  background-color: #fff3cd;
  color: #e29500;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-text {
  flex: 1;
  font-weight: 600;
  color: #212529;
}

.notice-date {
  font-size: 0.8rem;
  color: #6c757d;
  min-width: 90px;
  text-align: right;
}

.view-all-btn {
  color: #f2ab04;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  color: #0d47a1;
}

.principal-message-box blockquote {
  font-style: italic;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  border-left: 4px solid #f2ab04;
  padding-left: 1rem;
}

.principal-message-content .message-icon {
  font-size: 2.5rem;
  color: #f2ab04;
}

.principal-name {
  color: #0d47a1;
}


 


 /* Landing Page:yashvirinstitutestyle*/

/* Programs Offered Section */
.programs {
  padding: 100px 0;
  position: relative;
  background-color: #fffbf2;
  overflow: hidden;
}

.programs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(249, 171, 0, 0.03) 0%, transparent 60%);
  z-index: 0;
}

.section-title {
  text-align: left;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.notification-meta {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #f2ab04;
  background: rgba(249, 171, 0, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notification-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1d2b;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.4;
}

.institution-cards {
  position: relative;
  z-index: 2;
}

/* Program Card Styles */
.inst-card {
  height: 100%;
  background: white;
  border-radius: 16px;
  /*overflow: hidden;*/
  box-shadow: 0 10px 30px rgba(0, 61, 165, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  border: 1px solid rgba(249, 171, 0, 0.1);
}

.inst-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 61, 165, 0.15);
}

.inst-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 20px;
  position: relative;
  z-index: 3;
  color: white;
  font-size: 32px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.inst-card:hover .inst-icon {
  transform: scale(1.1) rotate(10deg);
}

.icon-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.8;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.bg-technical {
  background: linear-gradient(135deg, #f2ab04 0%, #FFCD9A 100%);
}

.bg-veterinary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.bg-education {
  background: linear-gradient(135deg, #6b5bff 0%, #a855f7 100%);
}

.inst-body {
  padding: 0 30px 30px;
  text-align: center;
}

.inst-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1d2b;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.inst-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #f2ab04;
  border-radius: 3px;
}

.inst-quote {
  font-style: italic;
  color: #4a4f62;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 10px;
}

.inst-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.inst-highlights li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(249, 171, 0, 0.1);
  display: flex;
  align-items: center;
}

.inst-highlights li:last-child {
  border-bottom: none;
}

.inst-highlights i {
  color: #f2ab04;
  margin-right: 10px;
  font-size: 14px;
}

.inst-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #f2ab04;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f2ab04;
}

.inst-btn:hover {
  background: #f9b101;
  border-color: #f9b101;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 171, 0, 0.3);
}

.inst-btn i {
  margin-left: 8px;
  font-size: 14px;
}

.inst-btn.outline {
  background: transparent;
  color: #f2ab04;
}

.inst-btn.outline:hover {
  background: rgba(249, 171, 0, 0.1);
  color: #f9b101;
}

/* Floating Shape Decorations */
.programs::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 171, 0, 0.05) 0%, transparent 70%);
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .notification-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .programs {
    padding: 80px 0;
  }
  
  .inst-body {
    padding: 0 20px 20px;
  }
}

@media (max-width: 767px) {
  .notification-title {
    font-size: 24px;
  }
  
  .inst-title {
    font-size: 20px;
  }
  
  .inst-btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .inst-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .programs {
    padding: 60px 0;
  }
  
  .notification-meta {
    font-size: 14px;
  }
  
  .notification-title {
    font-size: 22px;
  }
  
  .inst-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-top: -35px;
  }
}























