@charset "UTF-8";
/* arabic */
@font-face {
  font-family: "Readex Pro";
  font-style: normal;
  font-weight: 160 700;
  font-display: swap;
  src: url(fonts/readexpro/v22/SLXYc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2Iw1ZEzMhQ.woff2) format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* vietnamese */
@font-face {
  font-family: "Readex Pro";
  font-style: normal;
  font-weight: 160 700;
  font-display: swap;
  src: url(fonts/readexpro/v22/SLXYc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2Iw_ZEzMhQ.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Readex Pro";
  font-style: normal;
  font-weight: 160 700;
  font-display: swap;
  src: url(fonts/readexpro/v22/SLXYc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2Iw-ZEzMhQ.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Readex Pro";
  font-style: normal;
  font-weight: 160 700;
  font-display: swap;
  src: url(fonts/readexpro/v22/SLXYc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2IwwZEw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #009688 0%, #06a899 50%, #009688 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.6s ease-out;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.preloader-text {
  margin-bottom: 2rem;
}
.preloader-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: textFade 2s ease-in-out infinite;
}
.preloader-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
}

.h6, h6 {
  font-size: 0.85rem;
}

.h5, h5 {
  font-size: 1rem;
}

.preloader-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.spinner-ring {
  position: absolute;
  border-radius: 50%;
}
.spinner-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
  animation: spin 1.5s linear infinite;
}
.spinner-ring:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 10px;
  left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid white;
  animation: spin 1.2s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes textFade {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
body {
  direction: rtl;
  font-family: "Readex Pro", sans-serif;
  color: #4c4c4c;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 576px) {
  .ms-xs-4 {
    margin-left: 1rem !important;
  }
}
a:not(.btn, .dropdown-item) {
  color: #00a39d;
  text-decoration: none;
  transition: color 0.18s;
  font-size: 0.85rem;
}
a:not(.btn, .dropdown-item):hover, a:not(.btn, .dropdown-item):focus {
  color: rgb(0, 101.8, 98.0527607362);
  text-decoration: none;
}

.btn-primary {
  background-color: #00a39d !important;
  border-color: #00a39d !important;
}

.text-primary {
  color: #00a39d !important;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: #4c4c4c;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(48deg, #00a39d 0%, #00cbc4 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover {
  color: #00a39d;
}
@media (min-width: 1024px) {
  .navbar-nav .nav-link:hover::before {
    width: 80%;
  }
}
.navbar-nav .nav-link.active {
  color: #00a39d;
}
@media (min-width: 1024px) {
  .navbar-nav .nav-link.active::before {
    width: 80%;
  }
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #008b85 !important;
  border-color: #008b85 !important;
}

.btn-outline-primary {
  color: #00a39d !important;
  border-color: #00a39d !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #fff !important;
  background-color: #00a39d !important;
  border-color: #00a39d !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.section-title {
  color: #00a39d;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.encs-bg {
  background: url(../../images/newDesignImages/encs-bg.png) no-repeat left top;
}

.quote-left-bg {
  background: url(../../images/newDesignImages/quote-left.png) no-repeat center center;
}

/* Styles for hero section */
.hero {
  padding: 8rem 1rem;
  text-align: center;
  color: #fff;
  height: 524px;
  position: relative;
}
.hero::after, .hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.hero::before {
  background-image: url("../../images/newDesignImages/hero-image1.jpg");
  background-size: cover;
  background-position: center;
}
.hero::after {
  background: #002625;
  opacity: 0.3;
}
.hero h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Additional styles for sections */
.section {
  padding: 3.5rem 1rem;
}

footer {
  background-color: #343a40;
  color: #fff;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.feature-card .feature-icon .fas,
.feature-card .feature-icon .fa, .enc-card .icon .fas,
.enc-card .icon .fa,
.nav-container .icon .fas,
.nav-container .icon .fa {
  background: linear-gradient(48deg, #00a39d 0%, #00cbc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 1px;
}

.enc-card,
.nav-container {
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  display: inline-flex !important;
  transition: transform 0.3s;
}
.enc-card > a,
.nav-container > a {
  text-decoration: none;
  color: #4c4c4c;
  display: flex;
  align-content: center;
  align-items: center;
}
.enc-card > a:hover,
.nav-container > a:hover {
  color: #00a39d;
}
.enc-card .icon,
.nav-container .icon {
  font-size: 2.2rem;
  color: #009688;
}
.enc-card .card-title,
.nav-container .card-title {
  margin: 0;
  padding-bottom: 4px;
}
.enc-card .card-text,
.nav-container .card-text {
  margin: 0;
  color: #666;
  font-size: 0.8rem;
}
.enc-card.english-card,
.nav-container.english-card {
  justify-content: flex-end;
  text-align: left;
}

.pill-icon {
  font-size: 2.2rem;
  color: #009688;
}

.tab-pane.english .enc-card {
  justify-content: flex-end !important;
  text-align: left;
}

.enc-card:hover {
  transform: translateY(-5px);
}

/* custom nav-pills */
.nav-container {
  padding: 0;
  margin-top: 4px;
}
.nav-container .nav-pills {
  width: 100%;
}
.nav-container .nav-pills span {
  font-size: 0.7rem;
  display: block;
}
.nav-container .nav-pills .pill-icon {
  font-size: 2rem;
}
.nav-container .nav-pills .nav-pill-description {
  color: #707070;
}
.nav-container .nav-pills .nav-link:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
}

.nav-pills .nav-link {
  color: #4c4c4c !important;
  padding: 20px 10px;
  position: relative;
}
.nav-pills .nav-link:hover {
  background-color: #f9f9f9;
}
.nav-pills .nav-link.active, .show > .nav-pills .nav-link {
  color: #00a39d;
  background-color: white;
}
.nav-pills .nav-link.active::after, .show > .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fff;
}

@media (max-width: 992px) {
  .nav-tabs.nav-fill-md .nav-item .nav-link {
    width: 100%;
  }
  .nav-tabs.nav-fill-md .nav-item, .nav-tabs.nav-fill-md .nav-fill > .nav-link {
    flex: 1 1 auto;
    text-align: center;
    width: 100%;
  }
  .nav-tabs.nav-fill-md .nav-link.active::after {
    right: 0%;
    left: 0%;
  }
}

/* sections  */
.light-section {
  background-color: #f5f5f5;
}

.services-section .enc-card {
  border: 1px solid #e1e1e1;
  background: url(../../images/newDesignImages/services-items-bg.jpg) no-repeat bottom left;
}

.legal-encyclopedias-section .nav-pill-title {
  font-size: 0.75rem;
  font-weight: bold;
}

/* why mohamoon */
.feature-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  height: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 190px;
  opacity: 0.015;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  display: grid;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  align-content: center;
  justify-content: start;
  align-items: center;
}
.feature-card.bg-clipboard::before {
  content: "\f46d";
}
.feature-card.bg-clock::before {
  content: "\f017";
}
.feature-card.bg-searchengin::before {
  content: "\f3eb";
  font-family: "Font Awesome 6 Brands";
}
.feature-card.bg-link::before {
  content: "\f0c1";
}
.feature-card.bg-book::before {
  content: "\f02d";
}
.feature-card.bg-sync::before {
  content: "\f02f";
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-card .feature-icon {
  color: #00a39d;
  font-size: 3rem;
  margin-bottom: 0.8rem;
}
.feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.feature-card .feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* Subscription section styles */
.subscribe-section {
  background-color: #2b2d33;
  padding: 3rem 0;
}

.subscribe-heading {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
}

/* Input field with icon positioning */
.input-with-icon {
  position: relative;
}

.input-with-icon .form-control {
  padding-right: 40px;
  direction: rtl;
  text-align: right;
  height: 50px;
}
.input-with-icon .form-control::placeholder {
  font-size: 14px;
  font-weight: normal;
  opacity: 0.5;
}

.input-with-icon .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #00a39d;
}

/* Subscribe button styles */
.btn-subscribe {
  background-color: #00a39d;
  color: white;
  border: none;
  padding: 8px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-subscribe:hover {
  background-color: #008b85;
}

/* Main footer info section */
.footer-info {
  background-color: #212329;
  padding: 3rem 0;
  color: white;
}

/* Footer column styles */
.footer-column h4 {
  color: #00a39d;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 0.8rem;
}
.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #00a39d;
}

/* Social media links styles */
.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #2b2d33;
  color: white;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}
.social-links a:hover {
  background-color: #00a39d;
  color: white;
}

/* Bottom footer styles */
.footer-bottom {
  background-color: #191a1f;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 10px;
  font-size: 0.75rem;
}
.footer-bottom a:hover {
  color: #00a39d;
}

/* Copyright text */
.copyright {
  margin-top: 0.5rem;
  color: #ababab;
  font-size: 0.9rem;
}

/* Maroof badge styles */
.maroof-badge img {
  max-width: 100px;
  margin-bottom: 1rem;
}

.breadcrumb-section {
  background-color: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}
.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  direction: rtl;
  text-align: right;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
  margin-left: 0;
  color: #6c757d;
  margin-left: 0rem;
}
.breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: right;
}
.breadcrumb-section .breadcrumb .breadcrumb-item::before {
  color: #6c757d;
  content: "›";
  margin-left: 0.5rem;
}
.breadcrumb-section .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #00a39d;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
  color: #008b85;
  text-decoration: underline;
}
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
  color: #495057;
}
.breadcrumb-section.ltr .breadcrumb-item + .breadcrumb-item::before {
  float: left;
}
.breadcrumb-section.ltr .breadcrumb-item::before {
  margin-right: 0.5rem;
  margin-left: 0;
}

.page-banner {
  background: linear-gradient(135deg, rgba(0, 163, 157, 0.85) 0%, rgba(0, 203, 196, 0.8) 30%, rgba(0, 139, 133, 0.85) 70%, rgba(0, 100, 95, 0.8) 100%);
  background-image: linear-gradient(135deg, rgba(0, 163, 157, 0.85) 0%, rgba(0, 203, 196, 0.8) 30%, rgba(0, 139, 133, 0.85) 70%, rgba(0, 100, 95, 0.8) 100%), url("../../images/newDesignImages/page-banner-bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 163, 157, 0.3);
}
.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
}
.page-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  animation: shimmer 4s infinite;
}
.page-banner .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-banner .page-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .page-banner .page-title {
    font-size: 2.25rem;
  }
}
.page-banner .page-title.page-title-text-sm {
  font-size: 1.8rem;
}
.page-banner .page-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-banner.page-banner-ltr {
  text-align: left;
  direction: ltr;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-about-section, .page-encyclopedias-section, .page-services-section, .page-contact-section {
  padding-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-about-section h2, .page-encyclopedias-section h2, .page-services-section h2, .page-contact-section h2 {
  font-weight: 600;
  color: #00a39d;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.page-about-section h3, .page-encyclopedias-section h3, .page-services-section h3, .page-contact-section h3 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.page-about-section p, .page-encyclopedias-section p, .page-services-section p, .page-contact-section p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.page-about-section ul li, .page-encyclopedias-section ul li, .page-services-section ul li, .page-contact-section ul li {
  line-height: 1.6;
  color: #555;
}
.page-about-section ul li i, .page-encyclopedias-section ul li i, .page-services-section ul li i, .page-contact-section ul li i {
  font-size: 1rem;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .page-about-section h2, .page-encyclopedias-section h2, .page-services-section h2, .page-contact-section h2 {
    font-size: 1.5rem;
  }
  .page-about-section h3, .page-encyclopedias-section h3, .page-services-section h3, .page-contact-section h3 {
    font-size: 1.125rem;
  }
  .page-about-section p, .page-encyclopedias-section p, .page-services-section p, .page-contact-section p {
    font-size: 0.875rem;
  }
}

.page-contact-section .contact-title {
  font-size: 1.1rem;
}

.encyclopedias-section-link {
  text-align: center;
  margin-top: 2rem;
}

.page-products-section .tab-pane {
  padding: 10px;
}
.page-products-section .enc-card .card-title {
  font-size: 0.8rem;
}
.page-products-section .enc-card .card-text {
  font-size: 0.75rem;
}

.ltr {
  direction: ltr !important;
  text-align: left !important;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-form h2 {
  font-size: 1.625rem;
  font-weight: 600;
  color: #00a39d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.contact-form .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.contact-form .form-control {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.625rem 0.875rem;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 0 1rem;
  }
  .contact-form h2 {
    font-size: 1.375rem;
  }
}

.contact-info {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00a39d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.contact-info .info-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.contact-info .info-item h5 i {
  font-size: 1.125rem;
  margin-left: 0.5rem;
}
.contact-info .info-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact-info {
    padding: 0 1rem;
  }
  .contact-info h2 {
    font-size: 1.25rem;
  }
}

body {
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}

.hero h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.page-about-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #00a39d;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.page-about-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.page-about-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.page-about-section ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.5rem;
}
.page-about-section ul li i {
  font-size: 1rem;
  margin-left: 0.5rem;
}

.contact-form h2 {
  font-size: 1.625rem;
  font-weight: 600;
  color: #00a39d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.contact-form .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.contact-form .form-control {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.625rem 0.875rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00a39d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.contact-info .info-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.contact-info .info-item h5 i {
  font-size: 1.125rem;
  margin-left: 0.5rem;
}
.contact-info .info-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

.enc-card .card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}
.enc-card .card-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666;
  margin-bottom: 0;
}

.feature-card .feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.feature-card .feature-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

.page-banner .page-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.subscribe-section .subscribe-heading {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.subscribe-section .form-label {
  font-size: 0.9rem;
  font-weight: 600;
}
.subscribe-section .form-control {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.625rem;
  }
  .about-content h2 {
    font-size: 1.5rem;
  }
  .about-content h3 {
    font-size: 1.125rem;
  }
  .about-content p {
    font-size: 0.875rem;
  }
  .contact-form h2 {
    font-size: 1.375rem;
  }
  .contact-info h2 {
    font-size: 1.25rem;
  }
  .page-banner .page-title {
    font-size: 2rem;
  }
  .page-banner .page-title.page-title-text-sm {
    font-size: 1.5rem;
  }
  .page-banner .page-subtitle {
    font-size: 0.9rem;
  }
  .subscribe-section .subscribe-heading {
    font-size: 1.375rem;
  }
}
.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: 0;
  display: none;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  padding: 0.5rem 0;
  z-index: 1001;
  animation: fadeInUp 0.2s ease-out;
}

.dropend:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media (min-width: 922px) {
  .dropdown-menu {
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    padding: 0.5rem 0;
    min-width: 250px;
    animation: fadeInUp 0.2s ease-out;
  }
}

.dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #495057;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #00a39d;
}

.dropdown-header {
  color: #00a39d;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid #e9ecef;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar-nav .dropdown-menu {
  margin-top: 0.125rem;
}

@media (max-width: 768px) {
  .dropdown-submenu {
    position: static;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
    border: none;
    border-left: 2px solid #00a39d;
    margin-left: 1rem;
  }
  [dir=rtl] .dropdown-submenu {
    border-left: none;
    border-right: 2px solid #00a39d;
    margin-left: 0;
    margin-right: 1rem;
  }
  .dropend > .dropdown-toggle::after {
    transform: rotate(90deg);
  }
  [dir=rtl] .dropend > .dropdown-toggle::after {
    transform: rotate(-90deg);
  }
}
.nav-tabs {
  border-bottom: 1.5px solid #e3e3e3;
  background: #f8fafd;
  border-radius: 1rem 1rem 0 0;
  box-shadow: none;
  padding: 0.1rem 0.2rem 0 0.2rem;
  display: flex;
  gap: 0.2rem;
  overflow-x: auto;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 0.7rem 0.7rem 0 0;
  background: transparent;
  color: #4c4c4c;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 1.3rem 0.8rem 1.3rem;
  margin-bottom: 0;
  margin-left: 0.05rem;
  margin-right: 0.05rem;
  transition: background 0.18s, color 0.18s;
  position: relative;
  z-index: 1;
  box-shadow: none;
  outline: none;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  color: #00a39d;
  background: #e3f0ff;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background: #00a39d;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 2;
}

.nav-tabs .nav-link i {
  margin-left: 0.5em;
  color: #00a39d;
  font-size: 1em;
  transition: color 0.18s;
}

.nav-tabs .nav-link.active i {
  color: #fff;
}

.nav-tabs .nav-link.active::after {
  content: "";
  display: block;
  position: absolute;
  right: 20%;
  left: 20%;
  bottom: 0;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: #fff;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .nav-tabs {
    font-size: 0.93rem;
    gap: 0.05rem;
  }
  .nav-tabs .nav-link {
    padding: 0.4rem 0.7rem;
    font-size: 0.87rem;
  }
}
.active > .page-link, .page-link.active {
  z-index: 3;
  background-color: #00a39d;
  border-color: #00a39d;
}

.encyclopedia-table {
  width: 100%;
  background: #fafdff;
  border-radius: 1.1rem;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 18px 0 rgba(0, 163, 157, 0.08);
  overflow: hidden;
  margin: 2rem 0 2.5rem 0;
}
.encyclopedia-table th, .encyclopedia-table td {
  padding: 1.1rem 1.3rem;
  border: none;
  vertical-align: top;
  text-align: right;
  transition: background 0.18s, color 0.18s;
}
.encyclopedia-table th {
  background: linear-gradient(90deg, #00a39d 60%, #00cbc4 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-bottom: 3px solid #e3e3e3;
  text-shadow: 0 2px 8px rgba(0, 163, 157, 0.08);
}
.encyclopedia-table tr {
  transition: background 0.18s;
}
.encyclopedia-table tr:nth-child(even) td {
  background: #f1f6fb;
}
.encyclopedia-table tr:nth-child(odd) td {
  background: #fafdff;
}
.encyclopedia-table tr:hover td {
  background: #e0f7fa;
  color: #00a39d;
}
.encyclopedia-table td {
  color: #4c4c4c;
  font-weight: 500;
  border-bottom: 1.5px solid #e3e3e3;
  position: relative;
  z-index: 1;
}
.encyclopedia-table td:first-child {
  background: #e3f0ff;
  color: #00a39d;
  font-weight: 700;
  border-left: 3px solid #00a39d;
  border-radius: 0.7rem 0 0 0.7rem;
}
.encyclopedia-table th:first-child {
  border-radius: 1.1rem 0 0 0;
}
.encyclopedia-table th:last-child {
  border-radius: 0 1.1rem 0 0;
}
.encyclopedia-table tr:last-child td:first-child {
  border-radius: 0 0 0 1.1rem;
}
.encyclopedia-table tr:last-child td:last-child {
  border-radius: 0 0 1.1rem 0;
}

@media (max-width: 600px) {
  .encyclopedia-table th, .encyclopedia-table td {
    padding: 0.6rem 0.4rem;
    font-size: 0.97rem;
  }
}
@media (max-width: 1024px) {
  .navbar-brand {
    margin-bottom: 20px;
  }
  .collapse.show {
    margin-bottom: 20px;
  }
  .navbar-brand {
    flex: auto;
  }
}
.video-container {
  margin-bottom: 40px;
}
.video-container .video-style {
  display: block;
  max-width: 700px;
  margin: auto;
  border: 2px solid #00a39d;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-container .video-style {
    max-width: 100%;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: #00a39d;
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 9999;
  text-align: center;
}

.scroll-to-top.visible {
  display: block;
}

/*# sourceMappingURL=style.css.map */
