* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #f4f7f6;
  overflow-x: hidden;
}

.side_bar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #ecf0f3;
  padding: 12px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1,
    inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
  transition: all 2s ease-in-out;
  z-index: 10;
}
.side_bar .title {
  display: flex;
  justify-content: space-evenly;
}

.side_bar .title .logo {
  font-size: 27px;
  font-weight: 600;
  color: #31344b;
}

.side_bar ul {
  margin-top: 35px;
  list-style: none;
}

.side_bar ul a {
  color: #31344b;
  text-decoration: none;
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 25px;
  border-radius: 6px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.2s ease;
}

.side_bar ul i {
  margin-right: 10px;
}

.media_icons {
  /* margin-top: 0px; */
  display: flex;
  justify-content: center;
}

.media_icons a {
  position: relative;
  margin: 0 4px;
  font-size: 17px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  transition: all 0.3s ease;
}

.side_bar ul a:hover:before,
.media_icons a:hover:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.side_bar ul a:hover:before {
  border-radius: 6px;
}

.media_icons a:hover:before {
  border-radius: 50%;
}

.side_bar ul a:hover {
  color: #3498db;
}

.media_icons a:nth-child(1) {
  color: rgba(37, 211, 102, 1);
}

.media_icons a:nth-child(2) {
  color: #1da1f2;
}

label {
  font-size: 17px;
  color: #31344b;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  height: 37px;
  width: 37px;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  cursor: pointer;
  transition: all 0.3s ease;
}

label:hover {
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
  color: #3498db;
}

#check {
  display: none;
}

.bars {
  position: absolute;
  left: 15px;
  top: 15px;
}

#check:checked ~ .side_bar {
  left: 0;
}

.language-dropdown {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 80px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 9999;
}

.language-dropdown .nav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}

.language-dropdown .toggle-btn,
.language-dropdown .nav-content .language-option {
  height: 60px;
  width: 60px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25%;
  font-size: 18px;
  font-weight: 900;
  color: #0e2431;
  cursor: pointer;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.3s, background-color 0.3s;
}

.language-dropdown .toggle-btn {
  font-size: 12px;
  color: #0e2431;
  z-index: 100;
  transform: rotate(-314deg);
  transition: all 1.9s ease-in-out;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.7);
}

.language-dropdown.open .toggle-btn {
  transform: rotate(0deg);
}

.language-dropdown .nav-content .language-option {
  position: absolute;
  transition: all 1.7s ease-in-out, box-shadow 0.3s, background-color 0.3s;
  opacity: 0;
  pointer-events: none;
}

.language-dropdown.open .nav-content .language-option {
  transform: rotate(calc(var(--i) * (360deg / 8))) translateY(120px);
  opacity: 1;
  pointer-events: auto;
}

.language-dropdown .nav-content .language-option:hover {
  background-color: #d6d6d6;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2),
    inset -5px -5px 10px rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .language-dropdown {
    width: 60px;
    height: 250px;
  }

  .language-dropdown .toggle-btn,
  .language-dropdown .nav-content .language-option {
    height: 50px;
    width: 50px;
    font-size: 14px;
  }

  .language-dropdown.open .nav-content .language-option {
    transform: rotate(calc(var(--i) * (360deg / 8))) translateY(100px);
  }
}

@media (max-width: 480px) {
  .language-dropdown {
    width: 50px;
    height: 200px;
  }

  .language-dropdown .toggle-btn,
  .language-dropdown .nav-content .language-option {
    height: 40px;
    width: 40px;
    font-size: 12px;
  }

  .language-dropdown.open .nav-content .language-option {
    transform: rotate(calc(var(--i) * (360deg / 8))) translateY(80px);
  }
}

.hero {
  background: url("img/quran.jpg") no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 0;
  width: 100%;
}

#check:checked ~ .hero {
  margin-left: 300px;
  width: calc(100% - 300px);
}

.hero h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-button {
  background-color: #3498db;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #2980b9;
}

.learn-more {
  background-color: #f1f2f6;
  padding: 60px 20px;
  text-align: center;
}

.learn-more h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.learn-more p {
  font-size: 18px;
  color: #555;
}

/* END */

/* About Section */

.about {
  background-color: #e0e5ec;
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.about:hover {
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15),
    -20px -20px 40px rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text {
  max-width: 600px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #333;
  padding: 20px;
  background-color: #e0e5ec;
  border-radius: 10px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.about-text:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.about-text h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.about-image img:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2),
    -10px -10px 20px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}
/* END */

/* courses section */

.courses-intro {
  background: #e0e5ec;
  border-radius: 20px;
  box-shadow: 8px 8px 15px #a3b1c6, -8px -8px 15px #ffffff;
  padding: 30px;
  width: 80%;
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  font-family: "Arial", sans-serif;
  color: #333;
}

.courses-intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #4b4b4b;
}

.courses-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  font-weight: 300;
}

.courses-intro:hover {
  box-shadow: 12px 12px 20px #a3b1c6, -12px -12px 20px #ffffff;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.courses-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.profile-wrapper {
  width: calc(33.33% - 20px);
  margin-bottom: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecf0f3;
  height: auto;
  padding: 10px;
}

.profile-wrapper .wrapper,
.profile-wrapper .wrapper .img-area {
  background: #ecf0f3;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
}

.profile-wrapper .wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.profile-wrapper .wrapper .icon {
  font-size: 15px;
  color: #31344b;
  position: absolute;
  cursor: pointer;
  opacity: 0.7;
  top: 10px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 16px;
}

.profile-wrapper .wrapper .icon.arrow {
  left: 10px;
}

.profile-wrapper .wrapper .icon.dots {
  right: 10px;
}

.profile-wrapper .wrapper .img-area {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.profile-wrapper .img-area .inner-area {
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  border-radius: 50%;
}

.profile-wrapper .inner-area img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-wrapper .wrapper .name {
  font-size: 18px;
  font-weight: 500;
  color: #31344b;
  margin: 5px 0 5px 0;
}

.profile-wrapper .wrapper .about {
  color: #44476a;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 5px;
}

.profile-wrapper .social-share {
  display: none;
}

.profile-wrapper .social-icons {
  margin: 10px 0 20px 0;
}

.profile-wrapper .social-icons a {
  position: relative;
  height: 35px;
  width: 35px;
  margin: 0 5px;
  display: inline-flex;
  text-decoration: none;
  border-radius: 50%;
}

.profile-wrapper .social-icons a:hover::before,
.profile-wrapper .wrapper .icon:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #ecf0f3;
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.profile-wrapper .social-icons a i {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 35px;
}

.profile-wrapper .social-icons a.fb i {
  color: #4267b2;
}

.profile-wrapper .social-icons a.twitter i {
  color: #1df29d;
}

@media (max-width: 768px) {
  .profile-wrapper {
    width: 100%;
    padding: 10px;
  }

  .profile-wrapper .wrapper {
    width: 100%;
    padding: 10px;
  }

  .profile-wrapper .wrapper .name {
    font-size: 16px;
  }

  .profile-wrapper .wrapper .about {
    font-size: 12px;
  }

  .profile-wrapper .img-area {
    height: 80px;
    width: 80px;
  }
}
/* END */

.instructor {
  text-align: center;
  width: 80%;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #e0e5ec;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.instructor h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.instructor-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.instructor-card {
  background: #e0e5ec;
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15),
    -8px -8px 20px rgba(255, 255, 255, 0.9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease-in-out;
}

.instructor-card:hover {
  box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.15),
    -12px -12px 25px rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.instructor-card.image-card {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
}

.instructor-img img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
}

.instructor-card.info-card {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instructor-details h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #333;
}

.instructor-details .role {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 10px;
}

.instructor-details .bio {
  font-size: 1rem;
  color: #5c5c5c;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icon {
  font-size: 1.5rem;
  color: #555;
  padding: 10px;
  border-radius: 50%;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #e0e5ec;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    -5px -5px 10px rgba(255, 255, 255, 0.8);
  color: #007bff;
}
/* END */

.resources {
  text-align: center;
  padding: 40px 20px;
  background: #e0e5ec;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.7);
  max-width: 1200px;
  margin: 40px auto;
}

.resources h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}

.resources-search {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.resources-search input {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  background: #e0e5ec;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1),
    inset -5px -5px 10px rgba(255, 255, 255, 0.7);
  width: 300px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.resources-search input:focus {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.2),
    inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.search-btn {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  background: #e0e5ec;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    -5px -5px 10px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.search-btn:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
    -5px -5px 15px rgba(255, 255, 255, 1);
}

.resources-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.resource-card {
  background: #e0e5ec;
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15),
    -8px -8px 15px rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.2),
    -12px -12px 25px rgba(255, 255, 255, 1);
}

.resource-icon {
  font-size: 2.5rem;
  color: #555;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 50%;
  background: #e0e5ec;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15),
    -8px -8px 15px rgba(255, 255, 255, 0.8);
}

.resource-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.resource-card .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: #e0e5ec;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    -5px -5px 10px rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.resource-card .btn:hover {
  background-color: #f5f5f5;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
    -5px -5px 15px rgba(255, 255, 255, 1);
}
/* END */

/* Testimonials Section */
.testimonials {
  text-align: center;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #e0e5ec;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background: #e0e5ec;
  flex: 0 0 300px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15),
    -8px -8px 20px rgba(255, 255, 255, 0.9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.15),
    -12px -12px 25px rgba(255, 255, 255, 0.9);
}

.author-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1),
    -4px -4px 10px rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease;
}

.author-img:hover {
  transform: scale(1.1);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.testimonials-controls button {
  background: #e0e5ec;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-controls button:hover {
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}

.testimonials-controls i {
  font-size: 1.2rem;
  color: #333;
}

/* General styles for testimonials text on small screens */
@media (max-width: 360px) {
  .testimonials {
    padding: 20px;
  }

  .testimonials h2 {
    font-size: 1.8rem; /* Smaller font for the heading */
    margin-bottom: 15px; /* Reduced margin */
  }

  .testimonial-card {
    padding: 15px; /* Less padding for smaller cards */
    border-radius: 15px; /* Slightly smaller border radius */
  }

  .testimonial-card .quote {
    font-size: 0.9rem; /* Adjusted text size for testimonials */
    line-height: 1.4; /* Slightly tighter line height */
    margin-bottom: 10px; /* Reduced spacing between elements */
  }

  .testimonial-card h3 {
    font-size: 1rem; /* Smaller font for author names */
    margin-bottom: 5px; /* Adjusted spacing */
  }

  .testimonial-card p {
    font-size: 0.85rem; /* Smaller font for additional text */
  }

  .author-img {
    width: 100px; /* Smaller image size */
    height: 100px; /* Match width and height */
  }

  .testimonials-controls button {
    width: 35px; /* Adjusted control button size */
    height: 35px;
  }

  .testimonials-controls i {
    font-size: 1rem; /* Adjusted icon size */
  }
}

/* Further adjustments for devices with height around 800px */
@media (max-height: 800px) {
  .testimonials h2 {
    font-size: 2rem; /* Slightly larger heading for vertical space */
  }

  .testimonial-card .quote {
    font-size: 1rem; /* Comfortable reading size */
  }
}


/* END */

/* contact section */
.contact-section {
  text-align: center;
  width: 80%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #e0e5ec;
  border-radius: 25px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2),
    -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.contact-form {
  flex: 1 1 45%;
  padding: 15px;
  background: #e0e5ec;
  border-radius: 20px;
  box-shadow: inset 6px 6px 10px rgba(0, 0, 0, 0.1),
    inset -6px -6px 10px rgba(255, 255, 255, 0.7);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 15px;
  background: #e0e5ec;
  box-shadow: inset 6px 6px 10px rgba(0, 0, 0, 0.1),
    inset -6px -6px 10px rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  color: #333;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.2),
    inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2),
    -6px -6px 10px rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  color: #333;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.3),
    -6px -6px 14px rgba(255, 255, 255, 0.9);
}

.contact-info {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1),
    -6px -6px 10px rgba(255, 255, 255, 0.7);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card i {
  font-size: 1.5rem;
  color: #555;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.2),
    -6px -6px 14px rgba(255, 255, 255, 0.9);
}

.social-media-links {
  margin-top: 30px;
  text-align: center;
}

.social-media-links h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e0e5ec;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1),
    inset -6px -6px 10px rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.2),
    inset -6px -6px 14px rgba(255, 255, 255, 0.9);
}

.social-icon i {
  font-size: 1.3rem;
  color: #333;
}

.social-icon:hover .fa-whatsapp {
  color: rgba(37, 211, 102, 1);
}

.social-icon:hover .fa-twitter {
  color: rgba(0, 0, 0, 0.1);
}

/* END */

/* bottom to top btn */
.neumorphism-btn {
  position: fixed;
  left: 5px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  color: #333;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.neumorphism-btn:hover {
  background: #d1d1d1;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3),
    -4px -4px 10px rgba(255, 255, 255, 0.6);
}

.neumorphism-btn:active {
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.6);
}

.fas.fa-arrow-up {
  color: #333;
  font-size: 1rem;
}
/* end */

/* Footer Section */
.footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  background: #e0e5ec; 
  
  box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.2),
              inset -10px -10px 20px rgba(255, 255, 255, 0.7);
  border-radius: 25px; 
  margin: 40px auto;
  max-width: 1200px;
  gap: 20px;
}

.footer-panel {
  flex: 1 1 30%;
  min-width: 280px;
  margin: 10px;
  padding: 20px;
  background: #e0e5ec; 
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1),
              -6px -6px 10px rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-panel:hover {
  transform: translateY(-3px); 
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.2),
              -6px -6px 14px rgba(255, 255, 255, 0.9);
}

.footer-panel h3 {
  margin-bottom: 15px;
  color: #333; 
  font-size: 1.6rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background: #e0e5ec;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
              inset -2px -2px 5px rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 15px;
  display: inline-block;
}

.footer-panel p,
.footer-panel ul,
.footer-panel a {
  color: #555; 
  font-size: 1rem;
  text-decoration: none;
  margin: 8px 0;
  background: #e0e5ec; 
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
              inset -2px -2px 5px rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 10px;
  display: inline-block;
  transition: color 0.2s, transform 0.2s ease;
}

.footer-panel ul {
  list-style: none;
  padding: 0;
}

.footer-panel ul li {
  margin-bottom: 10px;
}

.footer-panel ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-panel ul li a:hover {
  color: #000; 
  transform: translateX(5px); 
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.social-icons .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 1.4rem;
  background: #e0e5ec;
  color: #333;
  border-radius: 50%;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2),
              -6px -6px 10px rgba(255, 255, 255, 0.7); 
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-icons .icon:hover {
  background: linear-gradient(135deg, rgba(154, 179, 245, 0.8), rgba(255, 255, 255, 0.6));
  color: #fff;
  transform: translateY(-2px); 
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.2),
              -6px -6px 14px rgba(255, 255, 255, 0.9); 
}

/* end */

/* copyright*/
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.copyright p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1),
    -1px -1px 2px rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* end */
