/**********************************/
/********** General CSS ***********/
/**********************************/
/* ========== GLOBAL BODY & TEXT ========== */
body {
  color: #4c1f7a;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== LINKS ====== */
a {
  color: #219b9d;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: #666666;
  outline: none;
  text-decoration: none;
}

/* ====== TEXT ELEMENTS ====== */
p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #666666;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ====== BACK TO TOP BUTTON ====== */
.back-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: #555;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  display: none;
  z-index: 999;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top i {
  color: #ffffff;
  font-size: 20px;
  vertical-align: middle;
}

.back-to-top:hover {
  background: #219b9d;
  transform: scale(1.05);
}

/* ====== MEDIA QUERIES: RESPONSIVENESS ====== */

/* Smartphones */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .back-to-top {
    width: 36px;
    height: 36px;
    font-size: 14px;
    line-height: 36px;
  }

  .back-to-top i {
    font-size: 18px;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.8rem;
  }
}

/* Laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 2rem;
  }
}

/* Desktops */
@media (min-width: 1025px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.2rem;
  }
}

/**********************************/
/********* Header Nav CSS *********/
/**********************************/
/* ===== HEADER STYLES ===== */
/* ===== HEADER ===== */
/* === HEADER STYLES === */
#header {
  padding: 10px 0;
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 997;
  background: linear-gradient(to bottom, #219b9d, #b2fefa);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  animation: slideFadeDown 1s ease forwards;
  opacity: 0;
  transform: translateY(-40px);
}

@keyframes slideFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header #logo {
  float: left;
  width: 150px;
  padding-left: 20px;
}

#header #logo img {
  max-height: 50px;
  margin: 0;
  padding: 0;
}

/* === NAVIGATION DESKTOP === */
#nav-menu-container {
  float: right;
  padding-right: 40px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin: 0 10px;
  position: relative;
}

.nav-menu a {
  display: inline-block;
  padding: 10px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #000;
}

.nav-menu li:hover > a::after,
.nav-menu > .menu-active > a::after {
  opacity: 1;
}

/* === REQUEST DEMO BUTTON (DESKTOP) === */
.nav-menu .highlight-btn a {
  padding: 10px 22px;
  background: linear-gradient(to right, #ff5aa2, #f7921e);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 90, 162, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 1;
}

.nav-menu .highlight-btn a:hover,
.nav-menu .highlight-btn a:active {
  background: linear-gradient(to right, #6a1b9a, #a94cff);
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.4);
  color: #fff;
}
.nav-menu .highlight-btn a::after {
  content: none !important;
  display: none !important;
  height: 0 !important;
  background: none !important;
  opacity: 0 !important;
}

  /* === MOBILE NAV TOGGLE === */
  #mobile-nav-toggle {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 999;
    background: none;
    font-size: 24px;
    display: none;
    cursor: pointer;
    outline: none;
    border: none;
    box-shadow: none;
    background: none;

  }

  #mobile-nav-toggle i {
    color: #fff;
  }

  /* === MOBILE NAV === */
  #mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    padding-top: 60px;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    overflow-y: auto;
    transition: 0.4s;
  }

  #mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #mobile-nav ul li {
    margin: 10px 0;
  }

  #mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    text-decoration: none;
  }

  #mobile-nav ul li a:active {
    color: #f7921e;
  }

  /* === MOBILE REQUEST DEMO BUTTON === */
  #mobile-nav .highlight-btn a {
    margin: 20px auto;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(to right, #ff5aa2, #f7921e);
    border-radius: 50px;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(255, 90, 162, 0.3);
    transition: 0.3s ease;
  }

  #mobile-nav .highlight-btn a:active {
    background: linear-gradient(to right, #6a1b9a, #a94cff);
  }

  /* === MOBILE OVERLAY === */
  #mobile-body-overly {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    background: rgba(0, 0, 0, 0.7);
    display: none;
  }

  /* === ACTIVE STATE === */
  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active #mobile-nav {
    left: 0;
  }

  /* === RESPONSIVE SETTINGS === */
  @media (max-width: 991.98px) {
  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: block;
  }

  /* Responsive tweaks for small phones */
  @media (max-width: 400px) {
    #mobile-nav ul li a {
      font-size: 16px;
      padding: 10px 15px;
    }

    #mobile-nav .highlight-btn a {
      font-size: 14px;
      padding: 12px 24px;
    }

    #mobile-nav-toggle {
      font-size: 24px;
      top: 12px;
      right: 12px;
    }
  }
}
/**********************************/
/******** Header Carousel *********/
/**********************************/
#header-carousel {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header-carousel .carousel-item {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#header-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 155, 157, 0.4); /* overlay for readability */
  z-index: 1;
}

#header-carousel .carousel-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

#header-carousel .carousel-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 90%;
}

#header-carousel .carousel-content {
  z-index: 3;
}

#header-carousel h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

#header-carousel p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}

#header-carousel .btn-get-started {
  display: inline-block;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
  color: #219b9d;
  background: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.5s;
}

#header-carousel .btn-get-started:hover {
  background: #219b9d;
  color: #fff;
}

/* ======= NEW SLIDE BUTTONS ======= */
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  color: #219b9d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#header-carousel .carousel-control-prev:hover,
#header-carousel .carousel-control-next:hover {
  background-color: #219b9d;
  color: #fff;
  box-shadow: 0 4px 14px rgba(33, 155, 157, 0.3);
}

#header-carousel .carousel-control-prev {
  left: 25px;
}

#header-carousel .carousel-control-next {
  right: 20px;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.354a.5.5 0 0 1 0 .708L5.707 8l5.647 5.938a.5.5 0 0 1-.708.708l-6-6.313a.5.5 0 0 1 0-.708l6-6.271a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.354a.5.5 0 0 1 .708 0l6 6.271a.5.5 0 0 1 0 .708l-6 6.313a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.062a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* ===== Carousel Dots ===== */
#header-carousel .carousel-indicators {
  bottom: 20px;
  z-index: 10;
}

#header-carousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 4px;
  opacity: 0.5;
  transition: 0.3s;
}

#header-carousel .carousel-indicators .active {
  opacity: 1;
}

/* ===== Tablet View ===== */
@media (max-width: 991.98px) {
  #header-carousel h2 {
    font-size: 42px;
  }

  #header-carousel p {
    font-size: 18px;
  }

  #header-carousel .btn-get-started {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 767.98px) {
  #header-carousel {
    height: 100vh;
  }

  #header-carousel .carousel-item {
    padding: 40px 0;
    height: 100vh;
  }

  #header-carousel h2 {
    font-size: 32px;
    text-align: center;
  }

  #header-carousel p {
    font-size: 16px;
    text-align: center;
  }

  #header-carousel .btn-get-started {
    padding: 10px 24px;
    font-size: 14px;
  }

  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    width: 38px;
    height: 38px;
  }

  #header-carousel .carousel-control-prev-icon,
  #header-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 575.98px) {
  #header-carousel h2 {
    font-size: 26px;
    padding: 0 15px;
    word-break: break-word;
  }

  #header-carousel p {
    font-size: 15px;
    padding: 0 15px;
  }

  #header-carousel .btn-get-started {
    font-size: 13px;
    padding: 10px 20px;
  }

  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    width: 32px;
    height: 32px;
    top: auto;
    bottom: 60px;
  }

  #header-carousel .carousel-control-prev {
    left: 12px;
  }

  #header-carousel .carousel-control-next {
    right: 12px;
  }

  #header-carousel .carousel-control-prev-icon,
  #header-carousel .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }

  #header-carousel .carousel-indicators {
    bottom: 16px;
  }

  #header-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

  #header-carousel .carousel-container {
    padding: 0 10px;
  }
}
/* ===== Ultra-Wide Desktops (4K, 5K) ===== */
@media (min-width: 1600px) {
  #header-carousel h2 {
    font-size: 72px;
  }

  #header-carousel p {
    font-size: 26px;
  }

  #header-carousel .btn-get-started {
    font-size: 22px;
    padding: 20px 48px;
  }

  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    width: 56px;
    height: 56px;
  }

  #header-carousel .carousel-control-prev-icon,
  #header-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
  }
}

/* ====== Highlighted Request Button ====== */




/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.section-header h2,
.section-header h3 {
    position: relative;
    color: #219b9d;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.section-header h2::after,
.section-header h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #219b9d;
}

.section-header p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin: 0
}


/**********************************/
/********** Contact CSS ***********/
/**********************************/
#contact {
    position: relative;
    padding: 60px 0;
}

#contact .container {
    max-width: 900px;
}

#contact .contact-info img {
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
}

#contact .contact-info p {
    margin-bottom: 5px;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
}

#contact .contact-info p i {
    color: #219b9d;
    margin-right: 5px;
}

#contact .social {
    position: relative;
    width: 100%;
}

#contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 2px solid #3F69AA;
    border-radius: 30px;
}

#contact .social a i {
    color: #219b9d;
}

#contact .social a:hover {
    background: #3F69AA;
}

#contact .social a:hover i {
    color: #ffffff;
}

#contact .form {
    color: #666666;
    font-weight: 300;
}

@media (max-width: 767.98px) {
    #contact .form {
        margin-bottom: 30px;
    }
}

#contact .form input,
#contact .form textarea {
    color: #666666;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 15px;
    border: none;
    border: 2px solid #3F69AA;
    border-radius: 20px;
    box-shadow: none;
}

#contact .form input:focus,
#contact .form textarea:focus {
    box-shadow: 0 0 5px #3F69AA;
}

#contact .form button[type="submit"] {
    padding: 6px 25px 7px 25px;
    color: #3F69AA;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 30px;
    border: 2px solid #3F69AA;
    background: #ffffff;
}

#contact .form button[type="submit"]:hover {
    background: #3F69AA;
    color: #FFFFFF;
}



/**********************************/
/********** Footer CSS ************/
/**********************************/
/* Footer Base */
/* Footer Base */
.site-footer {
  background: 		linear-gradient(to top, #219b9d, #b2fefa); /* light teal */
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 40px 20px;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.slogan {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
  font-weight: 600;
}

.footer-col h4 {
  color: #222;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p,
.footer-col ul li {
  margin: 10px 0;
  font-size: 14px;
  color: #444;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #007b7f;
  font-weight: bold;
}

/* Contact Info Icons */
.contact-info p i {
  margin-right: 8px;
  color: #007b7f;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #eff4f4;
  border-radius: 50%;
  color: #f2fcfd;
  transition: 0.3s ease-in-out;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.social-icons a:nth-child(1) { animation-delay: 0.2s; }
.social-icons a:nth-child(2) { animation-delay: 0.4s; }
.social-icons a:nth-child(3) { animation-delay: 0.6s; }
.social-icons a:nth-child(4) { animation-delay: 0.8s; }

.social-icons a:hover {
  background-color: #007b7f;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 123, 127, 0.3);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #b3e3e3;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #666;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 100%;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .footer-col * {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .slogan {
    text-align: left !important;
  }

  .social-icons {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .social-icons a {
    margin-left: 0 !important;
  }
}
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin: 10px 0;
  line-height: 1.5;
  max-width: 300px; /* optional, to keep lines nice */
}

.contact-info p span {
  flex-shrink: 0;
  color: #007b7f;
  min-width: 16px;
  margin-top: 3px;
}
/* ===== Ultra Small Devices (<576px) ===== */
@media (max-width: 575.98px) {
  .footer-wrap {
    padding: 30px 16px;
    gap: 24px;
  }

  .footer-col {
    text-align: left;
    flex: 1 1 100%;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 13px;
  }

  .social-icons {
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 16px;
  }

  .contact-info p {
    font-size: 13px;
    line-height: 1.4;
    max-width: 100%;
  }
}

/* ===== Huge Screens (4K, WQHD etc) ===== */
@media (min-width: 1600px) {
  .footer-wrap {
    padding: 80px 60px 40px;
  }

  .footer-col h4 {
    font-size: 22px;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 16px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 14px;
    padding: 24px;
  }
}










/* === ABOUT CARD BASE === */
/* === ABOUT CARD BASE === */
/* === ABOUT CARD BASE === */
.about-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #5c2d91;
  color: #ffffff;
  border-radius: 20px;
  margin: 40px auto;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
  gap: 40px;
  font-family: 'Open Sans', sans-serif;
  flex-direction: row;
  flex-wrap: nowrap;
}

.about-card:hover {
  transform: scale(1.02);
}

.about-card.alt {
  background-color: #f7921e;
  color: #000000;
}

.about-card.reverse {
  flex-direction: row-reverse;
}

.about-card img {
  width: 45%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.about-card .about-text {
  width: 55%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.about-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: inherit;
}

.about-card p {
  font-size: 20px;
  line-height: 1.9;
  word-spacing: 1.5px;
  letter-spacing: 0.4px;
  font-weight: 400;
}


/* === Tablets & iPads (768px - 1024px) === */
@media (max-width: 1024px) and (min-width: 768px) {
  .about-card {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 30px;
    gap: 30px;
  }

  .about-card img {
    width: 45%;
    height: auto;
    max-height: 260px;
  }

  .about-card .about-text {
    width: 55%;
    padding: 0 15px;
  }

  .about-card h3 {
    font-size: 30px;
  }

  .about-card p {
    font-size: 22px;
    line-height: 2.2;
  }
}


/* === Mobile Devices (<= 767px) === */
@media (max-width: 767px) {
  .about-card {
    flex-direction: column;
    padding: 24px 16px;
    gap: 20px;
  }

  .about-card img {
    width: 100%;
    height: 200px;
  }

  .about-card .about-text {
    width: 100%;
    padding: 0;
  }

  .about-card h3 {
    font-size: 28px;
    text-align: left;
  }

  .about-card p {
    font-size: 22px;
    line-height: 2.4;
    word-spacing: 1.5px;
    letter-spacing: 0.5px;
    text-align: left;
  }
}


/* === Large Screens (1367px - 2559px) === */
@media (min-width: 1367px) and (max-width: 2559px) {
  .about-card h3 {
    font-size: 36px;
  }

  .about-card p {
    font-size: 24px;
    line-height: 2.4;
  }

  .about-card img {
    max-height: 320px;
  }
}


/* === Ultra-Wide Screens (2560px and up) === */
@media (min-width: 2560px) {
  .about-card {
    max-width: 1600px;
    padding: 60px;
    gap: 60px;
  }

  .about-card h3 {
    font-size: 42px;
  }

  .about-card p {
    font-size: 26px;
    line-height: 2.6;
    word-spacing: 2px;
    letter-spacing: 1px;
  }

  .about-card img {
    max-height: 360px;
  }
}


/* === SHARED LAYOUT === */
.trust-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 60px;
  margin: 80px auto;
  flex-wrap: wrap;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.trust-container.left {
  flex-direction: row;
  background: rgba(106, 27, 154, 0.03);
}

.trust-container.right {
  flex-direction: row-reverse;
  background: rgba(247, 146, 30, 0.03);
}

.trust-img-shadow-orange,
.trust-img-shadow-purple {
  flex: 1;
  display: flex;
  justify-content: center;
}

.trust-img-shadow-orange img,
.trust-img-shadow-purple img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(106, 27, 154, 0.2);
  transition: transform 0.4s ease;
}

.trust-img-shadow-orange img {
  box-shadow: 0 30px 80px rgba(247, 146, 30, 0.3);
}

.trust-img-shadow-orange img:hover,
.trust-img-shadow-purple img:hover {
  transform: scale(1.03);
}

.trust-text-glow-purple,
.trust-text-glow-orange {
  flex: 1;
  padding: 30px;
  border-radius: 20px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  background: #fff;
}

.trust-text-glow-purple {
  box-shadow: 0 20px 60px rgba(106, 27, 154, 0.2);
}

.trust-text-glow-orange {
  box-shadow: 0 20px 60px rgba(247, 146, 30, 0.2);
}

.trust-text-glow-purple:hover,
.trust-text-glow-orange:hover {
  transform: translateY(-4px);
}

.trust-text-glow-purple h2,
.trust-text-glow-orange h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #301a4b;
  font-weight: 600;
}

.trust-text-glow-purple p,
.trust-text-glow-orange p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.trust-features {
  margin: 20px 0;
}

.trust-features p {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #6a1b9a;
  margin: 8px 0;
}

.trust-features i {
  color: #f7921e;
  margin-right: 10px;
}

.trust-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #f7921e, #ffb347);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: inline-block;
  cursor: pointer;
}

.trust-btn:hover {
  background: linear-gradient(135deg, #6a1b9a, #a94cff);
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.4), 0 0 12px rgba(106, 27, 154, 0.3);
  transform: translateY(-2px);
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .trust-container {
    flex-direction: column !important;
    text-align: center;
    padding: 60px 30px;
  }

  .trust-img-shadow-orange,
  .trust-img-shadow-purple {
    order: -1;
    margin-bottom: 30px;
  }

  .trust-text-glow-purple h2,
  .trust-text-glow-orange h2 {
    font-size: 28px;
  }

  .trust-text-glow-purple p,
  .trust-text-glow-orange p {
    font-size: 16px;
  }
}

/* ========== BASE STYLES ========== */
/* ========== BASE STYLES ========== */
/* === INFO SECTION === */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 60px;
  background: #f8f8fe;
  justify-items: center;
  align-items: stretch;
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.3s; }
.info-card:nth-child(3) { animation-delay: 0.5s; }

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(106, 27, 154, 0.35);
}

.info-card img {
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
  object-fit: contain;
  display: block;
}

.info-card h3 {
  font-size: 20px;
  color: #301a4b;
  margin-bottom: 12px;
  font-weight: 700;
}

.info-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 500;
}

.card-btn {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #f7921e, #ffb347);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.card-btn:hover {
  background: linear-gradient(135deg, #6a1b9a, #a94cff);
  color: #EEEE;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.3);
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  .info-row {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .info-card {
    padding: 30px 20px;
    max-width: 100%;
  }

  .info-card img {
    width: 140px;
    height: 140px;
  }

  .info-card h3 {
    font-size: 18px;
  }

  .info-card p {
    font-size: 14px;
  }

  .card-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* FORCE 3-COLUMN GRID ON SMALL & MEDIUM LAPTOPS */
@media (min-width: 1024px) and (max-width: 1366px) {
  .info-row {
    grid-template-columns: repeat(3, 1fr);
  }
}


.benefits-section {
  padding: 80px 60px;
  background: #f9f9ff;
}

.benefits-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.benefits-title h2 {
  font-size: 32px;
  color: #301a4b;
  margin-bottom: 15px;
}

.benefits-title p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(106, 27, 154, 0.15);
}

.benefit-card i {
  font-size: 36px;
  color: #f7921e;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  color: #301a4b;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.feature-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #f7921e;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .feature-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
  }
}








































/* Reset & base styles */
/* ========== FEATURES SECTION ========== */
/* === FEATURES SECTION === */
.features-section {
  padding: 80px 40px;
  background: #fefeff;
  text-align: center;
}

.features-heading {
  font-size: 2.2rem;
  color: #301a4b;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ========== GRID SYSTEM ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== INDIVIDUAL CARD ========== */
.feature-card {
  background: linear-gradient(145deg, #fef5ff, #ffffff);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.feature-card .icon {
  font-size: 2rem;
  color: #f7921e;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: #301a4b;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-weight: 500;
}

/* ========== ANIMATION ON SCROLL ========== */
.feature-card[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE OPTIMIZATION ========== */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .features-section {
    padding: 70px 35px;
  }

  .features-heading {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 30px;
  }

  .features-heading {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.88rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 20px;
  }

  .features-heading {
    font-size: 1.6rem;
  }

  .feature-card {
    padding: 20px 18px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .feature-card .icon {
    font-size: 1.7rem;
  }

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 360px) {
  .features-section {
    padding: 30px 16px;
  }

  .feature-card h3 {
    font-size: 0.9rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }

  .feature-card .icon {
    font-size: 1.6rem;
  }
}

@media (min-width: 1367px) and (max-width: 1920px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1921px) {
  .features-grid {
    max-width: 1600px;
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-card {
    padding: 36px 28px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 1rem;
  }
}
/* === ABOUT SECTION === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION BASE === */
/* === ABOUT SECTION - RESPONSIVE LAYOUT === */
/* === ABOUT SECTION - RESPONSIVE LAYOUT === */
.about-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #fcfcff, #f1f1f5);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  gap: 100px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.about-container.left {
  flex-direction: row;
}

.about-container.right {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 720px;
  box-shadow: 0 20px 60px rgba(154, 20, 238, 0.15);
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

.about-content {
  flex: 1;
  max-width: 760px;
}

.about-content h2 {
  font-size: 48px;
  color: #301a4b;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.about-content p {
  font-size: 22px;
  line-height: 2;
  color: #444;
  text-align: justify;
  font-weight: 500;
  word-spacing: 0px;
  letter-spacing: 0px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.read-more-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: linear-gradient(to right, #f7921e, #ffb347);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(247, 146, 30, 0.2);
}

.read-more-btn:hover {
  background: linear-gradient(to right, #6a1b9a, #a94cff);
  box-shadow: 0 10px 30px rgba(106, 27, 154, 0.4);
  transform: translateY(-2px);
  color: #eeee;
}

/* === 1024px to 1199px: Tablets / Small Laptops (FIXED + Bigger Image) === */
@media (max-width: 1199px) and (min-width: 1024px) {
  .about-container {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .about-container.left {
    flex-direction: row !important;
  }

  .about-container.right {
    flex-direction: row-reverse !important;
  }

  .about-image {
    width: 55%;
    justify-content: center;
  }

  .about-image img {
    max-width: 105%;
    height: auto;
  }

  .about-content {
    width: 45%;
    text-align: left;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-content p {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* === Tablets & Small Laptops (max-width: 1366px) === */
@media (max-width: 1366px) {
  .about-image {
    width: 100%;
    justify-content: center;
  }

  .about-image img {
    max-width: 90%;
  }

  .about-content h2 {
    font-size: 36px;
    font-weight: 700;
  }

  .about-content p {
    font-size: 20px;
    line-height: 1.9;
    font-weight: 500;
  }
}

/* === Mobile Devices === */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column !important;
    padding: 40px 20px;
    gap: 30px;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    max-height: 500px;
  }

  .about-content h2 {
    font-size: 22px;
    font-weight: 700;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    text-align: justify;
  }

  .read-more-btn {
    font-size: 14px;
    padding: 10px 22px;
  }
}

/* === 320px Devices === */
@media (max-width: 320px) {
  .about-section {
    padding: 40px 12px;
  }

  .about-content h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    text-align: justify;
  }

  .about-image img {
    max-height: 520px;
  }
}

/* === 4K Screens === */
@media (min-width: 1920px) {
  .about-container {
    max-width: 1900px;
    gap: 120px;
  }

  .about-image img {
    max-width: 800px;
  }

  .about-content h2 {
    font-size: 52px;
    font-weight: 700;
  }

  .about-content p {
    font-size: 24px;
    line-height: 2.2;
    font-weight: 500;
  }
}

 
/* === PACKAGES SECTION === */
.packages-section {
  padding: 100px 60px;
  background: #fefcff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  overflow-x: hidden;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #301a4b;
  margin-bottom: 50px;
  animation: fadeSlideDown 1s ease-in-out;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns on desktop */
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.package-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.3), 0 0 20px rgba(154, 20, 238, 0.25);
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card h3 {
  font-size: 26px;
  color: #2b0a3d;
  margin-bottom: 15px;
}

.package-card .price {
  font-size: 30px;
  font-weight: bold;
  color: #ff6f4d;
  margin-bottom: 30px;
}

.package-card .price span {
  font-size: 16px;
  color: #666;
  font-weight: normal;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.package-card ul li {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  background: linear-gradient(to right, #008080, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.btn-package {
  background: linear-gradient(to right, #f7921e, #ff5aa2);
  padding: 12px 32px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 94, 0, 0.2);
  align-self: center;
  margin-top: auto;
}

.btn-package:hover {
  background: linear-gradient(to right, #6a1b9a, #a94cff);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(106, 27, 154, 0.3);
  color: #fff;
}

/* === Animations === */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 1023px) {
  .packages-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packages-container {
    grid-template-columns: 1fr;
  }

  .package-card {
    max-width: 90%;
    height: auto;
  }

  .section-title {
    font-size: 32px;
  }

  .package-card h3 {
    font-size: 22px;
  }

  .package-card .price {
    font-size: 26px;
  }

  .package-card ul li {
    font-size: 14px;
  }

  .btn-package {
    font-size: 14px;
    padding: 10px 26px;
  }
}

@media (max-width: 480px) {
  .packages-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .package-card {
    padding: 24px 20px;
  }

  .package-card h3 {
    font-size: 20px;
  }

  .package-card .price {
    font-size: 24px;
  }

  .package-card ul li {
    font-size: 13px;
  }

  .btn-package {
    font-size: 13px;
    padding: 8px 20px;
  }
}

@media (max-width: 360px) {
  .package-card {
    padding: 20px 16px;
  }

  .package-card h3 {
    font-size: 18px;
  }

  .package-card .price {
    font-size: 22px;
  }

  .package-card ul li {
    font-size: 12px;
  }

  .btn-package {
    font-size: 12px;
    padding: 6px 18px;
  }
}

/* contact*/
/* === CONTACT SECTION === */
/* === CONTACT SECTION === */
.contact-section {
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}

.contact-container {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  box-shadow:
    0 0 20px #219b9d88,
    0 0 40px #a94cff44,
    0 20px 60px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.contact-container h2 {
  text-align: center;
  font-size: 40px;
  color: #301a4b;
  margin-bottom: 30px;
  font-weight: 800;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 14px;
  font-size: 17px;
  font-weight: 600;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: #f9f9ff;
  color: #333;
  transition: 0.3s ease;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #f9f9ff;
  color: #777;
  padding: 0 5px;
  font-size: 15px;
  transition: 0.3s ease;
  pointer-events: none;
  font-weight: 500;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 13px;
  color: #219b9d;
  background: #fff;
}

.submit-btn {
  display: inline-block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to right, #f7921e, #ff5aa2);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(247, 146, 30, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(to right, #6a1b9a, #a94cff);
  box-shadow: 0 12px 40px rgba(106, 27, 154, 0.4);
  color: #fff;
}

/* === CONTACT INTRO === */
.contact-intro {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
}

.contact-intro h2 {
  font-size: 44px;
  color: #301a4b;
  margin-bottom: 10px;
  font-weight: 900;
}

.contact-intro p {
  font-size: 18px;
  color: #444;
  font-weight: 500;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  animation: slideUp 0.4s ease;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  max-width: 600px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(100px);}
  to {transform: translateY(0);}
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 15px;
  }

  .contact-container {
    padding: 30px 24px;
    margin: 0 auto;
  }

  .contact-container h2 {
    font-size: 28px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 12px;
  }

  .contact-intro h2 {
    font-size: 30px;
  }

  .contact-intro p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 10px;
  }

  .contact-container {
    padding: 25px 20px;
    margin: 0 auto;
  }

  .contact-container h2 {
    font-size: 26px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }

  .contact-intro h2 {
    font-size: 26px;
  }

  .contact-intro p {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .contact-section {
    padding: 50px 10px;
  }

  .contact-container {
    padding: 20px 16px;
    margin: 0 auto;
  }

  .contact-container h2 {
    font-size: 24px;
  }

  .submit-btn {
    font-size: 13px;
    padding: 8px;
  }

  .contact-intro h2 {
    font-size: 22px;
  }

  .contact-intro p {
    font-size: 13px;
  }
}