
@import url("https://cdnjs.cloudflare.com/ajax/libs/themify-icons/1.0.1/css/themify-icons.css");
/* <link rel="stylesheet" href=""> */


/* Main menu container */
.dropdown_menu {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

/* Top-level link */
.dropdown_menu > a {
  display: block;
  padding: 0px 19px;
  color: #333;
  background: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0px;
  transition: all 0.3s ease;
}

/* Hover/active on main link */
.dropdown_menu > a:hover,
.dropdown_menu.active > a {
  background-color: #ff8a00;
  color: #fff;

  /* width: 300px; */
}

/* Sub-menu container */
.dropdown_menu ul {
  position: absolute;
  top: 110%;
  left: 0;
  /* background: #fff; */
  display: none;
  min-width: 300px;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  z-index: 99;
}

/* Show dropdown on hover */
.dropdown_menu:hover > ul {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

/* Sub-menu items */
.dropdown_menu ul li {
  width: 100%;
  display: block;
  margin:12px 0px !important;
  font-size:15px;
  font-weight:500;
}

/* Sub-menu links */
.dropdown_menu ul li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
}

/* Hover on sub-menu links */
.dropdown_menu ul li a:hover {
  background-color: #ff8a00;
  color: #fff;
  padding-left: 25px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive (optional) */
@media (max-width: 768px) {
  .dropdown_menu {
    display: block;
  }
  .dropdown_menu > a {
    width: 100%;
  }
  .dropdown_menu ul {
    position: static;
    box-shadow: none;
  }
}

.footer_about_text {
    padding-top: 114px !important;
}

html{
    overflow-x:hidden !important;
}

/* General Section Style */
.testimonial_area {
  background: #fff;
  position: relative;
}

.section_title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.section_divider {
  width: 80px;
  height: 4px;
  background: #ff8a00;
  margin: 10px auto 30px;
  border-radius: 2px;
}

/* Testimonial Card */
.single_testmonial {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.single_testmonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255,138,0,0.2);
}

/* Author Image */
.author_thumb img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #ff8a00;
  object-fit: cover;
  transition: 0.3s ease;
}

.single_testmonial:hover .author_thumb img {
  transform: scale(1.05);
}

/* Comment */
.testimonial_comment {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}

/* Author Info */
.testmonial_author h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.testmonial_author span {
  color: #ff8a00;
  font-weight: 500;
  font-size: 14px;
}

/* Owl Dots */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  transition: 0.3s;
}
.owl-dot.active {
  background: #ff8a00;
}













/* ========== OUR LATEST NEWS SECTION ========== */
.our_latest_news_area {
  background: #fff;
  position: relative;
}

.section_title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.devider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.devider span {
  display: block;
  width: 40px;
  height: 4px;
  background-color: #ff8a00;
  border-radius: 2px;
}

/* News Card */
.single_news {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.single_news:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(255,138,0,0.25);
}

/* Image */
.single_news .thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.single_news:hover .thumb img {
  transform: scale(1.05);
}

/* News Content */
.news_info {
  padding: 20px;
  text-align: left;
}

.category_tag {
  display: inline-block;
  background: #ff8a00;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.news_title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.news_title:hover {
  color: #ff8a00;
}

/* Read More Link */
.read_more {
  font-size: 14px;
  font-weight: 500;
  color: #ff8a00;
  text-decoration: none;
  transition: 0.3s ease;
}

.read_more i {
  margin-left: 5px;
}

.read_more:hover {
  color: #333;
  text-decoration: underline;
}

/* Owl Dots */
.owl-dots {
  text-align: center;
  margin-top: 25px;
}
.owl-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  transition: 0.3s;
}
.owl-dot.active {
  background: #ff8a00;
}

/* ============ Unique Contact Section ============ */
.unique_contact_section {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Left Side - Form */
.contact_left {
  background: #fff;
  padding: 100px 60px;
}

.contact_form_box {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact_form_box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.contact_form_box p {
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
}

.contact_form .form_group {
  margin-bottom: 20px;
}
.contact_form .form-control {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}
.contact_form .form-control:focus {
  border-color: #ff8a00;
  outline: none;
}
.contact_form textarea.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  resize: none;
}

.btn_main {
  background: #ff8a00;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn_main:hover {
  background: #222;
}

/* Right Side - Contact Info */
.contact_right {
  position: relative;
  background: linear-gradient(135deg, #ff8a00 0%, #ff5e62 100%);
  padding: 120px 80px;
  color: #fff;
  overflow: hidden;
}
.contact_right .overlay {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2), transparent 60%);
  animation: floatWaves 8s ease-in-out infinite alternate;
}
@keyframes floatWaves {
  from { transform: translateY(0px); }
  to { transform: translateY(30px); }
}

.contact_info_content {
  position: relative;
  z-index: 2;
  max-width: 450px;
}
.contact_info_content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.info_box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 25px;
  transition: all 0.3s ease;
}
.info_box:hover {
  transform: translateX(8px);
}
.icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.info_text h5 {
  font-size: 18px;
  margin-bottom: 3px;
}
.info_text p, .info_text a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.9;
}
.info_text a:hover {
  text-decoration: underline;
}

/* Map */
.map_box iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media(max-width: 992px) {
  .contact_right, .contact_left {
    padding: 60px 30px;
  }
  .contact_right {
    text-align: center;
  }
  .info_box {
    justify-content: center;
  }
}



.about-us {
  background: #fff;
  position: relative;
}

.section_title h3 {
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

.section_title .devider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.section_title .devider span {
  width: 40px;
  height: 3px;
  background: #ff8a00;
  border-radius: 3px;
}

.about_content .about_subtitle {
  color: #ff8a00;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about_content .about_title {
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.about_text {
  color: #555;
  font-size: 16px;
}

.about_points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about_points li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.about_points i {
  color: #ff8a00;
  margin-right: 10px;
  font-size: 18px;
}

.about_btn {
  display: inline-block;
  background: #ff8a00;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about_btn:hover {
  background: #222;
  color: #fff;
}

.about_image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.about_image img {
  transition: transform 0.5s ease;
}
.about_image:hover img {
  transform: scale(1.05);
}
.image_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.5) 100%);
  border-radius: 16px;
}
.image_text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}
.image_text h4 {
  font-weight: 700;
}
.image_text p {
  font-size: 14px;
  margin: 0;
}



.cta-section {
  position: relative;
  background-image: url('assets/images/section.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color:#ff8a00;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
  color: #f1f1f1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: #ff8a00;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255,138,0,0.4);
}
.cta-btn.primary:hover {
  background-color: #e67e00;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.cta-btn.secondary:hover {
  background-color: #fff;
  color: #ff8a00;
  transform: translateY(-2px);
}

/* ======== Animation ======== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======== Responsive ======== */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
}


.course_body {
  padding-top: 15px !important;
}

.course_title h3 a {
  color:#ff8a00 !important;
}

/* ======= Popup Base ======= */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.custom-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: slideUp 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: 0.3s;
}
.close-btn:hover { color: #ff8a00; }

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.popup-form input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
}
.popup-form input:focus {
  border-color: #ff8a00;
  outline: none;
  box-shadow: 0 0 6px rgba(255,138,0,0.3);
}

.popup-btn {
  background: #ff8a00;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.popup-btn:hover {
  background: #e67e00;
}

.popup-note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
.popup-note a {
  color: #ff8a00;
  text-decoration: none;
  font-weight: 600;
}
.popup-note a:hover {
  text-decoration: underline;
}

/* ======= Animations ======= */
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.why-choose-us {
  background: #fff;
  position: relative;
}

.section_title h3 {
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

.section_title .devider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.section_title .devider span {
  width: 40px;
  height: 3px;
  background: #ff8a00;
  border-radius: 3px;
}

.why-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 35px 25px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.why-box:hover {
  background: #ff8a00;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255,138,0,0.3);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: #ff8a00;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.why-box:hover .why-icon {
  background: #fff;
  color: #ff8a00;
}
.why-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.why-box p {
  font-size: 15px;
  color: #666;
  transition: color 0.3s ease;
}
.why-box:hover p {
  color: #fff;
}

/* Section Title */
.gallery_area .section_title h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
}

.gallery_area .devider span {
  width: 40px;
  height: 3px;
  background: #ff8a00;
  display: inline-block;
  margin: 0 3px;
  border-radius: 3px;
}

/* Gallery Cards */
.gallery_card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,138,0,0.3);
}

/* Image Style */
.gallery_thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.gallery_card:hover img {
  transform: scale(1.1);
}

/* Overlay Effect */
.gallery_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,138,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

.gallery_card:hover .gallery_overlay {
  opacity: 1;
}

/* Overlay Content */
.overlay_content .view_btn {
  display: inline-block;
  background: #fff;
  color: #ff8a00;
  font-size: 20px;
  padding: 12px 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.overlay_content .view_btn:hover {
  background: #222;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery_thumb img {
    height: 220px;
  }
}



    /* ===== Main Layout ===== */
    .course-details {
        background: #f8f9fc;
        padding: 60px 0;
        
    }

    .course-details .course-title h2 {
        font-size: 30px;
        font-weight: 700;
        color: #000;
    }

    .course-details .price span {
        font-size: 22px;
        background: #ff8a00;
        color: #000;
        padding: 6px 15px;
        border-radius: 6px;
    }

    .course-details p {
        color: #000;
        line-height: 1.7;
    }

    .course-details a.btn-custom {
        background: #4CA05B;
        color: #000;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
        transition: 0.3s;
        text-decoration: none;
    }

    .course-details a.btn-custom:hover {
        background: #3b8c4a;
    }

    /* ===== Sidebar ===== */
    .sidebar-widget {
        background: #000;
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .sidebar-title h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #000;
        border-left: 4px solid #ff8a00;
        padding-left: 10px;
    }

    .sidebar-widget ul li {
        list-style: none;
        margin: 10px 0;
    }

    .sidebar-widget ul li a {
        color: #000;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

    .sidebar-widget ul li a:hover {
        color: #ff8a00;
    }

    .info-widget .icon-box {
        font-size: 40px;
        color: #ff8a00;
        margin-bottom: 10px;
    }

    .info-widget .phone a,
    .info-widget .email a {
        display: block;
        font-weight: 600;
        color: #333;
        text-decoration: none;
    }

    .info-widget .subtitle {
        font-weight: 500;
        margin-bottom: 10px;
        color: #000;
    }

    /* ===== Modal ===== */
    .modal-content {
        border-radius: 12px;
        overflow: hidden;
    }

    .modal-header {
        background: #ff8a00;
        color: #000;
        border-bottom: none;
        justify-content: space-between;
    }

    .modal-header h4 {
        margin: 0;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-body input,
    .modal-body textarea {
        border-radius: 8px;
    }

    .btn-primary {
        background: #ff8a00;
        border: none;
        border-radius: 25px;
        font-weight: 600;
    }

    .btn-primary:hover {
        background: #e07600;
    }
   .course-section {
        padding: 80px 0;
        position: relative;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border-radius: 18px;
        /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3); */
        overflow: hidden;
        padding: 40px;
        transition: 0.4s ease;
    }

    .glass-card:hover {
        /* transform: translateY(-5px); */
        /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5); */
    }

    .course-image {
        border-radius: 15px;
        overflow: hidden;
        /* box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3); */
        /* transition: all 0.4s ease; */
    }

 

    .course-title {
        font-size: 34px;
        font-weight: 700;
        margin-top: 10px;
        color: #ff8a00;
    }

    .price-tag {
        background: linear-gradient(90deg, #ff8a00, #ff4d00);
        padding: 10px 20px;
        display: inline-block;
        color: #fff;
        font-weight: 600;
        border-radius: 10px;
        margin-top: 15px;
    }

    .details-text {
        margin-top: 25px;
        color: #ddd;
        line-height: 1.7;
    }

    .btn-gradient {
        background: linear-gradient(90deg, #ff8a00, #ff4d00);
        border: none;
        color: #fff;
        border-radius: 30px;
        padding: 12px 30px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: 0.3s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 5px 20px rgba(255, 138, 0, 0.3);
    }

    .btn-gradient:hover {
        background: linear-gradient(90deg, #ff4d00, #ff8a00);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 138, 0, 0.5);
    }

    .sidebar {
        position: sticky;
        top: 100px;
    }

    .sidebar-widget {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(255, 138, 0, 0.1);
        transition: 0.3s;
    }

    .sidebar-widget:hover {
        box-shadow: 0 8px 25px rgba(255, 138, 0, 0.2);
    }

    .sidebar-widget h3 {
        font-size: 20px;
        font-weight: 600;
        color: #ff8a00;
        margin-bottom: 20px;
        border-left: 4px solid #ff8a00;
        padding-left: 10px;
    }

    .sidebar-widget ul {
        list-style: none;
        padding-left: 0;
    }

    .sidebar-widget ul li {
        margin-bottom: 10px;
    }

    .sidebar-widget ul li a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }

    .sidebar-widget ul li a:hover {
        color: #ff8a00;
    }

    .info-widget i {
        color: #ff8a00;
        font-size: 28px;
        margin-bottom: 10px;
    }

    /* === Modal === */
    .modal-content {
        background: rgba(20, 20, 20, 0.95);
        border: 2px solid #ff8a00;
        border-radius: 18px;
        box-shadow: 0 0 25px rgba(255, 138, 0, 0.3);
        color: #000;
    }

    .modal-header {
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
        background: linear-gradient(90deg, #ff8a00, #ff4d00);
        color: #000;
        border-radius: 15px 15px 0 0;
    }

    .modal-body input, 
    .modal-body textarea {
        background: rgba(255,255,255,0.1);
        border: none;
        color: #000;
        border-radius: 8px;
    }

    .modal-body input::placeholder,
    .modal-body textarea::placeholder {
        color: #bbb;
    }

    .modal-body .btn {
        background: linear-gradient(90deg, #ff8a00, #ff4d00);
        border: none;
        color: #000;
        border-radius: 30px;
        font-weight: 600;
        padding: 10px 25px;
        box-shadow: 0 0 15px rgba(255, 138, 0, 0.4);
        transition: 0.3s;
    }

    .modal-body .btn:hover {
        box-shadow: 0 0 25px rgba(255, 138, 0, 0.7);
    }

