@charset "UTF-8";
.button,
.lang-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 90px;
}
.button:hover, .button:focus, .button.active,
.lang-btn:hover,
.lang-btn:focus,
.lang-btn.active {
  background-color: #0d6efd;
  color: #fff;
  outline: none;
}

.button {
  background-color: #0d6efd;
  color: #fff;
  border: none;
}
.button:hover, .button:focus, .button.active {
  background-color: #0257d5;
}

.language-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: white;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}

.swiper {
  padding-bottom: 40px; /* space for pagination */
}

.swiper-slide {
  height: auto !important;
}

.swiper-slide .p-4 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

:lang(ar),
[lang=ar],
[dir=rtl] {
  font-family: "Dawjal" !important;
  /* fallback fonts can be adjusted */
}

.image-effect {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.image-effect:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.navigation-style-02 {
  background-color: #e6f0fa;
  padding: 0.5rem 0;
}
.navigation-style-02 .logo img {
  max-height: 150px;
  width: auto;
  display: block;
}
.navigation-style-02 .logo span {
  color: black;
  letter-spacing: 2px;
  font-weight: 1000;
  font-size: 1.25rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.navigation-style-02 .navbar-toggler {
  border-color: #0d6efd;
}
.navigation-style-02 .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230d6efd' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navigation-style-02 .navbar-toggler:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.navigation-style-02 .navbar-nav .nav-link {
  color: #2D3E50;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 1rem;
}
.navigation-style-02 .navbar-nav .nav-link:hover, .navigation-style-02 .navbar-nav .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
}

.collapse {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.collapse.collapsing {
  opacity: 0;
}
.collapse.collapse.show {
  opacity: 1;
}

.banner-inner .subtitle {
  font-size: 1rem;
  color: #555;
}
.banner-inner .titleCustom {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: black;
}
.banner-inner .titleCustom span {
  color: #e74c3c;
  font-weight: 700;
  text-decoration: underline;
  background: -webkit-gradient(linear, left top, right top, from(#e74c3c), to(#f39c12));
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.banner-inner .image-effect img {
  max-width: 100%;
  border-radius: 5px;
}

.hero-section {
  background-color: white !important;
}
.hero-section .hero-title {
  font-size: 2rem;
}
.hero-section .hero-title span {
  color: #0d6efd;
  font-weight: bold;
}
.hero-section .hero-image img {
  max-width: 100%;
  border-radius: 10px;
}
.hero-section .instructor-card .thumb img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .instructor-card .badge-box {
  margin-bottom: 0.5rem;
}
.hero-section .instructor-card .badge-box .badge {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.hero-section .instructor-card .content .text-muted {
  font-size: 0.9rem;
}
.hero-section .instructor-card ul.list-inline {
  margin-top: 1rem;
}
.hero-section .instructor-card ul.list-inline li {
  margin: 0 0.4rem;
}
.hero-section .instructor-card ul.list-inline li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e6f0fa;
  color: #0d6efd;
  border-radius: 50%;
  font-size: 1.2rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.hero-section .instructor-card ul.list-inline li a:hover {
  background-color: #0d6efd;
  color: #fff;
}

.features-section .icon-box-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.features-section .icon-box-item:hover {
  -webkit-box-shadow: 0 6px 15px rgba(13, 110, 253, 0.2);
          box-shadow: 0 6px 15px rgba(13, 110, 253, 0.2);
}
.features-section .icon-box-item .icon {
  margin-bottom: 1rem;
}
.features-section .icon-box-item .icon img {
  max-width: 60px;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
}
.features-section .icon-box-item .icon .title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0d6efd;
}
.features-section .icon-box-item ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.features-section .icon-box-item ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  color: #333;
  cursor: default;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.features-section .icon-box-item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.features-section .icon-box-item ul li:hover {
  color: #024dbc;
}
.features-section .icon-box-item ul li:hover::before {
  color: #013889;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.features-section .btn-wrap {
  margin-top: 1.5rem;
}
.features-section .btn-wrap .toggle-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  border-radius: 2rem;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.features-section .btn-wrap .toggle-btn i.icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.features-section .btn-wrap .toggle-btn:hover, .features-section .btn-wrap .toggle-btn.active {
  background-color: #0d6efd;
  color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(13, 110, 253, 0.6);
          box-shadow: 0 0 10px rgba(13, 110, 253, 0.6);
}
.features-section .btn-wrap .toggle-btn:hover i.icon, .features-section .btn-wrap .toggle-btn.active i.icon {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.features-section .btn-wrap .toggle-btn.expanded i.icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

footer {
  background-color: #222;
  color: #fff;
}
footer small {
  font-size: 0.875rem;
}

.our-services-area-wrapper {
  padding: 3rem 0;
  background-color: #e6f0fa;
}
.our-services-area-wrapper .single-our-services-item {
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: default;
}
.our-services-area-wrapper .single-our-services-item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
          box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
}
.our-services-area-wrapper .single-our-services-item .icon {
  margin-bottom: 1rem;
}
.our-services-area-wrapper .single-our-services-item .icon img {
  max-width: 60px;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
}
.our-services-area-wrapper .single-our-services-item .icon .title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0d6efd;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: center;
}
.our-services-area-wrapper .single-our-services-item .icon .title[dir=rtl] {
  font-family: "Dawjal", sans-serif;
  direction: rtl;
}
.our-services-area-wrapper .single-our-services-item .icon .title a {
  text-decoration: none !important;
  color: inherit;
  cursor: default;
  pointer-events: none;
  display: inline-block;
  width: 100%;
}
.our-services-area-wrapper .single-our-services-item .language-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}
.our-services-area-wrapper .single-our-services-item .language-toggle .lang-btn {
  border: 2px solid #0d6efd;
  background-color: transparent;
  color: #0d6efd;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  margin: 0 0.3rem;
  border-radius: 0.375rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.our-services-area-wrapper .single-our-services-item .language-toggle .lang-btn.active, .our-services-area-wrapper .single-our-services-item .language-toggle .lang-btn:hover {
  background-color: #0d6efd;
  color: #fff;
}
.our-services-area-wrapper .single-our-services-item .content {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #343a40;
  line-height: 1.5;
}
.our-services-area-wrapper .single-our-services-item .content[dir=rtl] {
  font-family: "Dawjal", sans-serif;
  text-align: center;
  direction: rtl;
}
.our-services-area-wrapper .single-our-services-item .content .short-list,
.our-services-area-wrapper .single-our-services-item .content .full-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 1rem;
  display: inline-block;
  text-align: left;
  direction: ltr;
}
.our-services-area-wrapper .single-our-services-item .content .short-list[dir=rtl],
.our-services-area-wrapper .single-our-services-item .content .full-list[dir=rtl] {
  direction: rtl;
  text-align: right;
}
.our-services-area-wrapper .single-our-services-item .content .short-list li,
.our-services-area-wrapper .single-our-services-item .content .full-list li {
  margin-bottom: 0.4rem;
}
.our-services-area-wrapper .single-our-services-item .content .short-list li .bullet,
.our-services-area-wrapper .single-our-services-item .content .full-list li .bullet {
  color: #0d6efd;
  font-weight: 700;
  margin-right: 0.4rem;
}
.our-services-area-wrapper .single-our-services-item .btn-wrap {
  margin-top: 1rem;
}
.our-services-area-wrapper .single-our-services-item .btn-wrap .toggle-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 600;
  font-size: 1rem;
  color: #0d6efd;
  cursor: pointer;
  border: 2px solid #0d6efd;
  padding: 0.3rem 0.75rem;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.our-services-area-wrapper .single-our-services-item .btn-wrap .toggle-btn i.icon {
  margin-left: 0.5rem;
}
.our-services-area-wrapper .single-our-services-item .btn-wrap .toggle-btn:hover, .our-services-area-wrapper .single-our-services-item .btn-wrap .toggle-btn.active {
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
}

/* Hide full list by default */
.full-list {
  display: none;
}

.service-details.full-list ul {
  padding-left: 0;
  list-style: none;
  margin: 0 auto;
  max-width: 320px;
  text-align: right;
}
.service-details.full-list ul li {
  margin-bottom: 0.6rem;
}
.service-details.full-list ul li a.service-link {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0d6efd;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
}
.service-details.full-list ul li a.service-link:hover, .service-details.full-list ul li a.service-link:focus {
  color: #024dbc;
  text-decoration: underline;
  outline: none;
}
.service-details.full-list ul li a.service-link .ar-text {
  direction: rtl;
  font-family: "Dawjal", sans-serif;
  white-space: nowrap;
}
.service-details.full-list ul li a.service-link .de-text {
  direction: ltr;
  white-space: nowrap;
  color: #0d6efd;
}

@-webkit-keyframes gasGlowRed {
  0%, 100% {
    text-shadow: 0 0 6px rgba(7, 78, 200, 0.6), 0 0 12px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd;
  }
  50% {
    text-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd, 0 0 40px #0d6efd;
  }
}

@keyframes gasGlowRed {
  0%, 100% {
    text-shadow: 0 0 6px rgba(7, 78, 200, 0.6), 0 0 12px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd;
  }
  50% {
    text-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd, 0 0 40px #0d6efd;
  }
}
@-webkit-keyframes gasGlowLight {
  0%, 100% {
    text-shadow: 0 0 5px rgba(237, 229, 226, 0.6), 0 0 10px rgba(237, 229, 226, 0.5), 0 0 15px rgba(237, 229, 226, 0.4);
  }
  50% {
    text-shadow: 0 0 8px rgba(237, 229, 226, 0.9), 0 0 14px rgba(237, 229, 226, 0.8), 0 0 20px rgba(237, 229, 226, 0.7);
  }
}
@keyframes gasGlowLight {
  0%, 100% {
    text-shadow: 0 0 5px rgba(237, 229, 226, 0.6), 0 0 10px rgba(237, 229, 226, 0.5), 0 0 15px rgba(237, 229, 226, 0.4);
  }
  50% {
    text-shadow: 0 0 8px rgba(237, 229, 226, 0.9), 0 0 14px rgba(237, 229, 226, 0.8), 0 0 20px rgba(237, 229, 226, 0.7);
  }
}
.out-services-wrapper .breadcrumb-wrap .breadcrumb-content .title {
  color: #0b0b0b;
  -webkit-animation: gasGlowBlue 3s ease-in-out infinite;
          animation: gasGlowBlue 3s ease-in-out infinite;
  font-weight: 800;
}
.out-services-wrapper .breadcrumb-wrap .breadcrumb-content .details {
  color: #0c0c0c;
  -webkit-animation: gasGlowLight 3s ease-in-out infinite;
          animation: gasGlowLight 3s ease-in-out infinite;
  font-weight: 800;
}

.category-section-area {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  -webkit-box-shadow: 8px 8px 15px rgba(13, 110, 253, 0.15), -8px -8px 15px rgba(235, 244, 255, 0.85);
          box-shadow: 8px 8px 15px rgba(13, 110, 253, 0.15), -8px -8px 15px rgba(235, 244, 255, 0.85);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.category-section-area .theme-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.category-section-area .theme-section-title .subtitle {
  font-weight: 600;
  color: #0d6efd;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}
.category-section-area .theme-section-title .title {
  font-weight: 700;
  font-size: 2rem;
  color: #212529;
}
.category-section-area .category-item {
  background: #e7f1ff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  -webkit-box-shadow: 8px 8px 15px rgba(13, 110, 253, 0.15), -8px -8px 15px rgba(235, 244, 255, 0.85);
          box-shadow: 8px 8px 15px rgba(13, 110, 253, 0.15), -8px -8px 15px rgba(235, 244, 255, 0.85);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  text-align: center;
}
.category-section-area .category-item:hover {
  -webkit-box-shadow: 4px 4px 12px rgba(13, 110, 253, 0.3), -4px -4px 12px rgb(235, 244, 255);
          box-shadow: 4px 4px 12px rgba(13, 110, 253, 0.3), -4px -4px 12px rgb(235, 244, 255);
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  background: white;
}
.category-section-area .category-item .icon {
  margin-bottom: 1rem;
}
.category-section-area .category-item .icon img {
  max-width: 60px;
  height: auto;
  margin: 0 auto;
  display: block;
  -webkit-filter: drop-shadow(0 0 1px rgba(13, 110, 253, 0.3));
          filter: drop-shadow(0 0 1px rgba(13, 110, 253, 0.3));
}
.category-section-area .category-item .content {
  text-align: center;
  margin: 0 auto;
  max-width: 90%;
  color: #0d6efd;
}
.category-section-area .category-item .content h4.title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0d6efd;
}
.category-section-area .category-item .content ul.short-list,
.category-section-area .category-item .content ul.full-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 1rem;
  display: inline-block;
  text-align: center;
}
.category-section-area .category-item .content ul.short-list[dir=rtl],
.category-section-area .category-item .content ul.full-list[dir=rtl] {
  direction: rtl;
  text-align: center;
}
.category-section-area .category-item .content ul.short-list li,
.category-section-area .category-item .content ul.full-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #0047b3;
}
.category-section-area .category-item .content ul.short-list li .bullet,
.category-section-area .category-item .content ul.full-list li .bullet {
  color: #0d6efd;
  font-weight: 700;
  margin-right: 0.4rem;
}
.category-section-area .category-item .content .btn-wrap {
  margin-top: 1rem;
}
.category-section-area .category-item .content .btn-wrap .toggle-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 600;
  font-size: 1rem;
  color: #0d6efd;
  cursor: pointer;
  border: 2px solid #0d6efd;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.category-section-area .category-item .content .btn-wrap .toggle-btn i.icon {
  margin-left: 0.5rem;
}
.category-section-area .category-item .content .btn-wrap .toggle-btn:hover, .category-section-area .category-item .content .btn-wrap .toggle-btn.active {
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
}

@-webkit-keyframes gasGlowBlue {
  0%, 100% {
    text-shadow: 0 0 6px rgba(7, 78, 200, 0.6), 0 0 12px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd;
  }
  50% {
    text-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd, 0 0 40px #0d6efd;
  }
}

@keyframes gasGlowBlue {
  0%, 100% {
    text-shadow: 0 0 6px rgba(7, 78, 200, 0.6), 0 0 12px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd;
  }
  50% {
    text-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd, 0 0 30px #0d6efd, 0 0 40px #0d6efd;
  }
}
@keyframes gasGlowLight {
  0%, 100% {
    text-shadow: 0 0 5px rgba(237, 229, 226, 0.6), 0 0 10px rgba(237, 229, 226, 0.5), 0 0 15px rgba(237, 229, 226, 0.4);
  }
  50% {
    text-shadow: 0 0 8px rgba(237, 229, 226, 0.9), 0 0 14px rgba(237, 229, 226, 0.8), 0 0 20px rgba(237, 229, 226, 0.7);
  }
}
#Beliebte-Themen .theme-section-title .subtitle {
  color: #0b0b0b;
  font-weight: 1000;
  -webkit-animation: gasGlowBlue 3s ease-in-out infinite;
          animation: gasGlowBlue 3s ease-in-out infinite;
  display: inline-block;
}
#Beliebte-Themen .theme-section-title .title {
  color: #0c0c0c;
  font-weight: 800;
  -webkit-animation: gasGlowLight 3s ease-in-out infinite;
          animation: gasGlowLight 3s ease-in-out infinite;
}

#ibdaa-news .blog-grid-item {
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}

#ibdaa-news .blog-grid-item:hover {
  -webkit-box-shadow: 0 12px 20px rgba(13, 110, 253, 0.25);
          box-shadow: 0 12px 20px rgba(13, 110, 253, 0.25);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  z-index: 10;
}

#ibdaa-news .blog-grid-item .thumbnail img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

#ibdaa-news .blog-grid-item:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#ibdaa-news .more-btn {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#ibdaa-news .more-btn:hover {
  color: #0d6efd; /* Bootstrap primary blue */
  text-decoration: underline;
}

/* Optional: Add subtle fade-in animation on scroll */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#ibdaa-news .blog-grid-item {
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
  opacity: 0; /* start hidden */
}

#ibdaa-news .blog-grid-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

#ibdaa-news .blog-grid-item:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#ibdaa-news .blog-grid-item:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#student-feedback {
  background-color: #f8f9fa;
  padding: 4rem 0;
}
#student-feedback .theme-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
#student-feedback .theme-section-title .subtitle {
  display: block;
  font-weight: 600;
  color: #0d6efd;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
#student-feedback .theme-section-title .title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #212529;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#student-feedback .theme-section-title .title-shape {
  margin-top: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 355px;
}
#student-feedback .theme-section-title .title-shape path {
  stroke-linejoin: round;
}
#student-feedback .image-box-item {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.05), -8px -8px 20px rgba(255, 255, 255, 0.7);
          box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.05), -8px -8px 20px rgba(255, 255, 255, 0.7);
  padding: 1rem;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
#student-feedback .image-box-item:hover {
  -webkit-box-shadow: 0 12px 28px rgba(13, 110, 253, 0.3), 0 -4px 16px rgba(255, 255, 255, 0.9);
          box-shadow: 0 12px 28px rgba(13, 110, 253, 0.3), 0 -4px 16px rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
#student-feedback .image-box-item .thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
#student-feedback .image-box-item .thumbnail img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-box-shadow: 0 8px 18px rgba(13, 110, 253, 0.2);
          box-shadow: 0 8px 18px rgba(13, 110, 253, 0.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 1rem;
}
#student-feedback .image-box-item .thumbnail:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#student-feedback .image-box-item .thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 110, 253, 0);
  border-radius: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
#student-feedback .image-box-item .thumbnail:hover::before {
  background-color: rgba(13, 110, 253, 0.3);
}
#student-feedback .image-box-item .thumbnail .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.75);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
          box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  z-index: 2;
}
#student-feedback .image-box-item .thumbnail .video-play-btn svg path {
  fill: #fff;
}
#student-feedback .image-box-item .thumbnail .video-play-btn:hover {
  background: #0d6efd;
  -webkit-box-shadow: 0 0 20px rgba(13, 110, 253, 0.9);
          box-shadow: 0 0 20px rgba(13, 110, 253, 0.9);
}
#student-feedback .image-box-item .content {
  margin-top: 1rem;
  text-align: center;
}
#student-feedback .image-box-item .content .title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0d6efd;
  margin-bottom: 0.25rem;
}
#student-feedback .image-box-item .content p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #student-feedback .image-box-item {
    margin-bottom: 2rem;
  }
}

.section-about-us {
  background: #f8f9fa;
  color: #333333;
  padding: 3rem 1.5rem;
}
.section-about-us .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-about-us .text-column {
  background: #e6f0fa;
  padding: 2rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  max-height: 600px;
  overflow-y: auto;
}
.section-about-us h3 {
  color: #0d6efd;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-about-us p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #555555;
}
.section-about-us ul.list-unstyled {
  max-width: 100%;
}
.section-about-us ul.list-unstyled li {
  margin-bottom: 1.25rem;
}
.section-about-us ul.list-unstyled li .me-3 img {
  max-width: 40px;
  margin-top: 6px;
}
.section-about-us ul.list-unstyled li p {
  margin-bottom: 0.4rem;
}
.section-about-us .btn-primary {
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  font-weight: 600;
  border-radius: 0.375rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.section-about-us .btn-primary:hover, .section-about-us .btn-primary:focus {
  background-color: #0257d5;
  border-color: #0257d5;
  text-decoration: none;
  color: #fff;
}
.section-about-us .image-column {
  text-align: center;
  padding: 1rem;
}
.section-about-us .image-column img {
  max-height: 320px;
  width: auto;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .section-about-us .text-column {
    max-height: none;
    overflow-y: visible;
    padding: 1rem 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
  }
  .section-about-us .image-column {
    padding: 1rem 0 2rem;
  }
}

@keyframes gasGlowRed {
  0%, 100% {
    text-shadow: 0 0 6px rgba(211, 47, 47, 0.6), 0 0 12px rgba(244, 67, 54, 0.5), 0 0 20px rgba(211, 47, 47, 0.4), 0 0 30px rgba(244, 67, 54, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.8), 0 0 20px rgba(244, 67, 54, 0.7), 0 0 30px rgba(211, 47, 47, 0.6), 0 0 40px rgba(244, 67, 54, 0.5);
  }
}
@-webkit-keyframes gasGlowYellow {
  0%, 100% {
    text-shadow: 0 0 6px rgba(251, 192, 45, 0.6), 0 0 12px rgba(255, 235, 59, 0.5), 0 0 20px rgba(251, 192, 45, 0.4), 0 0 30px rgba(255, 235, 59, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.8), 0 0 20px rgba(255, 235, 59, 0.7), 0 0 30px rgba(251, 192, 45, 0.6), 0 0 40px rgba(255, 235, 59, 0.5);
  }
}
@keyframes gasGlowYellow {
  0%, 100% {
    text-shadow: 0 0 6px rgba(251, 192, 45, 0.6), 0 0 12px rgba(255, 235, 59, 0.5), 0 0 20px rgba(251, 192, 45, 0.4), 0 0 30px rgba(255, 235, 59, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.8), 0 0 20px rgba(255, 235, 59, 0.7), 0 0 30px rgba(251, 192, 45, 0.6), 0 0 40px rgba(255, 235, 59, 0.5);
  }
}
@keyframes gasGlowLight {
  0%, 100% {
    text-shadow: 0 0 5px rgba(237, 229, 226, 0.6), 0 0 10px rgba(237, 229, 226, 0.5), 0 0 15px rgba(237, 229, 226, 0.4);
  }
  50% {
    text-shadow: 0 0 8px rgba(237, 229, 226, 0.9), 0 0 14px rgba(237, 229, 226, 0.8), 0 0 20px rgba(237, 229, 226, 0.7);
  }
}
.section-stats {
  background-color: #f8f9fa;
  padding: 3rem 0;
}
.section-stats .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-stats .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.section-stats .col-md-4 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 33.3333%;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section-stats .col-md-4 {
    max-width: 100%;
  }
}
.section-stats .col-md-4 .counter-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}
.section-stats .col-md-4 h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  margin: 0;
}
.section-stats .col-md-4 h3.counter {
  color: #d32f2f;
  -webkit-animation: gasGlowRed 3s ease-in-out infinite;
          animation: gasGlowRed 3s ease-in-out infinite;
}
.section-stats .col-md-4 h3.percent {
  color: #fbc02d;
  -webkit-animation: gasGlowYellow 3s ease-in-out infinite;
          animation: gasGlowYellow 3s ease-in-out infinite;
}
.section-stats .col-md-4 p {
  margin-top: 0.75rem;
  font-size: 2rem;
  color: #0d0d0d;
  line-height: 1.4;
  -webkit-animation: gasGlowLight 3s ease-in-out infinite;
          animation: gasGlowLight 3s ease-in-out infinite;
}
.section-stats .col-md-4 p .arabic-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  direction: rtl;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #6c757d;
  -webkit-animation: none;
          animation: none;
}

.section-why-choose-us {
  background: #fff;
  padding: 3rem 1.5rem;
}
.section-why-choose-us .image-column {
  background-color: #0d6efd;
}
.section-why-choose-us .image-column img {
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-why-choose-us .text-column {
  background-color: #e6f0fa;
}
.section-why-choose-us .text-column h4 {
  color: #0d6efd;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.section-why-choose-us .text-column p {
  background-color: #d6e9ff;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
}
.section-why-choose-us .text-column p .arabic-text {
  direction: rtl;
  font-family: "Dawjal", sans-serif;
  color: #555555;
}
.section-why-choose-us .text-column p .german-text {
  direction: ltr;
  font-family: "Arial", sans-serif;
  color: #2D3E50;
}
@media (max-width: 991px) {
  .section-why-choose-us .image-column {
    max-height: 250px;
    margin-bottom: 1.5rem;
  }
}

.section-vision-mission-goal {
  background-color: #f8f9fa;
  padding: 4rem 0;
}
.section-vision-mission-goal ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.section-vision-mission-goal li {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.section-vision-mission-goal li:hover {
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section-vision-mission-goal .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  background-color: #e6f0fa;
}
.section-vision-mission-goal .icon-column {
  max-width: 120px;
}
.section-vision-mission-goal .icon-column img {
  max-width: 100%;
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}
.section-vision-mission-goal .content-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-vision-mission-goal .content-column h4.fw-bold {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #0d6efd;
  /* Animate header with subtle scale + fade */
  -webkit-animation: headerPopIn 0.8s ease forwards;
          animation: headerPopIn 0.8s ease forwards;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.section-vision-mission-goal .content-column p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
.section-vision-mission-goal .content-column p .arabic-text {
  direction: rtl;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-top: 1rem;
}

@-webkit-keyframes headerPopIn {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes headerPopIn {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
  }
}
.footer-lightblue {
  background-color: #d6e9ff;
  color: black;
}
.footer-lightblue i.fas {
  color: #000;
}
.footer-lightblue .text-black {
  color: #000 !important;
}
.footer-lightblue .border-top {
  border-color: rgba(0, 0, 0, 0.1);
}
.footer-lightblue small.text-muted {
  color: rgba(0, 0, 0, 0.6);
}

section {
  padding: 1.5rem 0;
}

.features-section {
  background-color: #e6f0fa;
}
.features-section h4 {
  color: #0d6efd;
  margin-bottom: 0.5rem;
}
.features-section p {
  color: #555555;
  font-size: 0.95rem;
}

.hero-section {
  background-color: #2D3E50;
  color: #fff;
}
.hero-section h2 {
  font-size: 2rem;
}
.hero-section p {
  font-size: 1.1rem;
}

.blog-details-wrapper section .container article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.blog-details-wrapper section .container article > div.col-lg-8,
.blog-details-wrapper section .container article aside.col-lg-4 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .blog-details-wrapper section .container article > div.col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
            flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .blog-details-wrapper section .container article aside.col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
.blog-details-wrapper section .container article header.d-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.blog-details-wrapper section .container article header.d-flex > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .blog-details-wrapper section .container article header.d-flex > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 48%;
            flex: 1 1 48%;
    max-width: 48%;
  }
}
.blog-details-wrapper section .container article section ul.list-group li.list-group-item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

[dir=rtl], [dir=ltr] {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

.modal-dialog {
  max-width: 95vw;
}

.modal-content video {
  max-width: 100%;
  height: auto;
}

.contact-form-area-wrapper {
  background-color: #e6f0fa;
  padding: 4rem 0;
}
.contact-form-area-wrapper .custom-container-01 {
  max-width: 1140px;
  margin: 0 auto;
}
.contact-form-area-wrapper .apply-form-inner {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-form-area-wrapper .apply-form-inner .contact-address,
.contact-form-area-wrapper .apply-form-inner img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 45%;
}
.contact-form-area-wrapper .apply-form-inner img {
  max-width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.contact-form-area-wrapper .contact-address .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0d6efd;
}
.contact-form-area-wrapper .contact-address .contact-address-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #212529;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item .icon-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item .icon-wrap.color-01 {
  background-color: #cfe2ff;
  color: #084298;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item .icon-wrap.color-02 {
  background-color: #d1e7dd;
  color: #0f5132;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item .icon-wrap.color-03 {
  background-color: #f8d7da;
  color: #842029;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item .icon-wrap .icon {
  font-size: 1.25rem;
}
.contact-form-area-wrapper .contact-address .contact-address-list li.single-address-item .text {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  display: inline-block;
}
.contact-form-area-wrapper .contact-address .social-media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.contact-form-area-wrapper .contact-address .social-media-list li.single-social-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e7f1ff;
  color: #0d6efd;
  font-size: 1.25rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-form-area-wrapper .contact-address .social-media-list li.single-social-item a:hover, .contact-form-area-wrapper .contact-address .social-media-list li.single-social-item a:focus {
  background-color: #0d6efd;
  color: #fff;
  outline: none;
}
@media (max-width: 991.98px) {
  .contact-form-area-wrapper .apply-form-inner {
    padding: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .contact-form-area-wrapper {
    padding: 2rem 0;
  }
  .contact-form-area-wrapper .apply-form-inner {
    padding: 1rem;
  }
  .contact-form-area-wrapper .contact-address-list li.single-address-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-form-area-wrapper .contact-address-list li.single-address-item .icon-wrap {
    margin-bottom: 0.5rem;
  }
  .contact-form-area-wrapper .contact-address-list li.single-address-item .text {
    white-space: normal;
    max-width: 100%;
  }
  .contact-form-area-wrapper .social-media-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}