/**
* 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: 79px;
  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, #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: #FFF7ED;
  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: #1f3c88;
  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: #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  */


.srmjee-clean {
  padding: 60px 20px;
}

.srmjee-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 45px;
  align-items: center;
}

/* IMAGE */
.srmjee-img img {
  width: 400px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* CONTENT */
.srmjee-content h2 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #111;
}

.srmjee-content h2 span {
  color: #7a1f2b; /* dark maroon accent */
}

.srmjee-content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #7a1f2b;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.srmjee-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 16px;
}

.srmjee-content strong {
  color: #000;
  font-weight: 600;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .srmjee-container {
    flex-direction: column;
  }

  .srmjee-content h2 {
    font-size: 26px;
  }
}



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

.exam-highlights {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.exam-highlights h2 {
  font-size: 40px;
  margin-bottom: 35px;
  color: #111;
}

.exam-highlights h2 span {
  color: #7a1f2b; /* dark maroon accent */
  font-size: 50px;
}

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

/* Card */
.highlight-item {
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: #7a1f2b;
  transform: translateY(-3px);
}

/* Label */
.highlight-item span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-weight: bold;
  color: #7a1f2b;
  margin-bottom: 6px;
}

/* Value */
.highlight-item p {
  font-size: 15px;
  color: #000000;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}

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

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

  .exam-highlights h2 {
    font-size: 26px;
  }
}






/* highlights */

.srm-grid-clean {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

.srm-grid-clean h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #111;
}

.srm-grid-clean h2 span {
  color: #7a1f2b;
  font-size: 50px;
}

/* Grid Layout */
.grid-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
}

/* Row */
.grid-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6e6e6;
}

/* Label */
.label {
  font-weight: bold;
  color: #111;
  font-size: 17px;
}

/* Value */
.value {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

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

/* 📱 Mobile */
@media (max-width: 600px) {
  .srm-grid-clean h2 {
    font-size: 26px;
  }

  .grid-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}



/* campus */

.srm-campuses {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

.srm-campuses h2 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #111;
}

.srm-campuses h2 span {
  color: #7a1f2b;
  font-size: 50px;
}

/* Intro */
.campus-intro {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Grid */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 40px;
}

/* Row */
.campus-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6e6e6;
}

/* Campus Name */
.campus-name {
  font-weight: bold;
  font-size: 18px;
  color: #111;
}

/* Description */
.campus-desc {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-left: 20px;
}

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

/* 📱 Mobile */
@media (max-width: 600px) {
  .srm-campuses h2 {
    font-size: 26px;
  }

  .campus-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .campus-name {
    font-size: 15px;
  }
}





/* admission process */

.srm-admission {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.srm-admission h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: #111;
  margin-left: 50px;
}

.srm-admission h2 span {
  color: #7a1f2b;
  font-size: 50px;
  text-align: center;
}

/* Intro */
.admission-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}

.admission-intro a {
  color: #7a1f2b;
  font-weight: 600;
  text-decoration: none;
}

.admission-intro a:hover {
  text-decoration: underline;
}

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

/* Step */
.admission-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6e6e6;
}

/* Step Number */
.step-no {
  font-size: 28px;
  font-weight: 700;
  color: #7a1f2b;
  line-height: 1;
}

/* Content */
.step-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #111;
}

.step-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

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

/* 📱 Mobile */
@media (max-width: 600px) {
  .srm-admission h2 {
    font-size: 26px;
  }

  .step-no {
    font-size: 22px;
  }
}


/* faq */

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .faq-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #7a1f2b; /* SRM blue */
    font-size: 40px;
  }

  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    transition: transform 0.3s;
  }

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

  .faq-answer {
    margin-top: 10px;
    display: none;
    line-height: 1.6;
  }

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

  .cta {
    margin-top: 30px;
    text-align: center;
  }

  .cta a {
    display: inline-block;
    background: #0072ce;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }

  .cta a:hover {
    background: #005bb5;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .faq-container {
      padding: 20px;
    }

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

    .cta a {
      padding: 12px 20px;
      font-size: 14px;
    }
  }

/* 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: 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 */

