/* ====================================== Global CSS ==========================================  */
body {
  background-color: #fff;
  color: #003366;
  font-family: "Source Sans Pro", sans-serif;
}
div#content {
    max-width: 100% !important;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MuseoModerno", cursive;
}

h1 {
  font-weight: 700;
  letter-spacing: normal;
}

h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: normal;
}
h3 {
  font-size: 22.5px;
  letter-spacing: normal;
}

p {
  color: #003366;
  font-weight: 400;
  font-size: 18px;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-slide-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 {
  transition-delay: 0s;
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}
.delay-5 {
  transition-delay: 1s;
}

.highlight {
  font-weight: 700;
  color: #003366;
}

/* Section : Contact Banner css */

.contact-banner .btn-contact-banner {
  background-color: #2b658c;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.contact-banner .btn-contact-banner:hover {
  background-color: #1f4e6c;
  color: #ffffff;
  text-decoration: none;
}

/* =========================================== Webpage CSS =========================================== */

/* Section : AOT vs. JIT Compiler: Which is Better for Angular Development css*/
.aot-jit-section {
  position: relative;
  background-image: url("https://www.monarch-innovation.com/wp-content/uploads/2023/07/AOT-vs.-JIT-Compiler-in-Angular-1400x700.jpg");
  background-size: cover;
  background-position: center;
  background-color: #000;
  height: auto;
  z-index: 1;
  overflow: hidden;
}

.aot-jit-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.aot-jit-section > .container {
  position: relative;
  z-index: 3;
}

.aot-jit-section .section-title,
.aot-jit-section .section-text {
  color: #ffffff;
}

/* Section : Why should you use the AOT (Ahead of Time) compiler? */
.aot-section .aot-cards {
  background-color: #ccd6e0;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .aot-section .aot-cards {
    margin-bottom: 10px;
  }
}

/* Section : What is Ahead of Time (AOT) Compilation? css */
.aot-compilation-section {
  background-color: #ccd6e0;
}

.aot-compilation-section .aot-compilation-div {
  background-color: #fff;
  padding: 60px 50px;
  border-radius: 10px;
  margin: 80px auto;
  max-width: 1200px;
}

.aot-compilation-section .aot-compilation-title {
  color: #124e73;
  font-weight: 500;
  margin-bottom: 50px;
}

.aot-compilation-section .aot-compilation-benefits-cards {
  margin-top: 40px;
}

.aot-compilation-section .aot-compilation-card {
  align-items: start;
  transition: all 0.3s ease;
}

.aot-compilation-section .aot-compilation-icon-box {
  background-color: #ccd6e0;
  padding: 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.aot-compilation-section .aot-compilation-icon {
  font-size: 20px;
  color: #124e73;
}

@media (max-width: 991.98px) {
  .aot-compilation-section .aot-compilation-div {
    padding: 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .aot-compilation-section .aot-compilation-title {
    font-size: 2rem;
  }
  .aot-compilation-section .aot-compilation-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .aot-compilation-section .aot-compilation-div {
    padding: 40px 20px;
  }
}

/* Section : Angular AOT compilation step-by-step guide css */
.angular-aot-section .icon-shape-wrapper {
  position: relative;
  width: 90px;
}

.angular-aot-section .icon-shape-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}

.angular-aot-section .icon-inside {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 24px;
  font-family: "MuseoModerno", cursive;
  color: #003366;
}

.angular-aot-section .digital-box h3 {
  color: #003366;
  flex: 1;
}

.angular-aot-section .code-snippet {
  background-color: #ccd6e0;
  padding: 10px;
  border-radius: 5px;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #003366;
  width: 100%;
}

@media (max-width: 991.98px) {
  .angular-aot-section .title {
    margin-top: 20px;
  }
}

/* Section : What are the benefits of using AOT compilation in Angular?  */
.benefits-aot-section .benefit-item i.benefit-icon {
  font-size: 32px;
  color: #003366;
  min-width: 50px;
  text-align: center;
}

.benefits-aot-section {
  margin-bottom: 25px;
}

/* Section : What is the Just in Time (JIT) compiler?  */
.jit-section {
  background-color: #ccd6e0;
}

.jit-section .jit-div {
  background-color: #fff;
  padding: 60px 50px;
  border-radius: 10px;
  margin: 80px auto;
  max-width: 1200px;
}

.jit-section .jit-title {
  color: #124e73;
  font-weight: 500;
  margin-bottom: 20px;
}

.jit-section .jit-card {
  align-items: start;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .jit-section .jit-div {
    padding: 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .jit-section .jit-title {
    font-size: 2rem;
  }
  .jit-section .jit-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .jit-section .jit-div {
    padding: 40px 20px;
  }
}

/* Section : Why and When Should you use (JIT)Just in Time Compiler? */

.jit-compiler-section .step-bar {
  width: 18px;
  height: 100%;
  min-height: 85px;
  background-color: #ccd6e0;
  border-radius: 2px;
}

.jit-compiler-section .jit-benefit-item {
  max-width: 300px;
  margin-inline: auto;
}

.jit-compiler-section .jit-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.jit-compiler-section .jit-benefit-item h5 {
  margin-bottom: 12px;
}

.jit-compiler-section .jit-benefit-item p {
  line-height: 1.6;
}

/* Section : Difference between AOT and JIT in Angular?  css */
.diff-aot-jit-section {
  background-color: #003366;
}
.diff-aot-jit-section .diff-aot-jit {
  color: #fff;
  line-height: 1.3;
  margin-top: 20px;
}

.diff-aot-jit-section p,
.diff-aot-jit-section h2 {
  color: #fff;
}

.diff-aot-jit-section li {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.diff-aot-jit-section .diff-aot-jit-table {
  border-color: #fff;
  table-layout: fixed;
  width: 100%;
}

.diff-aot-jit-section .diff-aot-jit-table th,
.diff-aot-jit-section .diff-aot-jit-table td {
  background-color: #003366;
  border: 1px solid #003366;
  padding: 1rem;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  width: 33.33%;
}

.diff-aot-jit-section .diff-aot-jit-table tr:nth-child(even) td {
  background-color: #004589;
}

/* Section : Conclusion css */
.conclusion-aot-section h2 {
  color: #003366;
}
.conclusion-aot-section .circle-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: auto;
  border: 10px solid #ccd6e073;
  border-radius: 50%;
}

.conclusion-aot-section .circle-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ccd6e073;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-aot-section .icon-post-completion {
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.conclusion-aot-section .icon-plan-comparison {
  top: -15px;
  left: 70%;
  transform: translateX(-50%);
}

.conclusion-aot-section .icon-permanent-record {
  bottom: -15px;
  left: 70%;
  transform: translateX(-50%);
}

@media (max-width: 1000px) {
  .conclusion-aot-section .circle-container {
    margin-bottom: 2rem;
  }
}

/* Section: FAQs css */
.faqs-aot-section .faq-container {
  margin: auto;
  font-family: "Source Sans Pro", sans-serif;
}

.faqs-aot-section .faq-item {
  padding: 15px 0;
  cursor: pointer;
}

.faqs-aot-section .faq-question {
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: color 0.3s;
  font-family: "Source Sans Pro", sans-serif;
}

.faqs-aot-section .faq-question:hover {
  color: #0056b3;
}

.faqs-aot-section .faq-arrow {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.faqs-aot-section .faq-answer {
  display: none;
  padding-left: 28px;
  font-size: 18px;
  margin-top: 5px;
  color: #003366;
}

.faqs-aot-section .faq-item.open .faq-answer {
  display: block;
}

.faqs-aot-section .faq-item.open .faq-arrow {
  transform: rotate(90deg); /* Arrow down */
}

/* Section: Types of Technical Drawing */
.types-technical-drawing-section .types-technical-drawing-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.types-technical-drawing-section .types-technical-drawing-cards-info-card {
  color: #003366;
  padding: 30px;
  width: 32%;
  transition: transform 0.3s ease;
}
.types-technical-drawing-section h4.mb-3.card-text {
  color: #003366;
}

@media screen and (max-width: 1200px) {
  .types-technical-drawing-section .types-technical-drawing-cards-info-card {
    width: 30%;
  }
}

@media (max-width: 991px) {
  .types-technical-drawing-section .types-technical-drawing-cards-info-card {
    width: 100%;
  }
}

/* Section : Assembly Drawing css */
.assembly-section h4.mb-3.card-text {
  color: #003366;
}

/* Section : Architectural Drawing css */
.architectural-section h4.mb-3.card-text {
  color: #003366;
}
.architectural-section img {
  margin-bottom: 50px;
}

/* .diff-aot-jit-section .faqs-benefits-of-level-div h2 {
  color: #fff;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-container {
  margin: auto;
  font-family: Arial, sans-serif;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-item {
  padding: 15px 0;
  cursor: pointer;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-question {
  display: flex;
  color: #fff;
  align-items: center;
  font-size: 18px;
  transition: color 0.3s;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-arrow {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-answer {
  display: none;
  padding-left: 28px;
  font-size: 18px;
  margin-top: 5px;
  color: #fff;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-item.open .faq-answer {
  display: block;
}

.diff-aot-jit-section .faqs-benefits-of-level-div .faq-item.open .faq-arrow {
  transform: rotate(90deg);
} */

/* ======================= */