:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Russo One", sans-serif;
  --nav-color: #0d92f4;
  --accent-color: #2d4e6f;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #283d50;
  --accent-color: #007bff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --black-color: #000000;
}

/* Nav Menu Colors */
:root {
  --nav-color: #0d92f4;
  --nav-hover-color: #007bff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #007bff;
}

.light-background {
  --background-color: #f4f4f4;
  --surface-color: #f5f5f5;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0d358f;
  --contrast-color: #ffffff;
}

.logo-text {
  color: #ffffff;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.full-section {
  padding: 0;
  margin: 0;
}

.full-section .container-fluid {
  padding: 0;
  margin: 0;
}

.full-section .carousel-inner img {
  height: 100vh;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.carousel-caption h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #1A1D30; 
  color: var(--nav-color);
  padding: 9px 0;
  z-index: 999;
  transition: background-color 0.3s; 
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  background-color: #1A1D30; 
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Desktop Styles */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #A7E629; 
  }

  .navmenu .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile Styles */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #1A1D30; 
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #A7E629;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(26, 29, 48, 0.95); 
    transition: background 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
}

@media (max-width: 768px) {
  .navmenu ul {
    inset: 50px 10px 10px 10px; 
  }
}

.navmenu ul,
.header {
  background-color: #1A1D30; 
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: center; 
  position: relative;
  height: 90vh;
  background-color: #1A1D30;
}

.video-section {
  position: relative;
  overflow: hidden;
  height: 100%;
  flex: 1 1 50%; 
}

.video-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.text-section {
  flex: 1 1 50%; 
  height: auto; 
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-section h1 {
  font-size: 2rem; 
  font-weight: 700;
  color: #A7E629;
  margin-bottom: 1rem;
}

.text-section p {
  font-size: 1rem; 
  line-height: 1.5; 
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-buttons .btn {
  margin: 10px 5px; 
  padding: 8px 16px; 
  font-size: 0.9rem; 
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.watch-video-btn {
  background-color: #A7E629;
  color: #ffffff;
}

.watch-video-btn:hover {
  background-color: #95C73D; 
}

.contact-btn {
  background-color: #1A1D30;
  color: #ffffff;
  border: 2px solid #A7E629;
}

.contact-btn:hover {
  background-color: #A7E629;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column; 
    height: auto; 
    padding: 20px 10px;
  }

  .text-section {
    flex: 1 1 100%; 
    padding: 10px;
  }

  .video-section {
    flex: 1 1 100%; 
    height: 50vh; 
  }

  .video-fluid {
    aspect-ratio: 16 / 9; 
    height: auto;
    max-height: 50vh;
  }

  .text-section h1 {
    font-size: 1.8rem; 
  }

  .text-section p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    margin: 5px 0; 
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    justify-content: flex-start; 
    align-items: center;
    padding: 20px 10px;
  }

  .text-section h1 {
    font-size: 1.5rem; 
  }

  .text-section p {
    font-size: 0.9rem; 
  }

  .hero-buttons .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    margin: 5px 2px;
  }
}

/* ==============================
Infrastructure section
=========================== */
.infrastructure-section {
  padding: 60px 0;
}

.infrastructure-section .text-primary {
  font-weight: 700;
  color: #2d4e6f !important;
  font-size: 2.5rem;
}

.infrastructure-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.infrastructure-section .btn-primary {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #2d4e6f;
  border: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.infrastructure-section .btn-primary:hover {
  background-color: #1f3a53;
}

.infrastructure-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.section-about-us {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
  background-color: #f9f9f9;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-about-us {
  display: flex;
  align-items: center;
  padding: 60px 5%;
  background-color: #f3f6fc;
}

.section-about-us .row {
  display: flex;
  align-items: center;
  width: 100%;
}

.section-about-us .text-content {
  flex: 1;
  padding-right: 30px;
  text-align: left;
}

.section-about-us .text-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.section-about-us .text-content .highlight {
  color: #A7E629;
}

.section-about-us .text-content .divider {
  width: 50px;
  height: 3px;
  background-color: #A7E629;
  margin: 15px 0;
}

.section-about-us .text-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.section-about-us .image-content {
  flex: 1;
  text-align: center;
  position: relative;
}

.section-about-us .image-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: auto;
}

.section-about-us .image-container img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.section-about-us .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.section-about-us .image-grid img {
  width: 100%;
  height: 180px; 
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-about-us .image-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .section-about-us .image-grid {
    grid-template-columns: 1fr;
  }

  .section-about-us .image-grid img {
    height: 200px;
  }
}

/* Our Vision Section */
.mission-values-redesign {
  background-color: #f3f6fc;
}

.mission-values-redesign .bg-white {
  border-radius: 1.5rem;
}

.mission-values-redesign h4 {
  font-size: 1.25rem;
}

.mission-values-redesign ul {
  padding-left: 1rem;
}

.mission-values-redesign small {
  color: #555;
}

@media (max-width: 767px) {
  .mission-values-redesign .border-end {
    border: none !important;
    margin-bottom: 2rem;
  }
}

/* General styles */
#section1 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay-image {
  max-width: 100%;
  height: auto;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-content {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  max-width: 80%;
  text-align: center;
}

h1 {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  animation: fadeInDown 1s ease-in-out;
}

.subtext {
  margin-top: 20px;
  font-size: 18px;
  color: white;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

/* Keyframe animation for fadeInDown */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section2 {
  background-color: #f3faff;
}

.section2 img {
  border-radius: 15px;
  width: 100%;
}

#section-title h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

#section-title .highlight {
  color: #2d4e6f;
}

#section-title p {
  font-size: 1.1rem;
  margin-top: 1rem;
}

#section-title img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* -------------------------------- 
Call to Action Section 
---------------------------------*/
#cta {
  background-color: #1A1D30;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
}

#cta h2 {
  color: #A7E629;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#cta p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

#cta .btn {
  background-color: #ffffff;
  color: #1A1D30;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}

#cta .btn:hover {
  background-color: #e5e5e5;
  color: #A7E629;
}

.cta-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  #cta .row {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    margin-top: 20px;
  }
}

/* =======================================
Why us
==================================== */
#why-us {
  background-color: #1A1D30;
  padding: 60px 0;
}

.section-title h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.why-us-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); 
}

.why-us-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #A7E629;
  margin: 0;
}

.why-us-item p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
}

.why-us-image {
  display: flex;
  justify-content: center;
}

.why-us-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .why-us-content {
    gap: 10px;
  }

  .why-us-item {
    flex-direction: row;
  }
}

@media (max-width: 576px) {
  .why-us-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon {
    margin-bottom: 10px;
  }
}

/*================================
 Clients Section 
==================================*/
.clients {
  padding: 40px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.client-logo img {
  max-width: 100px;
  max-height: 50px;
  width: auto;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.client-logo img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .client-logo img {
    max-width: 80px;
    max-height: 40px;
  }
}

h2.text-center {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1A1D30;
}

/* .text-section */
#text-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

#text-section h2 {
  color: #000000;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#text-section p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ===================================
COMPANY PROFILE
================================= */
#company-profile {
  background-color: #1A1D30;
  padding: 60px 0;
}

#company-profile h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info-section {
  background-color: #1A1D30;
  color: #fff;
  padding: 60px 0;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-form-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1A1D30;
}

.contact-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.contact-form-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-form .form-control {
  border: 2px solid #000;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1rem;
  margin-bottom: 20px;
  width: 100%;
}

.contact-submit {
  background-color: #007bff;
  color: #fff;
  padding: 10px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-submit:hover {
  background-color: #0056b3;
}

.contact-map {
  width: 100%;
  height: 500px;
  overflow: hidden;
  padding: 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact-map iframe {
    height: 400px;
  }
}

/* ===================
FAQ
===================== */
.faq-section {
  padding: 50px 0;
  background-color: white;
}

.faq-section .faq-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.faq-section .custom-line {
  border: none;
  height: 2px;
  width: 50px;
  background-color: #A7E629;
  margin-left: 0;
}

.faq-section .accordion-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.faq-section .accordion-button {
  background-color: transparent;
  font-size: 18px;
  color: #000;
  text-align: left;
  padding: 15px;
  border: none;
}

.faq-section .accordion-button:after {
  content: '\002B';
  font-size: 18px;
  float: right;
}

.faq-section .accordion-button.collapsed:after {
  content: '\2212';
}

.faq-section .accordion-body {
  font-size: 16px;
  color: #000;
  padding: 10px 20px;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-section .container {
  display: flex;
  justify-content: space-between;
}

.faq-section .row {
  display: flex;
  width: 100%;
}

.faq-section .col-lg-6 {
  flex: 1;
}

.faq-section .text-center {
  text-align: left;
}

/* ============================
SECTION 4
========================== */
.section-title h2 {
  color: #A7E629;
  font-size: 2.5rem;
  font-weight: 700;
}

.section-title p {
  color: #7f8c8d;
  font-size: 1.15rem;
}

.solution h3 {
  color: #A7E629;
  font-weight: 700;
}

.solution h3 span {
  color: #A7E629;
}

.solution p{
  color: #1A1D30;
  font-size: 1.05em;
}

.solution ul {
  padding-left: 0;
}

.solution ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.solution ul li i {
  font-size: 1.2em;
  color: #A7E629;
  margin-right: 8px;
}

.solution img {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bg-white {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
}

/* ============================================
EEWS Section
============================================ */
.eews-section {
  background-color: #f3f6fc;
  padding: 60px 0;
  text-align: center;
}

.eews-title-wrapper {
  position: relative;
  padding-bottom: 1rem;
}

.eews-title-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #A7E629;
}

.eews-title-wrapper h2 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1A1D30;
  margin-bottom: 20px;
}

.eews-title-wrapper p {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-outside-image h1 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1A1D30;
  margin-bottom: 20px;
}

.icon-row {
  display: flex;
  justify-content: center; 
  gap: 15px; 
  margin-top: 20px;
  margin-bottom: 20px;
}

.icon {
  display: flex;
  flex-direction: column; 
  align-items: center; 
}

.icon img {
  width: 60px; 
  height: 60px;
  object-fit: contain; 
}

.icon-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #333; 
  margin-top: 8px; 
  margin-bottom: 0; 
}

.text-outside-image p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-outside-image .lead {
  font-size: 1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.ui-image img {
  margin-top: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.eews-text-outside-image h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #A7E629;
}

.eews-text-outside-image p {
  font-size: 1.5rem;
  color: #A7E629;
}

.eews-text-outside-image .lead {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.eews-ui-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .eews-section {
    padding: 30px 10px; 
  }

  .eews-title-wrapper h2 {
    font-size: 1.8rem; 
  }

  .eews-title-wrapper p {
    font-size: 1rem; 
  }

  .eews-section-image {
    height: auto; 
    max-height: 300px;
  }

  .text-outside-image h1 {
    font-size: 1.8rem;
  }

  .text-outside-image p {
    font-size: 1rem;
    line-height: 1.4; 
  }
}

@media (max-width: 480px) {
  .eews-title-wrapper h2 {
    font-size: 1.5rem; 
  }

  .eews-title-wrapper p {
    font-size: 0.9rem;
  }

  .eews-section-image {
    max-height: 200px; 
  }

  .text-outside-image h1 {
    font-size: 1.5rem;
  }

  .text-outside-image p {
    font-size: 0.9rem;
  }
}

/* ============== 
SHMS 
============== */
.shms-section {
  background-color: #ffffff;
  padding: 40px 0; 
  text-align: center;
}

.shms-title-wrapper {
  position: relative;
  padding-bottom: 0.8rem;
}

.shms-title-wrapper h2 {
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1A1D30;
  margin-bottom: 15px; 
}

.shms-title-wrapper p {
  font-size: 1rem; 
  color: #333;
  max-width: 700px; 
  margin: 0 auto;
  line-height: 1.5; 
}

.shms-section-image {
  width: 90%; 
  aspect-ratio: 16 / 9;
  object-fit: contain; 
  margin-bottom: 1.5rem; 
  max-height: 300px; 
  height: auto;
}

.shms-equal-image {
  width: 90%; 
  height: auto;
  max-height: 250px; 
  object-fit: contain; 
  margin-bottom: 1.5rem;
}

.shms-img {
  display: block;
  max-width: 90%; 
  height: auto;
}

.shms-full-page-image {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shms-full-page-image img {
  width: 90%; 
  height: auto;
  max-height: 300px; 
  object-fit: contain;
}

.shms-image-section {
  padding: 30px 0; 
  background-color: #ffffff;
}

.shms-text-outside-image h1 {
  font-size: 2rem; 
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1A1D30;
  margin-bottom: 15px; 
}

.shms-icon-row {
  display: flex;
  justify-content: center;
  gap: 8px; 
  margin-top: 8px; 
  margin-bottom: 15px; 
}

.shms-icon {
  width: 45px; 
  height: 45px;
  background-color: #A7E629;
  border-radius: 5px;
}

.shms-text-outside-image p {
  font-size: 1rem; 
  color: #333;
  max-width: 700px; 
  margin: 0 auto;
  line-height: 1.5; 
}

.shms-text-outside-image .lead {
  font-size: 0.95rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  padding: 8px; 
}

.shms-ui-image img {
  margin-bottom: 15px; 
  width: 90%; 
  height: auto;
  object-fit: contain; 
}

.shms-ui-text {
  text-align: left;
}

.shms-section-number {
  font-size: 22px; 
  font-weight: bold;
  color: #999;
}

.shms-display-6 {
  font-size: 34px; 
  font-weight: bold;
}

.shms-ui-text p {
  font-size: 16px; 
  line-height: 1.5; 
}

@media (max-width: 768px) {
  .shms-section {
    padding: 30px 15px; 
  }

  .shms-title-wrapper h2 {
    font-size: 2rem; 
    margin-bottom: 10px; 
  }

  .shms-title-wrapper p {
    font-size: 0.95rem; 
    max-width: 600px; 
  }

  .shms-section-image {
    max-height: 250px; 
  }

  .shms-full-page-image img {
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }

  .shms-text-outside-image h1 {
    font-size: 1.8rem; 
  }

  .shms-text-outside-image p {
    font-size: 0.95rem; 
    line-height: 1.4; 
  }
}

@media (max-width: 640px) {
  .shms-title-wrapper h2 {
    font-size: 1.7rem;
  }

  .shms-title-wrapper p {
    font-size: 0.9rem;
  }

  .shms-section-image {
    max-height: 200px; 
  }

  .shms-ui-image img {
    max-height: 200px; 
  }
}

@media (max-width: 480px) {
  .shms-title-wrapper h2 {
    font-size: 1.5rem;
  }

  .shms-title-wrapper p {
    font-size: 0.85rem;
  }

  .shms-section-image {
    max-height: 150px; 
  }

  .shms-ui-image img {
    max-height: 150px; 
  }

  .shms-text-outside-image h1 {
    font-size: 1.5rem;
  }

  .shms-text-outside-image p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* ========================
Article Card Styles
=========================== */
.featured-article .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.featured-article .card-img {
  filter: brightness(60%);
  height: 400px;
  object-fit: cover;
}

.featured-article .card-img-overlay {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
}

.featured-article .badge {
  font-size: 14px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 24px;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card {
  border-radius: 15px;
  overflow: hidden;
}

/* ====================
Preloader 
==================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader-inner {
  text-align: center;
}

.preloader img {
  width: 100px;
  height: auto;
}

body.loaded .preloader {
  display: none;
}

/* =================
article1
================== */
.navmenu ul li {
  position: relative;
  margin: 0 15px;
}

.navmenu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
  display: block;
  transition: color 0.3s ease;
}

.navmenu ul li a:hover {
  color: #ffffff;
}

.navmenu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 200px;
  z-index: 1000;
  padding: 10px 0;
  border-radius: 4px;
}

.navmenu .dropdown-menu li {
  margin: 0;
}

.navmenu .dropdown-menu li a {
  padding: 10px 20px;
  color: #ffffff;
  white-space: nowrap;
}

.navmenu .dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #ffffff;
}

.navmenu .dropdown:hover .dropdown-menu {
  display: block;
}

.section-title {
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 2rem 0;
  padding: 1rem 2rem;
  background-color: #f9f9f9;
  border-left: 5px solid #ccc;
  color: #000;
}

.blockquote p {
  margin: 0;
  color: #000;
}

.display-4 {
  font-size: 2.5rem;
  color: #000;
  text-align: center;
  margin-bottom: 1.5rem;
}

.article-img {
  max-width: 30%;
  height: auto;
  float: right;
  margin: 0 20px 20px 0;
  border-radius: 8px;
}

/* ====================================
footer
==================================== */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.footer-top {
  padding: 20px 0;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .footer-about p,
.footer .footer-contact p,
.footer .footer-social p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin: 0;
}

.footer .sitename {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  justify-content: center; 
}

.footer .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.footer .social-icon:hover {
  background-color: #fff;
  color: #000;
}

.footer .copyright {
  font-size: 14px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
  gap: 10px; 
}

.footer .copyright p {
  margin: 0;
  color: #aaa;
  text-align: center; 
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer .footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    text-align: center; 
    padding: 20px 10px; 
  }

  .footer .footer-contact,
  .footer .footer-social {
    text-align: center;
    margin-bottom: 15px; 
  }

  .footer .social-links {
    gap: 10px;
  }

  .footer .social-icon {
    width: 35px;
    height: 35px; 
  }

  .footer .copyright {
    flex-direction: column; 
  }

  .footer .footer-links {
    gap: 5px; 
  }

  .footer .footer-links a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer .sitename {
    font-size: 20px; 
  }

  .footer h4 {
    font-size: 14px; 
  }

  .footer .footer-about p,
  .footer .footer-contact p,
  .footer .footer-social p {
    font-size: 13px;
  }

  .footer .social-icon {
    width: 30px;
    height: 30px; 
  }

  .footer .copyright {
    font-size: 12px; 
  }
}

/* Scroll Top Styling */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top i {
  font-size: 24px;
}

.scroll-top:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

html.scrolled .scroll-top {
  opacity: 1;
  visibility: visible;
}
