body{
    font-family: 'nunito';
    background-color: #F7F7F7;
}


.adnav {
  background: #000; /* Semi-transparent black */
  padding: 0.5rem 0;
  border-bottom: 2px solid #FFC500; /* Yellow bottom stroke */
}


.contact-button{
    background-color: #FFC500;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: 0.3s background-color;
}

.contact-button:hover{
    background-color: #ffcf32;
    color: #000;
}

.navbar-toggler{
    border: none;
    font-size: 1.25rem;
}
.navbar-toggler-icon{
  --bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}

.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}

/* Custom Close Button Styles */
.btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 1 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
  width: 0.5em;
  height: 0.5em;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1 !important;
  transition: opacity 0.2s ease-in-out;
}


.nav-link{
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
}

.nav-link:hover, .nav-link:active{
    color: #FFC500;
}

.nav-link::before{
    content: "";
    position: absolute;
    bottom: 0;
    transition: translateX(-50%);
    width: 80%;
    height: 0.125rem;
    background-color: #FFC500;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.nav-link:hover::before, .nav-link:active::before{
    width: 80%;
    visibility: visible;
}

@media (min-width: 1440px) {
  .adnav {
    padding: 1rem 3rem 1rem 3rem;
  }
}

@media (min-width: 1024px) {
  .adnav {
    padding: 1rem 3rem 1rem 3rem;
  }
}
@media (min-width: 768px) {
  .adnav {
    padding: 0.2rem 2rem 0.2rem 2rem;
  }
}

/* carousel section */

/* Inactive indicators */
.carousel-indicators button {
  background-color: #FFC500 !important;
  opacity: 10 !important;
  width: 1rem !important;
  height: 1rem !important;
  border-radius: 50% !important;
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Active indicator */
.carousel-indicators .active {
  background-color: #ffffff !important; /* Terracotta */
  opacity: 1;
}


/* Services section */

.service-section {
    /* background: url('images/bgimg.jpg') no-repeat center center; */
    background-size: cover;
    background-color: black;
    color: white;
    text-align: center;
    padding: 70px 20px;
  }
  
  .service-heading {
    font-weight: bold;
    font-size: 2rem;
    color: #FFC500; /* Yellow color for heading */
    text-transform: uppercase;
    position: relative;
  }
  
  .service-heading::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background-color: #ffffff;
    margin: 10px auto 0;
  }

  .service-paragraph {
    font-size: 1.6rem;
    font-weight: 100;
    margin-top: 40px;
    line-height: 1.4;
    text-align: justify;
  }

/* card section */

.courses-heading{
  font-weight: bold;
  font-size: 2rem;
  color: #000; /* Yellow color for heading */
  text-transform: uppercase;
  position: relative;
}

.courses-heading::after {
  content: '';
  display: block;
  width: 220px;
  height: 4px;
  background-color: #FFC500;
  margin: 10px auto 0;
}

/* Section Styling */
#courses {
  background-color: #F7F7F7;
  padding: 3rem 0;
  text-align: center;
}

/* Card Styling */
.courses1 {
  background-color: #000;
  color: #FFC500;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.courses1:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.courses-img {
  height: 290px; /* Increased height for the card image */
  object-fit: cover;
  border: none;
  border-bottom: 5px solid #ffd700;
  border-radius: 0.75rem 0.75rem 0 0;
}

.course-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.course-text {
  font-size: 1rem;
  color: #F7F7F7;
}



/* contact section */


.contact-heading{
  font-weight: bold;
  font-size: 2rem;
  color: #000; /* Yellow color for heading */
  text-transform: uppercase;
  position: relative;
}

.contact-heading::after {
  content: '';
  display: block;
  width: 200px;
  height: 4px;
  background-color: #FFC500;
  margin: 10px auto 0;
}

/* Card Styling */

.palakkad{
  background-color: #000;
}
.address {
  text-align: left; 
  padding: 20px;
}

.address h2 {
  color: #ffdd00; 
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left; 
}

.address h4 {
  color: #F7F7F7; /* Light gray for subheadings */
  font-weight: bold;
  margin-bottom: 8px;
}

.card-body p {
  color: #F7F7F7; /* Softer gray for body text */
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left; /* Left align paragraph text */
}


/* Button Styling */
.whatsApp {
  text-decoration: none;
  background-color: #28a745; 
  border: none;
  border-radius: 8px; 
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsApp:hover {
  background-color: #218838; 
  transform: scale(1.05); 
}

.whatsApp:active {
  background-color: #1e7e34; 
  transform: scale(0.98); 
}

/* Map Styling */
iframe {
  border: 2px solid #ffdd00; 
  border-radius: 10px; 
  width: 100%;
  height: 350px;
  overflow: hidden;
}

/* Responsive Design */
/* @media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
  iframe {
    margin-bottom: 20px; 
  }
} */


/* footer section */

footer {
  background-color: #000;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.footer-divider {
  height: 2px;
  background-color: #ffd700;
  margin: 20px auto;
  width: 100%;
}

.footer-logo img {
  max-width: 250px;
  margin-bottom: 40px;
}

.footer-logo p {
  font-size: 1rem;
  padding-bottom: 2rem;
  margin: 8px 0 8px;
  line-height: 2rem;
}

.footer-section h5 {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d8d8d8;
}

.footer-links a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 20px;
}

.supporting p{
  font-family: 'Lato';
  font-size: 1.14rem;
  font-weight: bold;
  color: #fff;
}