/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-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: "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: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8; /* 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: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* 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: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca; /* 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: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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;
} */

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

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

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

.header .logo {
  line-height: 1;
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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: var(--nav-color);
    padding: 18px 15px;
    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: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 .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

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

/* Mobile Navigation */
@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: 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%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .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: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  height: 100px;
}

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

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

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

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

.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 color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.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: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  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;
}

.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: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  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
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height:100vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

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

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-top: -200px;
  margin-left:-40px;
}



.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}
.hero h1{
  margin-top: -10px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

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

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
 .about-section {
      padding: 80px 20px;
      margin-top: -40px;
    }

    .about-section h1 {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 25px;
      color: #2575fc;
    }

    .about-section p {
      font-size: 1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 18px;
    }

    .about-img {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    .about-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .about-img img:hover {
      transform: scale(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .about-section h1 {
        font-size: 2rem;
      }
    }

   /* Full-width section styles */
    section {
      width: 100%;
      padding: 60px 20px;
      margin-top: -100px;
    }

    h2.section-title {
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 30px;
      color: #2575fc;
      font-weight: bold;
    
    }

   
  /* Section container */
  .eligibility-section {
    width: 100%;
    max-width: 1400px;
    margin: 50px auto;
    padding: 20px;
  }

  /* Section heading */
  .eligibility-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2575fc;
    margin-bottom: 40px;
    font-weight: bold;
    margin-top: -50px;
  }

  /* Grid layout: 5 items in one row */
  .eligibility-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  /* Each card */
  .eligibility-card {
    background: #fff;
    border-left: 5px solid #004aad;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
  }

  .eligibility-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }

  /* Number circle */
  .eligibility-card::before {
    /* counter-increment: eligibility;
    content: counter(eligibility);
    counter-reset: eligibility 0; */
    position: absolute;
    top: 20px;
    left: -25px;
    width: 30px;
    height: 30px;
    background: #004aad;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
  }

  .eligibility-card p {
    margin: 0;
    padding-left: 10px;
    line-height: 1.6;
  }

  /* Responsive: stack items on smaller screens */
  @media(max-width: 1200px) {
    .eligibility-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media(max-width: 768px) {
    .eligibility-section h2 {
      font-size: 26px;
    }
    .eligibility-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    .eligibility-card::before {
      left: -20px;
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
  }

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

    /* Syllabus section */
    .syllabus {
      background: linear-gradient(135deg, #fff0f5, #ffffff);
    }

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

    .syllabus-box {
      background: #ffffff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
    }

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

    .syllabus-box h3 {
      color: #ff4b5c;
      margin-bottom: 12px;
      font-size: 20px;
    }

    @media(max-width: 768px) {
      h2.section-title {
        font-size: 26px;
      }
      .syllabus-box h3 {
        font-size: 18px;
      }
    }

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  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 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.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);
}


/*--------------------------------------------------------------
# my css 
--------------------------------------------------------------*/
/* Form Styling */
.form-container {

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: -100px;
  background-color: rgb(62, 100, 224);

    margin-left: 80px;
}

.form-container .form-title {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: bold;
}

.form-container .form-label {
  font-weight: 500;
  color: #ffffff;
}

.form-container .form-control {
  border-radius: 5px;
}

.form-container button[type="submit"] {
  background-color: #fff240;
  color: black;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.form-container button[type="submit"]:hover {
  background-color: #fff240;
}


/* Responsive Design */
@media (max-width: 992px) {
  

  .form-container {
    padding: 15px;
    margin-top:10px;
    margin-left: 2px;
  }

  .form-container .form-title {
    font-size: 1.2rem;
  }
}


/* style for heading in banner */
.big-text {
  font-size: 100px; /* Adjust size as needed */
  font-weight: bold;
  color: #fff240; /* Optional: Highlight color */
  margin-left: -15px;
  margin-bottom: -40px;
}

/* Heading and paragraph styling */
.hero h1 {
  font-size: 70px;
  margin-bottom: 20px;
  color: #ffffff;
  margin-left:-40px;
}


.hero p {
  font-size: 6rem;
  color:#ffffff ;
  font-weight: bold;
  margin-left: -50px;
}

/* style for admission process */
 /* Custom CSS */
 .admission-container {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: -80px;
}
.admission-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #343a40;
}
.admission-content {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 20px;
}
.admission-call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-button {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #0056b3;
}
.cta-button i {
  margin-right: 10px;
}
/* Media Query for Smaller Devices */
@media (max-width: 768px) {
  .admission-header {
      font-size: 20px;
  }
  .admission-content {
      font-size: 14px;
  }

  
}


/* last table css */
.exam-highlights {
  width: 100%;
  padding: 40px 20px;
  background: #f9f9f9;
}

.exam-highlights h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.8rem;
  color: #222;
  font-weight: bold;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

th, td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

th {
  background: #004aad;
  color: #fff;
  font-weight: bold;
}

tr:nth-child(even) {
  background: #f2f2f2;
}

a {
  color: #004aad;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  th, td {
    font-size: 14px;
    padding: 10px;
  }
  .exam-highlights h2 {
    font-size: 22px;
  }
}
/* General Footer Styles */
.site-footer {
  background-color: #333;
  color: white;
  padding: 50px 0;
  height: 50px;
}

.footer-top {
  padding: 20px 0;
}

.footer-title {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}

.footer-list {
  padding: 0;
  list-style: none;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1e90ff;
}

.contact-info {
  color: #bbb;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Social Media Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  color: white;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #1e90ff; /* Hover effect with blue color */
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }

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

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icon {
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* Stack columns vertically for mobile view */
  .footer-list, .social-links {
    text-align: center;
  }

  .col-md-4 {
    flex: 0 0 100%; /* Make the columns stack */
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0;
  }

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

  .footer-link {
    font-size: 0.8rem;
  }

  .social-icon {
    font-size: 20px;
  }
}


/* hero img  */

.hero {
  /* Full width and height */
  width: 100%;
  min-height: 600px; /* adjust as needed */
  
  /* Background image settings */
  background-image: url('./assets/img/girl.webp');
  background-size: cover;       /* cover the entire section */
  background-position: center;  /* center the image */
  background-repeat: no-repeat; /* prevent repeating */
  
  /* Flex for vertical alignment */
  display: flex;
  align-items: center;

  /* Optional: overlay for text readability */
  position: relative;
  color: #fff;
}

/* Overlay to darken background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

/* Content inside hero */
.hero .container {
  position: relative; /* place content above overlay */
  z-index: 2;
}

/* Heading and paragraph styling */
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    min-height: 500px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 800px;
    text-align: center;
    margin-top: -100px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-top: -47px;
  }
  .hero p {
    font-size: 0.9rem;
    margin-left: -2px;
     max-width: 100%;
  }

  .big-text {
  font-size: 50px; /* Adjust size as needed */
  font-weight: bold;
  color: #fff240; /* Optional: Highlight color */
  margin-left: 23px;
  
}
}

/* exam pattern */
    .exam-pattern {
      width: 100%;
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .exam-pattern h2 {
      text-align: center;
      color: #2575fc;
      margin-bottom: 20px;
      font-size: 2.8rem;
      font-weight: bold;
    }

    /* Table Styles */
    .pattern-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    .pattern-table th, .pattern-table td {
      border: 1px solid #ddd;
      padding: 12px 15px;
      text-align: left;
    }

    .pattern-table th {
      background: #2c3e50;
      color: #fff;
      font-size: 16px;
    }

    .pattern-table tr:nth-child(even) {
      background: #f2f2f2;
    }

    .pattern-table tr:hover {
      background: #f9f9f9;
    }

    /* Responsive Table */
    @media (max-width: 768px) {
      .pattern-table th, .pattern-table td {
        display: block;
        width: 100%;
        text-align: left;
      }

      .pattern-table tr {
        margin-bottom: 15px;
        display: block;
        border-bottom: 2px solid #ddd;
      }

      .pattern-table th {
        background: #34495e;
        padding: 10px;
      }
    }

    /* ffffff */


        .marking-scheme {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .marking-scheme h2 {
      text-align: center;
      color: #2575fc;
      margin-bottom: 15px;
      font-size: 2.8rem;
      font-weight: bold;
    }

    .marking-scheme p {
      text-align: center;
      font-size: 16px;
      margin-bottom: 30px;
      color: #555;
    }

    .scheme-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .scheme-item {
      background: #f0f6ff;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .scheme-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    .scheme-item h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #0056b3;
    }

    .scheme-item p {
      font-size: 16px;
      color: #333;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .scheme-grid {
        grid-template-columns: 1fr;
      }
    }

    /* eeee */



      .cutoff-section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .cutoff-section h2 {
      text-align: center;
      font-size: 2.8rem;
      margin-bottom: 15px;
      color: #2575fc;
      font-weight: bold;
    }

    .cutoff-section p {
      text-align: center;
      color: #555;
      font-size: 16px;
      margin-bottom: 25px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 16px;
    }

    th, td {
      padding: 12px 15px;
      border: 1px solid #ddd;
      text-align: center;
    }

    th {
      background: #2c3e50;
      color: #fff;
    }

    tr:nth-child(even) {
      background: #f4f6f9;
    }

    tr:hover {
      background: #f0f8ff;
    }

    /* Mobile Responsive Table */
    @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }

      thead tr {
        display: none;
      }

      tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
        padding: 10px;
      }

      td {
        text-align: left;
        padding: 10px 5px;
        position: relative;
      }

      td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        color: #2c3e50;
        margin-bottom: 5px;
      }
    }

    /* aaaa */

    .schedule-title {
  color: #2575fc;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.schedule-sub {
  font-size: 1rem;
  margin-bottom: 20px;
}

.schedule-sub a {
  color: #0073e6;
  text-decoration: none;
}

.schedule-sub a:hover {
  text-decoration: underline;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  background: #f9f9f9;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 1rem;
}

.timeline li strong {
  color: #333;
}

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

/* Responsive Tweaks */
@media (max-width: 768px) {
  .schedule-title {
    text-align: center;
    font-size: 1.5rem;
  }

  .schedule-sub {
    text-align: center;
    font-size: 0.95rem;
  }

  .timeline li {
    font-size: 0.95rem;
    text-align: center;
  }
}

    /* banner */

    /* Banner Styles */
.banner {
  width: 100%;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 60px;
  height: 380px;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
}

.banner h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: whitesmoke;
  margin-top: -30px;
}

.banner p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.banner-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #fff;
  color: #0073e6;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #f1f1f1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner h2 {
    font-size: 1.6rem;
  }
  .banner p {
    font-size: 1rem;
  }

  .banner {
  width: 100%;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 60px;
  height: 480px;
}
}

.banner-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff9800;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #e68900;
}

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

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

.close-btn {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.popup-content h3 {
  margin-bottom: 15px;
  color: #004080;
}

.popup-content label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

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

.submit-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #004080;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #00264d;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .banner h2 {
    font-size: 20px;
  }
  .banner p {
    font-size: 14px;
  }
  .banner-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}


/* cal */

.cat-percentile {
  background: linear-gradient(135deg, #f3f9ff, #ffffff);
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #004080;
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.formula {
  background: #004080;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
}

/* Steps - single line */
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

.step {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.2s;
}

.step:hover {
  transform: translateY(-4px);
}

.circle {
  width: 36px;
  height: 36px;
  background: #0073e6;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Example & Key Points grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.example {
  background: #fffaf0;
  border-left: 6px solid #ff9800;
  padding: 25px;
  border-radius: 10px;
}

.example h3 {
  margin-bottom: 10px;
  color: #e65100;
}

.highlight {
  color: #d32f2f;
  font-weight: bold;
}

.key-points {
  background: #f0fff4;
  border-left: 6px solid #2e7d32;
  padding: 25px;
  border-radius: 10px;
}

.key-points h3 {
  margin-bottom: 10px;
  color: #2e7d32;
}

.key-points ul {
  margin: 0;
  padding-left: 20px;
}

.key-points li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .steps-horizontal {
    grid-template-columns: 1fr;
  }
}

/* last three setion */

.cat-info {
  width: 100%;
  background: #f9fbff;
  font-family: "Segoe UI", sans-serif;
}

.info-section {
  width: 100%;
  padding: 60px 8%;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

h2 {
  color: #2575fc;
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.points {
  padding-left: 20px;
}

.points li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

/* Colleges grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 20px;
  border-left: 6px solid #0073e6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

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

.card h3 {
  margin-bottom: 10px;
  color: #0073e6;
}

/* Responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }
  .info-section {
    padding: 40px 20px;
  }
}

/* footer-bottom */

.footer-bottom {
    text-align: center;
    font-size: 1rem;
    color: #ccc;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .footer-bottom p {
        font-size: 0.8rem;
    }
  }

  /* thankyou.html */

 .thank-you-message {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  width: 500px !important;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 450px !important;
  margin-top: -10px;
}

.thank-you-message .message-box h3 {
  color: rgb(0, 0, 0);
  font-size: 75px;
  margin-bottom: 10px;
}

.thank-you-message .message-box p {
  font-size: 54px;
  color: #000000;
  margin: 0;
  font-weight: bold;
}

@media (max-width: 576px) {
  .thank-you-message {
    padding: 20px;
    max-width: 90%;
    height: 200px !important;
    margin-top: -20px;
  }

  .thank-you-message .message-box h3 {
    font-size: 24px;
  }

  .thank-you-message .message-box p {
    font-size: 16px;
  }
}


/* hero btn */

.cta-btn {
  display: inline-block;
  background: #0073e6;       /* Blue background */
  color: #fff;               /* White text */
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  background: #ffffff;       /* Darker blue on hover */
  box-shadow: 0 6px 16px rgba(0, 91, 181, 0.4);
  transform: translateY(-2px);
  color: black;
}


/* Ads Banner */


.ads-banner.style1 {
  background: linear-gradient(90deg,#004080,#0073e6);
  color:#fff;
  text-align:center;
  padding:40px 20px;
}
.ads-banner.style1 h2 {margin-bottom:10px; color: whitesmoke;}
.apply-btn {
  background:#ff9800; border:none; padding:12px 25px; font-size:18px;  
  border-radius:6px; color:#fff; cursor:pointer;
}
.popup {display:none;position:fixed;top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,0.6);justify-content:center;align-items:center;z-index:9999;}
.popup-content {background:#fff;padding:20px;border-radius:8px;width:90%;max-width:400px;text-align:center;}
.popup-content input {width:100%;margin:10px 0;padding:10px;}
.popup-content button {background:#004080;color:#fff;padding:10px;width:100%;border:none;}
.close-btn {position:absolute;top:10px;right:20px;font-size:22px;cursor:pointer;}

/* second banner ad  */

  /* ✅ Banner */
    .cat-ad-banner {
      width: 100%;
      min-height: 320px;
      background: url('https://via.placeholder.com/1920x400') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      margin-top: -80px;
    }
    .cat-ad-overlay {
      background: rgba(0, 0, 40, 0.75);
      padding: 50px 30px;
      border-radius: 0; /* no rounded edges for full-width feel */
      color: #fff;
      text-align: center;
      width: 100%;
      max-width: 100%;
    }
    .cat-ad-overlay h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: 700;
    }
    .cat-ad-overlay p {
      font-size: 18px;
      margin-bottom: 25px;
    }
    .cat-ad-btn {
      background: #ff9800;
      border: none;
      padding: 15px 40px;
      font-size: 20px;
      color: #fff;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .cat-ad-btn:hover {
      background: #e68900;
      transform: translateY(-2px);
    }

    /* ✅ Popup */
    .cat-popup-wrapper {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }
    .cat-popup-box {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 420px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
      position: relative;
      text-align: center;
      animation: popIn 0.3s ease-out;
    }
    @keyframes popIn {
      from { transform: scale(0.85); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .cat-popup-box h3 {
      margin-bottom: 15px;
      font-size: 22px;
      color: #004080;
    }
    .cat-popup-box input {
      width: 100%;
      margin: 10px 0;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }
    .cat-popup-box button {
      background: #004080;
      color: #fff;
      padding: 12px;
      width: 100%;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 16px;
      transition: 0.3s;
    }
    .cat-popup-box button:hover {
      background: #003366;
    }
    .cat-close-btn {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
      color: #444;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
      .cat-ad-overlay {
        padding: 30px 20px;
      }
      .cat-ad-overlay h2 {
        font-size: 22px;
      }
      .cat-ad-overlay p {
        font-size: 14px;
      }
      .cat-ad-btn {
        width: 100%;
        font-size: 16px;
        padding: 12px;
      }
    }

/* banner ads 3 */

  /* ✅ Banner Style */
    .cat-banner-three {
      width: 100%;
      height: 200px;
      background: #222; /* solid dark bg */
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px 60px;
      box-sizing: border-box;
      margin-top: 50px;
    }
    .cat-banner-three .cat-banner-text {
      flex: 1;
      padding-right: 20px;
    }
    .cat-banner-three h2 {
      font-size: 30px;
      margin-bottom: 12px;
      font-weight: 700;
      color: whitesmoke;
    }
    .cat-banner-three p {
      font-size: 18px;
      margin-bottom: 0;
      text-align: center;
    }
    .cat-banner-three .cat-banner-btnbox {
      flex-shrink: 0;
    }
    .cat-banner-three .cat-btn-three {
      background: #ff5722;
      border: none;
      padding: 14px 32px;
      font-size: 18px;
      color: #fff;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }
    .cat-banner-three .cat-btn-three:hover {
      background: #e64a19;
      transform: translateY(-2px);
    }

    /* ✅ Popup */
    .cat-popup-three {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.75);
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }
    .cat-popup-box-three {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 420px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
      position: relative;
      text-align: center;
      animation: slideUp 0.3s ease-out;
    }
    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .cat-popup-box-three h3 {
      margin-bottom: 15px;
      font-size: 22px;
      color: #222;
    }
    .cat-popup-box-three input {
      width: 100%;
      margin: 10px 0;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }
    .cat-popup-box-three button {
      background: #222;
      color: #fff;
      padding: 12px;
      width: 100%;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 16px;
      transition: 0.3s;
    }
    .cat-popup-box-three button:hover {
      background: #000;
    }
    .cat-close-three {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
      color: #444;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
      .cat-banner-three {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
      }
      .cat-banner-three .cat-banner-text {
        padding: 0 0 20px;
      }
      .cat-banner-three h2 {
        font-size: 22px;
      }
      .cat-banner-three p {
        font-size: 14px;
      }
      .cat-banner-three .cat-btn-three {
        width: 100%;
      }
    }

    /* fourth ads banner */

     /* ✅ Banner Style */
    .ad-banner-four {
      width: 100%;
      background: #5a5acd;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px 60px;
      box-sizing: border-box;
      border-top: 4px solid #0073e6;
      
    }
    .ad-banner-four .banner-four-text {
      flex: 1;
      padding-right: 20px;
    }
    .ad-banner-four h2 {
      font-size: 28px;
      margin-bottom: 12px;
      font-weight: 700;
      color: whitesmoke;
    }
    .ad-banner-four p {
      font-size: 18px;
      margin: 0;
      color: #ffffff;
      text-align: center;
    }
    .ad-banner-four .btn-box-four {
      flex-shrink: 0;
    }
    .ad-btn-four {
      background: #ffffff;
      border: none;
      padding: 14px 34px;
      font-size: 18px;
      color: #000000;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }
    .ad-btn-four:hover {
      background: #005bb5;
      transform: scale(1.05);
    }

    /* ✅ Popup */
    .popup-four {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.75);
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }
    .popup-box-four {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 420px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      position: relative;
      text-align: center;
      animation: fadeIn 0.3s ease-in;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .popup-box-four h3 {
      margin-bottom: 15px;
      font-size: 22px;
      color: #222;
    }
    .popup-box-four input {
      width: 100%;
      margin: 10px 0;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }
    .popup-box-four button {
      background: #0073e6;
      color: #fff;
      padding: 12px;
      width: 100%;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 16px;
      transition: 0.3s;
    }
    .popup-box-four button:hover {
      background: #005bb5;
    }
    .close-four {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
      color: #444;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
      .ad-banner-four {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
      }
      .ad-banner-four .banner-four-text {
        padding: 0 0 20px;
      }
      .ad-banner-four h2 {
        font-size: 22px;
      }
      .ad-banner-four p {
        font-size: 14px;
      }
      .ad-btn-four {
        width: 100%;
      }
    }

    /* download thing css  */


    

.cutoff-section {
  margin-left: 150px;
  text-align: center; /* Center content for small screens */
}

#downloadBtn {
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 15px;
}

#downloadBtn:hover {
  background: #0056b3;
}

/* Popup Overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Popup Content */
.popup-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 350px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Form Inputs */
#cutoffForm input {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

#cutoffForm button {
  background: #28a745;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 95%;
  margin-top: 10px;
}

#cutoffForm button:hover {
  background: #218838;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
  .cutoff-section {
    margin: 12px;
    width: 400px;
  }
  #downloadBtn {
    margin-left: 0;
    width: 90%;
    padding: 12px;
    font-size: 16px;
  }
  .popup-content {
    width: 90%;
    margin: 20% auto;
    padding: 15px;
  }
  #cutoffForm input, #cutoffForm button {
    width: 100%;
    font-size: 14px;
  }
}
