/**
* 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 {
  height: 50px;
  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, rgb(97, 97, 97) 60%, transparent);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}


/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
/* Main Overview Section */
.main-overview-of-page {
  margin-top: 5rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0 5%;
  flex-wrap: wrap; /* allow columns to wrap on smaller screens */
  max-width: 1200px; /* optional max width for large screens */
  margin-left: auto;
  margin-right: auto;
}

/* Left and Right Columns */
.main-overview-of-page > div {
  flex: 1 1 45%; /* default ~45% width each */
  width: 280px; /* prevent too small columns */
  margin-right: -34px;
}

/* Right Column: Highest Package font */
.main-overview-of-page h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #fd0028;
  text-shadow: 2px 2px 4px black;
  text-align: center;
}

/* Left Column heading */
.main-overview-of-page h1:first-child {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Left Column paragraph */
.main-overview-of-page p {
  /* font-size: 1.1rem; */
  line-height: 1.6;

  color: #333;
  margin-left: -50px;
}

/* Right Column H2 */
.main-overview-of-page h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.package{
  text-align: center; 
  font-weight: 800;
   font-size: 7rem;
    color: #fd0028;
     text-shadow: black 2px 2px 4px;
}

/* Responsive Adjustments */

/* Laptops (≤1200px) */
@media (max-width: 1200px) {
  .main-overview-of-page {
    gap: 1.5rem;
  }
  .main-overview-of-page h1:first-child {
    font-size: 2.2rem;
  }
  .main-overview-of-page h2 {
    font-size: 1.8rem;
  }
  .main-overview-of-page h1 {
    font-size: 5rem;
  }
  .package{
  text-align: center; 
  font-weight: 800;
   font-size: 30px;
    color: #fd0028;
     text-shadow: black 2px 2px 4px;
}
}

/* Tablets (≤991px) */
@media (max-width: 991px) {
  .main-overview-of-page {
    flex-direction: column; /* stack columns */
    align-items: center;
    gap: 2rem;
  }

  .main-overview-of-page > div {
    width: 80%;
    text-align: center;
    margin-left:20px;
  }

  .main-overview-of-page h1:first-child {
    font-size: 2rem;
  }
  .main-overview-of-page h2 {
    font-size: 1.6rem;
  }
  .main-overview-of-page h1 {
    font-size: 4rem;
  }
  .package{
  text-align: center; 
  font-weight: 800;
   font-size: 30px;
    color: #fd0028;
     text-shadow: black 2px 2px 4px;
}
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .main-overview-of-page {
    padding: 0 3%;
    gap: 1.5rem;
  }
  .main-overview-of-page h1:first-child {
    font-size: 1.8rem;
  }
  .main-overview-of-page h2 {
    font-size: 1.4rem;
  }
  .main-overview-of-page h1 {
    font-size: 3rem;
  }
}

/* Small Mobile (≤576px) */
@media (max-width: 575px) {
  .main-overview-of-page {
    padding: 0 2%;
    gap: 1rem;
  }
  .main-overview-of-page h1:first-child {
    font-size: 1.5rem;
  }
  .main-overview-of-page h2 {
    font-size: 1.2rem;
  }
  .main-overview-of-page h1 {
    font-size: 4.2rem;
    margin-left:-43px
  }
}


/* top branch */
    h2 {
      text-align: center;
      font-size: 28px;
      margin: 30px 0;
      font-weight: bold;
      margin-top: -40px;
    }

    .branches {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px 20px 40px;
    }

    .branch-card {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      text-align: center;
      cursor: pointer;
    }

    .branch-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .branch-card img {
      width: 30px;
      height: 30px;
      margin-right: 12px;
    }

    .branch-text {
      font-size: 15px;
      font-weight: 500;
    }

    /* Mobile adjustments */
    @media (max-width: 600px) {
      h2 {
        font-size: 22px;
      }

      .branch-card {
        flex-direction: column;
        padding: 15px;
      }

      .branch-card img {
        margin: 0 0 10px 0;
      }

      .branch-text {
        font-size: 14px;
      }
    }


    /* approval and eligibility */
   h2 {
      text-align: center;
      font-size: 28px;
      margin: 40px 15px 20px;
      font-weight: bold;
    }

    .criteria {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      font-size: 16px;
      padding: 0 15px;
    }

    .approvals {
      max-width: 1100px;
      margin: 50px auto;
      padding: 0 15px;
    }

    .approval-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .approval-item {
      text-align: center;
      flex: 1 1 200px;
    }

    .approval-item img {
      width: 120px;
      height: auto;
      margin-bottom: 15px;
    }

    .approval-item p {
      font-weight: bold;
      font-size: 16px;
      margin: 0;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      h2 {
        font-size: 22px;
      }

      .criteria {
        font-size: 14px;
      }

      .approval-item img {
        width: 90px;
      }

      .approval-item p {
        font-size: 14px;
      }

      .approval-list {
        gap: 30px;
      }
    }


    /* placements */

       h2 {
      text-align: center;
      font-size: 28px;
      margin: 40px 15px 20px;
      font-weight: bold;
    }

    .placement-section {
      max-width: 1000px;
      margin: 0 auto 50px;
      padding: 0 15px;
    }

    .placement-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .placement-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .placement-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }

    .placement-value {
      font-size: 26px;
      font-weight: bold;
      color: #0073e6;
      margin-bottom: 8px;
    }

    .placement-label {
      font-size: 15px;
      color: #555;
    }

    /* Mobile responsive */
    @media (max-width: 600px) {
      h2 {
        font-size: 22px;
      }
      .placement-card {
        padding: 20px 15px;
      }
      .placement-value {
        font-size: 22px;
      }
      .placement-label {
        font-size: 14px;
      }
    }

    /* company logo */

      h2 {
      text-align: center;
      font-size: 28px;
      margin: 40px 15px 20px;
      font-weight: bold;
    }

    .slider-container {
      overflow: hidden;
      width: 100%;
      max-width: 1200px;
      margin: auto;
      position: relative;
      padding: 30px 0;
    }

    .slider-track {
      display: flex;
      gap: 50px;
      animation: scroll 20s linear infinite;
    }

    .slide {
      min-width: 150px;
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide img {
      width: 130px;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .slide img:hover {
      transform: scale(1.1);
    }

    /* Animation */
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .slider-track {
        gap: 30px;
        animation: scroll 15s linear infinite;
      }
      .slide img {
        width: 90px;
      }
    }

    /* campus life */

        .campus-life {
      padding: 50px 20px;
      text-align: center;
    }

    .campus-life h2 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .campus-life p {
      font-size: 1rem;
      margin-bottom: 40px;
      color: #555;
    }

    .life-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .life-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .life-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .life-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .life-card p {
      margin: 0;
      padding: 15px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #222;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .life-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .life-grid {
        grid-template-columns: 1fr;
      }

      .campus-life h2 {
        font-size: 1.8rem;
      }

      .life-card img {
        height: 180px;
      }

      .life-card p {
        font-size: 1rem;
      }
    }


    /* reasons */


        .reasons {
      text-align: center;
      padding: 50px 20px;
      background: #fff;
    }

    .reasons h2 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .reasons-container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 20px;
      background: #000;
      padding: 40px 20px;
      border-radius: 10px;
    }

    .reason-box {
      flex: 1 1 200px; /* responsive width */
      min-width: 220px;
      max-width: 250px;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .reasons h2 {
        font-size: 1.8rem;
      }

      .reason-box {
        min-width: 100%;
        text-align: center;
      }
    }

   /* 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;
    
    }

   
  /* MAT 2025 Eligibility Criteria */

  .mat-eligibility {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  margin-top: -480px;
}

.mat-eligibility h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #1a73e8;
  margin-bottom: 25px;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eligibility-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eligibility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.eligibility-card h3 {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.eligibility-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .mat-eligibility {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  margin-top: -79px;
}

}

    /* MAT 2025 Syllabus & Exam Pattern */

    .mat-syllabus {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
}

.mat-syllabus h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #1a73e8;
  margin-bottom: 15px;
}

.mat-syllabus .overview {
  text-align: center;
  color: #444;
  margin-bottom: 25px;
  font-size: 1rem;
}

.syllabus-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.syllabus-table th, 
.syllabus-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.syllabus-table th {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
}

.syllabus-table tr:last-child td {
  border-bottom: none;
}

.marking-scheme {
  margin-top: 25px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  font-family: 'Arial', sans-serif;
}

.marking-scheme h3 {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 20px;
  text-align: center;
}

.marking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.marking-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.marking-card .value {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.marking-card.correct .value {
  color: green;
}
.marking-card.incorrect .value {
  color: red;
}
.marking-card.neutral .value {
  color: #555;
}

.marking-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .marking-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .syllabus-table table, 
  .syllabus-table thead, 
  .syllabus-table tbody, 
  .syllabus-table th, 
  .syllabus-table td, 
  .syllabus-table tr {
    display: block;
    width: 100%;
  }
  .syllabus-table tr {
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
  }
  .syllabus-table td {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
  }
  .syllabus-table th {
    display: none;
  }
}
    

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 45px;
  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: 40px;
  background-color: #ffcc00;

    margin-left: 80px;
}

.form-container .form-title {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: bold;
}

.form-container .form-label {
  font-weight: 500;
  color: #4d4d4d;
}

.form-container .form-control {
  border-radius: 5px;
}

.form-container button[type="submit"] {
  background-color: #000000;
  color: rgb(255, 255, 255);
  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:-34px;
    margin-left: 2px;
    height: 400px;
  }

  .form-container .form-title {
    font-size: 1.2rem;
  }
}


/* style for heading in banner */
/* Hero Section */
.hero-section {
 
   margin-bottom: 50px;
   margin-right: -10px;
}


/* left side text from banner */

  /* College Title */


/* College Title */
.college-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 60px;
  margin-top: 70px;
}


.college-title .line1,
.college-title .line2 {
  color: #ffffff; /* Strong Blue */
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #fff, 4px 4px 10px rgba(0,0,0,0.3);
  display: block;
  line-height: 1rem;
}

.college-title .line1 {
  font-size: 3.5rem;
}

.college-title .line2 {
  font-size: 4rem;
  margin-top: 5px;
}

/* Admission Tag */
.admission-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 15px 0;
  letter-spacing: 1px;
}

/* Tagline */
.tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #eaeaea;
  margin-bottom: 25px;
  max-width: 500px;
  line-height: 1.4;
}

/* Highlight Text */
.highlight {
  color: #ffcc00;
  font-weight: 700;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #ffcc00, #ffaa00);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ffcc00);
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .college-title .line1 {
    font-size: 2.8rem;
  }
  .college-title .line2 {
    font-size: 3.2rem;
  }
  .admission-text {
    font-size: 1.5rem;
  }
  .tagline {
    font-size: 1.1rem;
    max-width: 400px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  .college-title .line1 {
    font-size: 2.2rem;
  }
  .college-title .line2 {
    font-size: 2.6rem;
  }
  .admission-text {
    font-size: 1.3rem;
  }
  .tagline {
    font-size: 1rem;
    max-width: 300px;
  }
  .cta-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

@media (max-width: 576px) {
  .college-title .line1 {
    font-size: 1.8rem;
    margin-top: -85px;
    margin-bottom: -20px;
  }
  .college-title .line2 {
    font-size: 2.2rem;
  }
  .admission-text {
    font-size: 1.1rem;
  }
  .tagline {
    font-size: 0.95rem;
    max-width: 250px;
    margin-left: 47px;
  }
  .cta-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}




  /* another */
.mat-highlights {
  max-width: 800px;
  margin: -71px 10;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
margin-left: 300px;

}

.mat-highlights h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 25px;
}

.highlight-table {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 25px;
}

.highlight-table .row {
  display: contents;
}

.highlight-table .param {
  font-weight: 600;
  color: #333;
}

.highlight-table .details {
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .highlight-table {
    grid-template-columns: 1fr;
  }
  .highlight-table .param {
    font-weight: 700;
    margin-top: 15px;
  }
  .highlight-table .details {
    margin-bottom: 10px;
  }
  .mat-highlights {
  max-width: 800px;
  margin: -71px 10;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-left: -2px;


}
}


/* 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%;
  height: 700px; /* adjust as needed */
  
  /* Background image settings */

  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;
}

@media (max-width: 768px) {

  .hero {
  /* Full width and height */
  width: 100%;
  height: 917px; /* 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;
}
}



/* Syllabus Insights */

.syllabus-insights {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
}

.syllabus-insights h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #1a73e8;
  margin-bottom: 25px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.insight-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.insight-card h3 {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.insight-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .syllabus-insights h2 {
    font-size: 1.5rem;
  }
  .insight-card {
    padding: 15px;
  }
}

   
    /* MAT 2025 Exam Dates */

   .mat-dates {
  max-width: 700px;
  margin: 30px auto;
  padding: 15px;
  font-family: 'Arial', sans-serif;
  height: 959px;
}

.mat-dates h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #1a73e8;
}

.mat-dates table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mat-dates th, 
.mat-dates td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.mat-dates th {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
}

.mat-dates tr:last-child td {
  border-bottom: none;
}

.mat-dates td {
  color: #333;
  font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .mat-dates table, 
  .mat-dates thead, 
  .mat-dates tbody, 
  .mat-dates th, 
  .mat-dates td, 
  .mat-dates tr {
    display: block;
    width: 100%;
  }
  .mat-dates tr {
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
  }
  .mat-dates td {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  .mat-dates td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #1a73e8;
  }
}

/* How to Apply for MAT 2025? */

   .apply-section {
      max-width: 900px;
      margin: auto;
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .apply-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 20px;
      color: #0056b3;
    }

    .apply-section p {
      font-size: 1rem;
      margin-bottom: 15px;
      text-align: center;
    }

    .fee-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 20px;
    }

    .fee-card {
      background: #f0f7ff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid #d6e4f0;
      transition: transform 0.3s ease;
    }

    .fee-card:hover {
      transform: translateY(-5px);
    }

    .fee-card h3 {
      font-size: 1.2rem;
      color: #222;
      margin-bottom: 10px;
    }

    .fee-card p {
      font-size: 1.1rem;
      font-weight: bold;
      color: #007bff;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
      .fee-table {
        grid-template-columns: 1fr;
      }
    }



    /* 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: 280px;
}

.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: 400px;
}
}

.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;
  }
}


/* Colleges Accepting MAT Score */

  .college-section {
      max-width: 1100px;
      margin: auto;
      margin-top: 50px;
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .college-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 20px;
      color: #0056b3;
    }

    .college-section p {
      text-align: center;
      font-size: 1rem;
      margin-bottom: 25px;
    }

    .college-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .college-card {
      background: #f0f7ff;
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #d6e4f0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .college-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .college-card h3 {
      font-size: 1rem;
      font-weight: normal;
      margin: 0;
      color: #222;
    }

    /* Mobile friendly */
    @media (max-width: 600px) {
      .college-section {
        padding: 15px;
      }
      .college-card {
        text-align: center;
      }
    }
        


/* MAT 2025 Admission Process */

 .admission-process {
      max-width: 1200px;
      margin: auto;
margin-top: 50px;
height: 300px;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 5 4px 12px rgba(0,0,0,0.08);
      margin-bottom: 40px;
    }

    .admission-process h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #0056b3;
    }

    .steps-line {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      align-items: start;
      text-align: center;
    }

    .step {
      background: #f0f7ff;
      border: 1px solid #d6e4f0;
      padding: 20px 15px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

    .step-number {
      background: #0056b3;
      color: #fff;
      font-weight: bold;
      font-size: 1.2rem;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px auto;
    }

    .step p {
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.4;
    }

    /* Mobile friendly */
    @media (max-width: 900px) {
      .steps-line {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .steps-line {
        grid-template-columns: 1fr;
      }

       .admission-process {
      max-width: 1200px;
      margin: auto;
margin-top: 50px;
height: 921px;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 5 4px 12px rgba(0,0,0,0.08);
      margin-bottom: 40px;
    }
    }

/* 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;
  height: 170px;
  font-size:20px;
}

 @media (max-width: 768px) {
.ads-banner.style1 {
  background: linear-gradient(90deg,#004080,#0073e6);
  color:#fff;
  text-align:center;
  padding:40px 20px;
  height: 368px;
   font-size:20px;
}
 }
.ads-banner.style1 h2 {margin-bottom:10px; color: whitesmoke; margin-top: -10px;}
.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%;
      height: 180px;
    }
    .cat-ad-overlay h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: 700;
      margin-top: -10px;
    }
    .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: 24px 8px;
      }
      .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;
      margin-top: -20px;
    }
    .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: 32px 0px;
      }
      .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%;
        margin-top: -20px;
      }
    }

    /* 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: 30px;
  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: 338px;
  }
  #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;
  }
}

/* nav bar */

/* Navbar Styling */
.navbar {
  background: #ffffff; /* White background */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0.8rem 1rem;
  z-index: 1000;
}

/* Logo */
.navbar-brand img {
  max-height: 50px;
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 30px;
  color: #000000;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

/* Hover & Active Effect */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #e7c737; /* Primary blue highlight */
}

.navbar-nav .nav-link.active {
  color: #007bff;
  font-weight: 600;
}

/* Phone number style */
.navbar a[href^="tel:"] {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}

.navbar a[href^="tel:"]:hover {
  color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    display: block;
    margin: 10px 0;
    font-size: 1.1rem;
  }

  .navbar a[href^="tel:"] {
    margin-top: 10px;
    display: inline-block;
  }
}
