/**
* 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: 70px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffffff;
  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, #4136bd, #7b6cff);
  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: #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: #db2f2f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 500px;
  margin-left: 90px;
}

/* 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: #dfdfe2;
  border-color: #117fb5;
  box-shadow: none;
}

.btn-primary {
  background: #272626;
  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: 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  */

.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: #ff3131; 
  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: #ff3131;
}

.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: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 1rem;
  color: #374151;
  margin: 0;
}

.highlight-card a {
  color: #0f62fe;
  font-weight: 600;
  text-decoration: none;
}

.highlight-card a:hover {
  text-decoration: underline;
}


/* course */


.vit-courses{
padding:24px;
background:#f6f8fc;
}
.section-title{
font-size:2.1rem;
margin-bottom:6px;
color:#ff3131;
font-weight: bold;
margin-top: 60px;
}
.section-note{
font-size:.95rem;
color:#000000;
margin-bottom:20px;
text-align: center;
}
.vit-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:16px;
}
.vit-card{
background:#fff;
border-radius:14px;
padding:16px;
box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.vit-card h3{
margin:0 0 4px;
color:#ff3131;
font-size:1.3rem;
font-weight: bold;
}
.vit-card span{
display:block;
font-size:.85rem;
color:#777;
margin-bottom:10px;
}
.vit-card ul{
list-style:none;
padding:0;
margin:0;
}
.vit-card ul li{
background:#f9fafc;
padding:8px 10px;
margin-bottom:8px;
border-left:4px solid #f4b400;
border-radius:8px;
font-size:.9rem;
}
@media(max-width:600px){
.section-title{font-size:1.3rem}
.vit-card ul li{font-size:.88rem}
}

/* eligibility */

.viteee-eligibility-grid{
padding:26px;
background:#f5f7fb;
border-radius:18px;
}
.eligibility-title{
margin:0 0 6px;
font-size:2.1rem;
font-weight: bold;
color:#ff3131;
margin-top: 60px;
}
.eligibility-intro{
margin:0 0 22px;
color:#000000;
font-size:.96rem;
text-align: center;
font-weight: bold;
}
.eligibility-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
}
.eligibility-box{
background:#ffffff;
padding:18px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.25s ease;
}
.eligibility-box:hover{
transform:translateY(-4px);
}
.eligibility-box h3{
margin:0 0 8px;
font-size:1.3rem;
font-weight: bold;
color:#ff3131;
}
.eligibility-box p{
margin:0;
font-size:.1.2rem;
color:#444;
line-height:1.5;
}
.eligibility-box.highlight{
border-left:6px solid #f4b400;
background:linear-gradient(180deg,#fffdf5,#ffffff);
}
@media(max-width:600px){
.eligibility-title{font-size:1.35rem}
.eligibility-box{padding:16px}
}



/* admission process */

/* Main Section */
.viteee-process-grid{
  padding:30px;
  background:#f6f8fc;
  border-radius:8px;
}

/* Main Title */
.grid-title{
  font-size:2rem;
  font-weight:700;
  text-align:center;
  color:#ff3131;
  margin-bottom:6px;
}

/* Subtitle */
.grid-sub{
  text-align:center;
  font-size:.95rem;
  color:#000000;
  font-weight: bold;
  margin-bottom:28px;
}

/* Row Headings */
.row-heading{
  font-size:1.25rem;
  font-weight:600;
  color:#ff3131;
  margin:30px 0 16px;
  padding-left:14px;
  position:relative;
}

.row-heading::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:5px;
  height:70%;
  background:#f4b400;
  border-radius:4px;
}

/* Grid Layout */
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* Cards */
.process-card{
  background:#ffffff;
  padding:20px 18px;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  text-align:center;
  transition:.25s ease;
}

.process-card:hover{
  transform:translateY(-6px);
}

/* Icons */
.process-card .icon{
  font-size:1.8rem;
  margin-bottom:8px;
}

/* Step Badge */
.process-card .step{
  display:inline-block;
  font-size:.75rem;
  padding:4px 12px;
  border-radius:999px;
  background:#e8efff;
  color:#000000;
  margin-bottom:8px;
  font-weight:600;
}

/* Card Title */
.process-card h3{
  margin:6px 0 8px;
  font-size:1.05rem;
  color:#ff3131;
  font-weight: bold;
}

/* Card Text */
.process-card p{
  margin:0;
  font-size:.92rem;
  color:#444;
  line-height:1.5;
}

/* Highlight Card */
.process-card.highlight{
  border:2px solid #f4b400;
  background:linear-gradient(180deg,#fffdf4,#ffffff);
}

/* Tablet */
@media(max-width:992px){
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .process-grid{
    grid-template-columns:1fr;
  }

  .grid-title{
    font-size:1.4rem;
  }

  .row-heading{
    font-size:1.1rem;
  }

  .viteee-process-grid{
    padding:22px;
  }
}

/* placement */

/* Placement Section */
.vit-placement{
  background:#f6f8fc;
  padding:32px;
  border-radius:10px;
}

/* Title */
.placement-title{
  text-align:center;
  font-size:2rem;
  font-weight:700;
  color:#ff3131;
  margin-bottom:6px;
}

/* Subtitle */
.placement-sub{
  text-align:center;
  font-size:.95rem;
  color:#000000;
  margin-bottom:28px;
}

/* Grid */
.placement-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* Cards */
.placement-card{
  background:#ffffff;
  padding:22px 18px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  transition:.25s ease;
}

.placement-card:hover{
  transform:translateY(-6px);
}

/* Icons */
.placement-card .icon{
  font-size:2rem;
  margin-bottom:10px;
}

/* Card Title */
.placement-card h3{
  font-size:1.8rem;
  margin-bottom:8px;
  color:#0b3c8a;
}

/* Card Text */
.placement-card p{
  font-size:.92rem;
  color:#444;
  line-height:1.5;
  margin:0;
}

/* Highlight Card */
.placement-card.highlight{
  border:2px solid #f4b400;
  background:linear-gradient(180deg,#fffdf4,#ffffff);
}

/* Tablet */
@media(max-width:992px){
  .placement-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .placement-grid{
    grid-template-columns:1fr;
  }

  .placement-title{
    font-size:1.4rem;
  }

  .vit-placement{
    padding:22px;
  }
}


/* why viteee */


/* Section */
.why-vit{
  background:#ffffff;
  padding:40px 24px;
}

/* Wrapper */
.why-vit-wrapper{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:28px;
  align-items:center;
}

/* Left Content */
.why-vit-content h2{
  font-size:2rem;
  color:#ff3131;
  font-weight: bold;
  margin-bottom:10px;
}

.why-intro{
  font-size:.95rem;
  color:#000000;
  margin-bottom:20px;
  line-height:1.6;
}

/* Points */
.why-points{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.point{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:#f6f8fc;
  padding:14px 16px;
  border-radius:14px;
}

.point .icon{
  font-size:1.5rem;
  margin-top:2px;
}

.point p{
  margin:0;
  font-size:.95rem;
  color:#333;
  line-height:1.5;
}

/* Right Image */
.why-vit-image img{
  width:500px;
  height: 500px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  object-fit:cover;
  display:block;
}

/* Tablet */
@media(max-width:992px){
  .why-vit-wrapper{
    grid-template-columns:1fr;
  }

  .why-vit-image{
    margin-bottom:20px;
  }
}

/* Mobile */
@media(max-width:600px){
  .why-vit-content h2{
    font-size:1.5rem;
  }

  .why-vit{
    padding:28px 16px;
  }
}



    
        /* 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: #db2f2f;
  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 */

