* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
}
.navbar {
  padding: 0.8rem 0;
  background-color: #130d0d !important;
  transition: all 0.3s ease;
  border-bottom: 2px solid #e2e2e2;
  color: white;
}

.navbar-brand img {
  height: 50px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-color: white;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: #d62828;
  color: #fff !important;
}

.navbar .fab {
  background-color: #d62828;
  color: white;
  font-size: 16px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-left: 8px;
}

.navbar .fab:hover {
  background-color: #a31e1e;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
    display: inline-block;
    width: 100%;
  }

  .navbar .d-lg-flex {
    justify-content: center;
    margin-top: 10px;
  }
}
/* about us  */
.about-us-section {
  padding: 60px 0;
  background-color: #f3f2ca;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

.about-us-section h2,
.about-us-section h5 {
  font-weight: bold;
}

.about-us-section h2 {
  font-size: 32px;
}

.about-us-section p {
  font-size: 17px;
  line-height: 1.8;
}

.about-us-text ul li {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.about-us-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d62828;
  font-weight: bold;
}

/* Button Customization */
.about-us-text .btn-outline-danger {
  font-weight: 600;
  text-transform: uppercase;
  border-width: 2px;
  transition: 0.3s;
}

.about-us-text .btn-outline-danger:hover {
  background: #d62828;
  color: #fff;
}

/* Mobile image adjustment */
@media (max-width: 767.98px) {
  .img_mobile {
    width: 60%;
    margin-left: 70px;
  }
}
  /*---------- courses -------------*/
  .course-features-section {
    background: linear-gradient(135deg, #b36868, #f7d3d3);
    padding: 60px 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 32px;
    color: #b71c1c;
    margin-bottom: 40px;
  }
  
  .section-title span {
    color: #d32f2f;
    font-weight: bold;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card i {
    color: #e53935;
    font-size: 20px;
  }
  
  /* videos  */

  .our-videos {
    padding: 60px 0;
    background: #f9f9f9;
  }
  
  .section-title-2 h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
  }
  .section-title-2 h2 span {
    color: #d62828;
  }
  
  .video-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .video-wrap:hover {
    transform: translateY(-5px);
  }
  
  .video-thumb img {
    width: 100%;
    border-radius: 10px;
    display: block;
  }
  
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px 15px;
  }
  
  /*  */
  .why-art-white {
    background: linear-gradient(to right, #e4d1d1, #cff2f8);
    padding: 60px 20px;
  }
  
  .section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .why-box {
    background-color: #fff;
    border: 6px double #e60023;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .why-box:hover {
    background-color: #fef2f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 0, 35, 0.2);
  }
  
  .why-box i {
    font-size: 38px;
    color: #e60023;
    margin-bottom: 15px;
  }
  
  .why-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
  }
  
  .why-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  
  /*-------contact form-----------*/
  .contact-wrap {
    padding: 60px 20px;
    background: linear-gradient(to right, #f3edca, #f3acac);
  }
  
  .contact-container {
    max-width: 1140px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .contact-details {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-title {
    font-size: 32px;
    color: #d32f2f;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .contact-subtext {
    color: #333;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px double #d32f2f;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: 0.3s ease-in-out;
  }
  
  .contact-info-box:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #ffeaea;
  }
  
  .contact-info-box i {
    font-size: 22px;
    color: #d32f2f
  }
  .contact-info-box h4,p{
    color: #a31e1e;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #b71c1c;
  }
  
  .contact-form input,
  .contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
  }
  
  .contact-form input:focus,
  .contact-form select:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 6px rgba(211, 47, 47, 0.3);
    outline: none;
  }
  
  .contact-form button {
    margin-top: 25px;
    padding: 14px 0;
    background: #d32f2f;
    color: white;
    border: none;
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(179, 0, 0, 0.3);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-form {
      padding: 25px 20px;
      margin-left: -3%;
    }
  }
/*--------testimonial-------- */
.section-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  color: #000;
  margin-top: 5%;
}

.section-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #dc2626;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.testimonial-wrapper {
  max-width: 1000px; 
  margin: auto;
  margin-bottom: 80px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  position: relative;
  border: 1.5px solid #dc2626;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  color: #000;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #000;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
}

.testimonial-author strong {
  font-weight: 700;
  color: #000;
}

.divider {
  color: #dc2626;
  margin: 0 8px;
}

.quote-icon {
  position: absolute;
  bottom: -20px;
  right: 0.8px;
  background-color: #b91c1c;
  color: white;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 6px;
  line-height: 1;
}

.testimonial-single {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .testimonial-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .testimonial-single {
    padding: 0 16px;
    margin-top: 20px;
  }
}
  /*-------------popup------------ */
  /* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup {
  background: #fff;
  max-width: 450px;
  width: 90%;
  padding: 30px 25px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.4s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Form Slide-in Animation */
@keyframes formSlideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-slide {
  animation: formSlideIn 0.6s ease forwards;
}

/* Heading and Text */
.popup h2 {
  color: #b71c1c;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

.popup p {
  font-size: 14px;
  color: #444;
  text-align: center;
  margin-bottom: 20px;
}

/* Form Elements */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup {
  background: #fff;
  max-width: 450px;
  width: 90%;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.4s ease-in-out;
}

/* Form Slide Animation */
.form-slide {
  animation: formSlideIn 0.6s ease forwards;
}

@keyframes formSlideIn {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Heading + Text */
.popup h2 {
  color: #b71c1c;
  font-size: 26px;
  text-align: center;
  margin-bottom: 10px;
}
.popup p {
  font-size: 14px;
  color: #444;
  text-align: center;
  margin-bottom: 20px;
}

/* Input + Select */
.popup form input,
.popup form select {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  background: #f9f9f9;
}
.popup form input:focus,
.popup form select:focus {
  border-color: #d32f2f;
  background: #fff;
  box-shadow: 0 0 6px rgba(179, 0, 0, 0.3);
}

/* Button */
.popup button {
  width: 100%;
  background: #c62828;
  color: white;
  padding: 13px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.popup button:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.4);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  color: #888;
  cursor: pointer;
}
.close-btn:hover { color: #d32f2f; }

/* Responsive for Mobile */
@media (max-width: 480px) {
  .popup {
    padding: 22px 16px;
    max-width: 92%;
  }
  .popup h2 { font-size: 20px; }
  .popup p { font-size: 13px; }
  .popup form input,
  .popup form select {
    padding: 11px 12px;
    font-size: 14px;
  }
  .popup button {
    padding: 11px;
    font-size: 15px;
  }
  .close-btn {
    font-size: 20px;
    top: 10px;
    right: 14px;
  }
}
  /* blink heading */
  .blink-text {
    font-size: 22px;
    font-weight: bold;
    animation: slowBlink 3s infinite;
  }

  @keyframes slowBlink {
    0% {
      opacity: 1;
      color: #e91e63; /* Pink */
    }
    50% {
      opacity: 0;
      color: #2196f3; /* Blue */
    }
    100% {
      opacity: 1;
      color: #e91e63; /* Back to Pink */
    }
  }
  /*-----marquee--------*/
  .marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #fff3e0;
    padding: 10px 0;
    border-top: 2px solid #ff9800;
    border-bottom: 2px solid #ff9800;
  }

  .marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 22px;
    font-weight: bold;
    animation: scroll-left 18s linear infinite, blinkText 2s infinite;
    color: #d32f2f;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  @keyframes blinkText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
/* footer */
.footer-solid {
  background-color: #444040;
  color: #ffffff;
  padding: 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-box p {
  font-size: 16px;
  line-height: 1.8;
  color: white;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin: 12px 0;
}

.footer-box ul li a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-box ul li a:hover {
  color: #ffcccc;
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .footer-box {
    text-align: center;
  }
  .footer-box h2 {
    font-size: 24px;
  }
  .footer-box ul li a {
    font-size: 16px;
  }
}