/**
* 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: 100px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-left:100px;

  /* Bright gradient text */
  background: linear-gradient(90deg, #00eaff, #00c8ff, #008cff);
  -webkit-background-clip: text;
 

  /* Stronger glow */
  text-shadow: 
    0 0 8px rgba(0, 200, 255, 0.9),
    0 0 18px rgba(0, 200, 255, 0.7),
    0 0 32px rgba(0, 150, 255, 0.6);

  letter-spacing: 2px;
  animation: neonPulse 2s infinite alternate;
}

/* Glow animation */
@keyframes neonPulse {
  from {
    text-shadow: 
      0 0 6px rgba(0, 200, 255, 0.6),
      0 0 14px rgba(0, 200, 255, 0.5);
  }
  to {
    text-shadow: 
      0 0 14px rgba(0, 255, 255, 1),
      0 0 28px rgba(0, 200, 255, 0.9),
      0 0 45px rgba(0, 150, 255, 0.7);
  }
}

/* 📱 Responsive font sizes */
@media (max-width: 992px) {
  .snap-snap {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .snap-snap {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .snap-snap {
    font-size: 30px;
    letter-spacing: 1px;
  }
}


.hero h1 {
  font-size: 2.5rem;
  color: whitesmoke;
}

.hero p {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: bold;

  
}

.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: #186ebe;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 450px;
 margin:auto;
  
}

/* 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-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: #dfdfe2;
  border-color: #117fb5;
  box-shadow: none;
}

.btn-primary {
  background: #e66868;
  border: none;
  color: #ffffff;
  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: 60px;
  margin-top: -10px;
}


/* 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  */

.exam-overview {
  width: 100%;
  padding: 60px 20px;
  background: #fff; /* clean white background */
}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.overview-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #186ebe; /* highlight color */
  position: relative;
}

.overview-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0f62fe;
  margin: 12px auto 0;
  border-radius: 2px;
}

.overview-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #374151;
  text-align: justify;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .overview-title {
    font-size: 26px;
  }

  .overview-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .overview-title {
    font-size: 22px;
  }

  .overview-text {
    font-size: 15px;
  }
}


/* second section */

.exam-highlights {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  margin-top: -50px;
}

.highlight-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #186ebe;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: #f9fafc;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: #eef4ff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.highlight-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #186ebe;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
}

.highlight-card a {
  color: #0f62fe;
  font-weight: 600;
  text-decoration: none;
}

.highlight-card a:hover {
  text-decoration: underline;
}

/* third section */

 .eligibility-section {
      max-width: 900px;
      margin: auto;
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .eligibility-section h2 {
      text-align: center;
      font-size: 1.8rem;
      color: #186ebe;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .eligibility-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 15px 25px;
    }

    .eligibility-title {
      font-weight: bold;
      color: #444;
      font-size: 1.1rem;
      padding: 10px;
      background: #ffecec;
      border-radius: 8px;
    }

    .eligibility-content {
      background: #fdfdfd;
      padding: 10px 15px;
      border-left: 4px solid #b22222;
      border-radius: 6px;
      font-size: 1rem;
      color: #333;
    }

    .eligibility-content ul {
      margin: 0;
      padding-left: 18px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .eligibility-grid {
        grid-template-columns: 1fr;
      }
      .eligibility-title {
        text-align: center;
      }
    }


    /* fourth section */

       #snap-schedule-wrapper {
      width: 100%;
      background: #fff;
      padding: 30px 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    #snap-schedule-wrapper h2 {
      text-align: center;
      font-size: 1.8rem;
      color: #186ebe;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .snap-schedule-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }

    .snap-schedule-table th {
      background: #ff7171;
      color: #fff;
      padding: 12px;
      text-align: left;
      font-size: 1.1rem;
    }

    .snap-schedule-table td {
      padding: 12px;
      border-bottom: 1px solid #ddd;
      color: #333;
    }

    .snap-schedule-table tr:nth-child(even) {
      background: #f9f9f9;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .snap-schedule-table,
      .snap-schedule-table thead,
      .snap-schedule-table tbody,
      .snap-schedule-table th,
      .snap-schedule-table td,
      .snap-schedule-table tr {
        display: block;
        width: 100%;
      }

      .snap-schedule-table thead tr {
        display: none;
      }

      .snap-schedule-table td {
        padding: 10px;
        text-align: right;
        position: relative;
      }

      .snap-schedule-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        color: #444;
        text-align: left;
      }
    }

    /* fifth section  */

      #snap-syllabus {
      width: 100%;
      padding: 40px 20px;
      background: #fff;
    }

    #snap-syllabus h2 {
      text-align: center;
      font-size: 2rem;
      color: #186ebe;
      font-weight: bold;
      margin-bottom: 25px;
    }

    .syllabus-section {
      margin-bottom: 30px;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .syllabus-header {
      background: #eb6a6a;
      color: #ffffff;
      padding: 15px 20px;
      font-size: 1.2rem;
      font-weight: bold;
      cursor: pointer;
    }

    .syllabus-content {
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
      background: #fafafa;
    }

    .syllabus-content div {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 12px;
      font-size: 0.95rem;
      color: #333;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
      #snap-syllabus h2 {
        font-size: 1.6rem;
      }
      .syllabus-header {
        font-size: 1rem;
      }
    }


    /* sixth section  */

  #snap-pattern {
  width: 100%;
  padding: 40px 20px;
  background: #fff;
}

#snap-pattern .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.text-side {
  flex: 1 1 40%;
}

.text-side h2 {
  font-size: 2rem;
  color: #186ebe;
  margin-bottom: 20px;
  font-weight: bold;
}

.table-side {
  flex: 1 1 55%;
}

.pattern-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pattern-table th, .pattern-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1rem;
}

.pattern-table th {
  background: #ec6363;
  color: #fff;
  font-weight: 600;
}

.pattern-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.pattern-table td {
  border-bottom: 1px solid #eee;
}

.pattern-table tr:last-child td {
  font-weight: 600;
  background: #f3f4f6;
}

.info-box {
  margin-top: 15px;
  background: #fff8f0;
  border-left: 6px solid #b22222;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  #snap-pattern .container {
    flex-direction: column;
  }

  .pattern-table, .pattern-table thead, .pattern-table tbody, .pattern-table th, .pattern-table td, .pattern-table tr {
    display: block;
    width: 100%;
  }

  .pattern-table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
  }

  .pattern-table th {
    display: none;
  }

  .pattern-table td {
    border: none;
    padding: 12px;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
  }

  .pattern-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #b22222;
  }
}


/* eight section  */

#snap-registration {
  width: 100%;
  padding: 40px 20px;
  background: #fafafa;
}

#snap-registration h2 {
  text-align: center;
  font-size: 2rem;
  color: #186ebe;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Grid Layout */
.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal width columns */
  gap: 30px;
  align-items: stretch;
}

/* Common box style */
.process-box,
.fee-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-box h3,
.fee-box h3 {
  margin-bottom: 19px;
  font-size: 1.2rem;
  color: #dc5757;
  font-weight: bold;
}

/* Process Steps */
.process-steps {
  margin: 0;
  padding-left: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.process-steps li {
  margin-bottom: 12px;
}

.process-steps a {
  color: #b22222;
  font-weight: 600;
  text-decoration: none;
}

.process-steps a:hover {
  text-decoration: underline;
}

/* Fee Box */
.fee-box ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  font-size: 1rem;
  color: #444;
}

.fee-box li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .registration-grid {
    grid-template-columns: 1fr; /* Stack */
  }

  #snap-registration h2 {
    font-size: 1.6rem;
  }

  .process-box,
  .fee-box {
    padding: 15px 18px;
  }

  .process-steps,
  .fee-box ul {
    font-size: 0.95rem;
  }
}


/* ninth section  */

#symbiosis-institutes {
  width: 100%;
  padding: 40px 20px;
  background: #fff;
}

#symbiosis-institutes h2 {
  text-align: center;
  font-size: 2rem;
  color: #186ebe;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Grid Layout */
.institutes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Institute Card */
.institute-card {
  background: #fafafa;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.institute-card:hover {
  transform: translateY(-5px);
}

.institute-card h3 {
  font-size: 1.1rem;
  color: #c94e4e;
  margin-bottom: 12px;
}

.institute-card ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.institute-card li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  #symbiosis-institutes h2 {
    font-size: 1.6rem;
  }

  .institute-card {
    padding: 15px 18px;
  }

  .institute-card h3 {
    font-size: 1rem;
  }

  .institute-card ul {
    font-size: 0.9rem;
  }
}

/* 10th section  */

  .admission-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
    }

    .admission-section h2 {
      text-align: center;
      font-size: 29px;
      margin-bottom: 30px;
      color: #186ebe;
      font-weight: bold;
    }

    .process-line {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 20px;
      flex-wrap: wrap; /* makes it wrap on small screens */
    }

    .step-card {
      flex: 1;
      min-width: 200px;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.2s ease-in-out;
    }

    .step-card:hover {
      transform: translateY(-5px);
    }

    .step-number {
      background: #007bff;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      margin: 0 auto 15px;
    }

    .step-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #444;
    }

    .step-card p {
      font-size: 15px;
      color: #666;
    }

    @media (max-width: 768px) {
      .process-line {
        flex-direction: column;
      }
    }

    
        /* 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;
}

.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 */

