/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* 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: "Open Sans",  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: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* 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: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --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);
}







/*--------------------------------------------------------------
# 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: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

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



/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

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

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

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

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

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

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


/* my css code */

/* Hero Section General Styling */
.hero {
  padding: 60px 0;
  color: #fff;
  position: relative;
  background: url("") center center/cover no-repeat;
}

/* Overlay for transparency */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust transparency (0.1 = light, 0.7 = dark) */
  z-index: 1;
}

/* Make sure content is above overlay */
.hero > * {
  position: relative;
  z-index: 2;
}


.snap-snap {
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffeb3b;
  position: relative;
  display: inline-block;
  margin: 25px auto;
  padding-bottom: 12px;

  animation: slideIn 1s ease-out;
}

/* Accent underline */
.snap-snap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #ffffff, #ffc400);
  border-radius: 5px;
  transform: translateX(-50%);
  animation: lineGrow 1.2s ease-out;
}

/* Entrance animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Underline animation */
@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .snap-snap {
    font-size: 54px;
    letter-spacing: 3px;
  }
  
}

@media (max-width: 768px) {
  .snap-snap {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .snap-snap::after {
    width: 60px;
    height: 5px;
  }

  
}

@media (max-width: 480px) {
  .snap-snap {
    font-size: 47px;
    letter-spacing: 1px;
    margin-top: -30px;
  }

  .snap-snap::after {
    width: 45px;
    height: 4px;
  }

  
}



.hero h1 {
  font-size: 2.5rem;
  color: whitesmoke;
}

.hero p {
  margin-top: 10px;
  font-size: 35px;
  line-height: 1.6;
  color: #F5F1E8;
  font-weight: bold;
  margin-left: 50px;

  
}

.hero .btn-get-started {
  margin-right: 15px;
  padding: 10px 20px;
  background: #5cb85c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}


/* banner form */

.form-title{
  color: whitesmoke;
  text-align: center;
  margin-bottom: 30px;
}
.hero-form {
  background: #1a237e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 500px;
  margin-left: 90px;
  height: 450px;
  margin-top: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-form {
    padding: 15px;
    margin: 15px auto;
    width: 90%;   /* shrink on tablets/mobiles */
    margin-left: -40px;
  }
}

@media (max-width: 480px) {
  .hero-form {
    padding: 12px;
    width: 95%;   /* almost full width on small phones */
    margin-left: 10px;
  }

  .hero p {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: bold;

  
}
}

.hero-form h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: black;
}

.form-label {
  color: black;
}

.form-control {
  background: whitesmoke;
  border: 1px solid #555;
  color: #fff;
}

.form-control:focus {
  background: #FBBF24;
  border-color: #117fb5;
  box-shadow: none;
}

.btn-primary {
  background: #FBBF24;
  border: none;
  color: #000000;
  font-weight: bold;
}

.btn-primary:hover {
  background: blue;
}


.card-text {
  font-weight: normal; /* Ensures the text is not bold */
  font-size: 1rem; /* Adjust the font size as needed */
  line-height: 1.6; /* Improves readability */
  color: #333; /* Optional: Adjust text color for better readability */
}
/* banner btn contact */

.btn-custom {
  background: linear-gradient(90deg, #0f62fe, #2563eb);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-align: center;
  margin-left: 100px;
  margin-top: 50px;
}


/* Hover effect */
.btn-custom:hover {
  background: linear-gradient(90deg, #2563eb, #0f62fe);
  transform: translateY(-2px);
}

/* Mobile responsive */
@media(max-width: 768px) {
  .btn-custom {
    width: 100%;        /* Full width button on mobile */
    padding: 14px 0;    /* Adjust padding */
    font-size: 15px; 
    margin-left: -1px; /* Slightly bigger text for mobile */
    margin-top: 10px;
  }

  .d-flex {
    width: 100%;
    display: flex;
    justify-content: center; /* Center button on small screens */
  }

  
}


/* about  */

.slat-section-full {
  width: 100%;
  background: linear-gradient(135deg, #f4f7ff, #eef1ff);
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

/* Keeps content readable inside full width */
.slat-inner {
  max-width: 1200px;
  margin: auto;
}

.slat-inner h2 {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 18px;
}

.slat-inner h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #3f51b5;
  display: block;
  margin-top: 10px;
  border-radius: 3px;
}

.intro {
  font-size: 19px;
  color: #222;
  margin-bottom: 30px;
  max-width: 900px;
}

.slat-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  max-width: 1000px;
}

.slat-points {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slat-points li {
  background: #ffffff;
  padding: 16px;
  text-align: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #303f9f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.highlight {
  background: #ffffff;
  padding: 22px;
  border-left: 6px solid #3f51b5;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  max-width: 1000px;
}

/* 📱 Mobile Responsive */
@media (max-width: 992px) {
  .slat-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .slat-inner h2 {
    font-size: 28px;
  }

  .intro {
    font-size: 16px;
  }

  .slat-content p,
  .highlight {
    font-size: 15px;
  }

  .slat-points {
    grid-template-columns: 1fr;
  }
}


/* <!-- Exam hightlights --> */

.sls-highlights {
  width: 100%;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.highlights-inner {
  max-width: 1200px;
  margin: auto;
  color: #ffffff;
}

.highlights-inner h2 {
  font-size: 36px;
  margin-bottom: 45px;
  text-align: center;
  position: relative;
  color: whitesmoke;
}

.highlights-inner h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffca28;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
}

.highlight-box span {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #ffeb3b;
  margin-bottom: 12px;
}

.highlight-box p {
  font-size: 15.5px;
  line-height: 1.5;
}

/* 📱 Responsive */
@media (max-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .highlights-inner h2 {
    font-size: 28px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-box span {
    font-size: 30px;
  }
}

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

  .highlight-box {
    padding: 24px 16px;
  }
}


/* course */

.sls-campuses {
  width: 100%;
  background: #f5f7fb;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.campuses-inner {
  max-width: 1200px;
  margin: auto;
}

.campuses-inner h2 {
  text-align: center;
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 50px;
}

.campuses-inner h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #3f51b5;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.campus-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.campus-card h3 {
  color: #283593;
  font-size: 20px;
  margin-bottom: 12px;
}

.campus-card p {
  font-size: 15.5px;
  color: #444;
  margin-bottom: 12px;
}

.campus-card ul {
  padding-left: 18px;
}

.campus-card ul li {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.seat-info {
  margin-top: 50px;
  text-align: center;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #ffffff;
  padding: 22px;
  border-radius: 14px;
  font-size: 17px;
}

.seat-info span {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-top: 6px;
}

/* 📱 Mobile Responsive */
@media (max-width: 992px) {
  .campus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .campuses-inner h2 {
    font-size: 28px;
  }

  .campus-card {
    padding: 22px;
  }

  .seat-info {
    font-size: 15px;
  }
}




/* admission */

.admission-process {
  width: 100%;
  background: linear-gradient(135deg, #f4f6ff, #eef1ff);
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.process-inner {
  max-width: 1200px;
  margin: auto;
}

.process-inner h2 {
  text-align: center;
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 60px;
}

.process-inner h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #3f51b5;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

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

.step-number {
  position: absolute;
  top: -18px;
  left: 28px;
  background: #3f51b5;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-card h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #283593;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.7;
}

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

@media (max-width: 600px) {
  .process-inner h2 {
    font-size: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 28px 22px;
  }

  .step-number {
    left: 22px;
  }
}



/* eligibility */

.eligibility-section {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  padding: 70px 20px;
  font-family: "Segoe UI", sans-serif;
}

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

.eligibility-inner h2 {
  text-align: center;
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 40px;
}

.eligibility-inner h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #3f51b5;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.eligibility-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

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

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 18px;
}

.eligibility-list li:last-child {
  margin-bottom: 0;
}

.icon {
  color: #3f51b5;
  font-size: 18px;
  margin-right: 14px;
  margin-top: 4px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .eligibility-inner h2 {
    font-size: 28px;
  }

  .eligibility-box {
    padding: 26px;
  }

  .eligibility-list li {
    font-size: 15.5px;
  }
}






/* <!-- admission process --> */

.admission-process {
  width: 100%;
  padding: 80px 5%;
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}

/* CTA Box */
.admission-cta {
  background: linear-gradient(135deg, #7a2e2e, #b54a4a);
  color: #fff;
  padding: 35px 40px;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.admission-cta h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.admission-cta p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #7a2e2e;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffeaea;
}

/* Title */
.admission-process h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 45px;
  color: #111;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Step Card */
.process-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.15);
}

/* Step Number */
.process-card span {
  position: absolute;
  top: -18px;
  left: 25px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #7a2e2e, #c15a5a);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.process-card h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #222;
}

.process-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

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

  .admission-process h2 {
    font-size: 24px;
  }

  .admission-cta {
    padding: 28px 22px;
  }
}



/* faq */

  .faq-section {
  width: 100%;
  padding: 80px 5%;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

/* FAQ item */
.faq-item {
  max-width: 900px;
  margin: 0 auto 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(135deg, #304e7e, #304e7e);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  padding: 20px 24px;
  font-size: 15px;
  color: #444;
  background: #f9f9f9;
  line-height: 1.7;
  display: none;
}

/* Active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 18px;
  }
}






/* Banner Section */


    .ad-banner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #f5f5f5;
      padding: 20px 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      margin: 20px auto;
      max-width: 1000px;
    }

    .banner-text {
      flex: 1;
    }

    .banner-text h2 {
      margin: 0 0 10px;
      font-size: 24px;
      color: #222;
    }

    .banner-text p {
      margin: 0;
      font-size: 16px;
      color: #555;
    }

    .banner-btn {
      margin-left: 20px;
    }

    .banner-btn button {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .banner-btn button:hover {
      background: #0056b3;
    }

    /* Popup */
    .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: 1000;
    }

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

    .popup-content h3 {
      margin-bottom: 15px;
      font-size: 22px;
      color: #333;
    }

    .form-control {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .submit-btn {
      width: 100%;
      padding: 12px;
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    .submit-btn:hover {
      background: #0056b3;
    }

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

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .ad-banner {
        flex-direction: column;
        text-align: center;
      }
      .banner-btn {
        margin: 15px 0 0;
      }
    }


/* General Footer Styles */

.site-footer {
  background-color: #333;
  color: white;
  padding: 50px 0;
  height: 50px;
}

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

/* 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;
  margin-left: 40px;
}

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

/* planedu last part of content */

