/* ===== GLOBAL ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #1cc88a;
  transition: 0.3s;
}
/* Add this to your CSS */
p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-content p,
.padding40 p,
.feature-text p,
.fun-fact-card span {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Keep larger text for important sections */
.slide-content p {
    font-size: 1.1rem; /* Keep slider text prominent */
}
/* ===== HEADER TOP ===== */
header .header-top {
  background: #0d1b2a;
  color: #ffffff;
  font-size: 14px;
}

header .header-top i {
  margin-right: 6px;
  color: #1cc88a;
}

header .social a {
  color: #ffffff;
  margin-left: 12px;
  transition: 0.3s;
}

header .social a:hover {
  color: #1cc88a;
}

/* ===== MAIN HEADER ===== */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  position: relative;
}

#logo {
  display: flex;
  align-items: center;
}

#logo img {
  max-height: 60px;
  display: block; /* Prevents inline alignment gaps underneath the asset */
}
/* Hamburger */
#menu-btn {
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  color: #0d1b2a;
  z-index: 1100;
}

/* ===== NAVIGATION (Desktop) ===== */
#mainmenu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

#mainmenu > li {
  position: relative;
}

#mainmenu > li > a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  color: #0d1b2a;
  padding: 12px 14px;
  display: block;
  transition: color 0.3s;
}

#mainmenu > li > a:hover {
  color: #1cc88a;
}

/* Dropdown (desktop hover) */
#mainmenu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: none;
  z-index: 999;
}

#mainmenu li:hover > ul {
  display: block;
}

#mainmenu li ul li {
  position: relative;
}

#mainmenu li ul li a {
  padding: 10px 16px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s;
}

#mainmenu li ul li a:hover {
  background: #1cc88a;
  color: #fff;
  padding-left: 20px;
}

/* Second level */
#mainmenu li ul li ul {
  top: 0;
  left: 100%;
  margin-left: 0px;
}

#mainmenu li ul li:hover > ul {
  display: block;
}

/* Arrow for submenu */
#mainmenu li ul li:has(ul)::after {
  content: "▶";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #777;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 991px) {
  #mainmenu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1050;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #mainmenu.show {
    display: flex;
    max-height: 1000px; /* expand enough for all items */
  }

  #mainmenu > li > a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  #mainmenu li ul {
    position: static;
    background: #ffffff;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    display: none;
  }

  #mainmenu li.open > ul {
    display: block;
  }

  #mainmenu li ul li a {
    font-size: 14px;
    padding: 8px 0;
  }
}

/* ===== OVERLAY ===== */
#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

#overlay.active {
  display: block;
}
/* ===== SWIPER SLIDER ===== */
#section-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Swiper full height */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
}

/* Slide */
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

/* Overlay for readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* dark overlay for bright images */
  z-index: 2;
}

/* Slide content */
.slide-content {
  max-width: 600px;
  color: #fff;
  text-align: left;
  z-index: 5;
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.btn-slider {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1cc88a;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-slider:hover {
  background-color: #17a673;
  color: #fff;
}

/* Side decorative images */
.swiper-slide::before,
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.swiper-slide::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent),
              url('images/side-left.png') no-repeat center;
  background-size: cover;
}

.swiper-slide::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.5), transparent),
              url('images/side-right.png') no-repeat center;
  background-size: cover;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #1cc88a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.3);
  z-index: 5;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0,0,0,0.6);
}

.swiper-pagination-bullet {
  background: #1cc88a;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  #section-slider {
    height: 70vh;
  }

  .slide-content {
    max-width: 90%;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .swiper-slide::before,
  .swiper-slide::after {
    width: 50px;
  }
}

/* ===== CALL TO ACTION ===== */
.cta-section {
  margin-top: 5px;
  background: linear-gradient(135deg, #003366, #1cc88a); /* gradient background */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* subtle overlay for readability */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  flex: 1 1 60%;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  color: #003366;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  flex: 0 0 auto; /* button width determined by padding */
  max-width: 200px; /* restrict button width on desktop */
  text-align: center;
}

.cta-btn:hover {
  background-color: #1cc88a;
  color: #fff;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h3 {
    font-size: 1.5rem;
    flex: 1 1 100%;
  }

  .cta-btn {
    flex: 1 1 100%; /* full width on mobile */
    max-width: 100%; /* override desktop restriction */
  }
}
/* ===== About / Services Section ===== */
.about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.service-item {
  margin-bottom: 2px;
  flex: 1;                    /* Allow items to grow equally */
  min-width: 300px;           /* Minimum width for each card */
  max-width: 420px; 
}
.services-container {
  display: flex;              /* Enable flexbox layout */
  flex-wrap: wrap;            /* Allow wrapping to next line */
  gap: 30px;                  /* Space between cards */
  justify-content: center;    /* Center cards horizontally */
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-height: 500px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  max-height: 240px;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.service-card:hover .overlay {
  background: rgba(0,0,0,0.5);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  background: rgba(28, 200, 138, 0.8);
  padding: 12px 16px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #1cc88a;
  transition: all 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
  color: #003366;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .play-btn {
    font-size: 24px;
    padding: 10px 14px;
  }
}
/* ===== Features Section ===== */
.features-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
}

.features-bg {
  background: url('../images/wide2.jpeg') center center / cover no-repeat;
  position: relative;
  padding: 80px 0;
  filter: blur(0.2s);
}

.features-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.section-title .tiny-border {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1cc88a;
  margin: 10px auto 0;
  border-radius: 2px;
}

.feature-item {
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  background: rgba(28, 200, 138, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 36px;
  color: #1cc88a;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.feature-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #eee;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .features-bg {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .feature-text h3 {
    font-size: 1.1rem;
  }

  .feature-text p {
    font-size: 0.9rem;
  }
}
/* ===== Fun Facts Section ===== */
.fun-facts-section {
  background: url('../images/wide2.webp') center center / cover no-repeat;
  position: relative;
  color: #fff;
}

.fun-facts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6); /* dark overlay for readability */
  z-index: 0;
}

.fun-facts-section .container {
  position: relative;
  z-index: 1;
}

.fun-fact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fun-fact-card:hover {
  background: rgba(28, 200, 138, 0.1);
  transform: translateY(-5px);
}

.fun-fact-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1cc88a;
  margin-bottom: 10px;
}

.fun-fact-card span {
  font-size: 1rem;
  color: #eee;
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .fun-fact-card {
    padding: 20px 15px;
  }

  .fun-fact-card h3 {
    font-size: 2rem;
  }

  .fun-fact-card span {
    font-size: 0.95rem;
  }
}

/* ===== Vision & Mission Section ===== */
.vision-mission-section {
  margin-top: 80px;
  position: relative;
  background: linear-gradient(135deg, #1a2a4c 0%, #003366 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0;
}


.vision-mission-section .overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.vision-mission-section .overlay,
.vision-mission-section .overlay * {
  color: #fff;
}

.vision-mission-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.vision-mission-section .highlight-color {
  color: #1cc88a;
}

.vision-mission-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.vision-mission-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1cc88a;
  border: 2px solid #1cc88a;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more-btn i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1cc88a;
  opacity: 0.1;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.read-more-btn:hover {
  color: #fff;
  background: #1cc88a;
  border-color: #1cc88a;
}

.read-more-btn:hover i {
  margin-left: 10px;
}

.read-more-btn:hover::after {
  left: 0;
  opacity: 0;
}
.video-frame {
  object-fit: cover;   /* ensures video fills space without distortion */
  height: 400px; 
}


/* ===== Decorative Shapes ===== */
.vision-mission-section .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  animation: float 6s ease-in-out infinite alternate;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: #1cc88a;
  top: 20%;
  left: 5%;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: #00bfff;
  bottom: 15%;
  right: 10%;
  animation-duration: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: #ffcc00;
  top: 30%;
  right: 15%;
  animation-duration: 7s;
}

.shape-4 {
  width: 60px;
  height: 60px;
  background: #ff6b6b;
  bottom: 25%;
  left: 20%;
  animation-duration: 6s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(15deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .vision-mission-section .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .video-thumb .video-play-btn {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
  }

  .vision-mission-section .shape {
    display: none; /* Remove decorative shapes on mobile for simplicity */
  }
}
/* ===== Footer ===== */
.site-footer {
    margin-top: 30px;
    background: linear-gradient(135deg, #0d1b2a 0%, #001f3d 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #1cc88a;
    display: block;
    margin-top: 6px;
    border-radius: 2px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0d9c9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #1cc88a;
    padding-left: 5px;
}

/* Footer Address */
.footer-address p {
    margin-bottom: 12px;
}

.footer-address i {
    color: #1cc88a;
    margin-right: 8px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 8px;
    border-radius: 50%;
    background: rgba(28, 200, 138, 0.2);
    color: #1cc88a;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #1cc88a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Subfooter */
.subfooter {
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    color: #bbb;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1cc88a;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #0a7a5f;
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .footer-logo {
        margin: auto;
        display: block;
    }
}

@media (max-width: 767px) {
    .footer-title,
    .footer-links,
    .footer-address,
    .social-icons {
        text-align: center;
    }

    .social-icons a {
        margin: 5px 5px;
    }

    .subfooter {
        text-align: center;
    }
}
/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh; /* reduced height for desktop */
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #e0f7ef;
}

.hero .breadcrumb {
  font-size: 0.9rem;
  color: #cfd8dc;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hero .breadcrumb a {
  color: #1cc88a;
  text-decoration: none;
  transition: color 0.3s;
  text-align: center;
  align-items: center;
}

.hero .breadcrumb a:hover {
  color: #fff;
}

.hero .breadcrumb span {
  margin: 0 5px;
  color: #cfd8dc;
  text-align: center;
  align-items: center;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero {
    height: 50vh;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero .breadcrumb {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
}

/* Layout */
.content-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 30px;
  align-items: start;
}

/* Text columns */
.content-col p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Highlight Quote Box */
.quote-box {
  background: #1cc88a;
  color: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Features list */
.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 0.9rem;
}
.features-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 0.9rem;
}
.features-list li::before {
  content: "✔";
  color: #1cc88a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
}

/* Images */
.content-image {
  margin: 25px 0;
}
.content-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.content-image-air {
  margin: 25px 0;
}
.content-image-air img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  margin-top: 20px;
}
.content-image-team {
  margin: 25px 0;
}
.content-image-team img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  margin-top: 70px;
}
.content-image-at {
  margin: 25px 0;
}
.content-image-at img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  margin-top: 46px;
}
.content-image figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Sidebar */
.sidebar .widget {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Services menu */
.services-menu h3 {
  background: #1cc88a;
  color: #fff;
  padding: 15px;
  margin: 0;
  font-size: 1.1rem;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-list li {
  border-bottom: 1px solid #eee;
}
.services-list a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.services-list a.active,
.services-list a:hover {
  background: #e6f9f2;
  color: #1cc88a;
  font-weight: 600;
}

/* CTA Widget */
.cta-widget {
  background: #1cc88a;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.cta-widget h4 {
  margin-bottom: 10px;
  color: #ffff;
  font-weight: bold;
}
.cta-widget p {
  color: #ffff;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.cta-widget .btn {
  background: #fff;
  color: #1cc88a;
  padding: 10px 18px;
  border: 1px solid #1cc88a;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cta-widget .btn:hover {
  background: #17a673;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #17a673;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
/* Preloader overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Page background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Loader animation (spinning solar ring) */
.loader {
    width: 70px;
    height: 70px;
    border: 6px solid #e0e0e0;
    border-top: 6px solid var(--primary-color, #0077b6);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden state */
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* General */
.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

/* Custom List */
.custom-list {
    padding-left: 18px;
    margin-bottom: 15px;
}
.custom-list li {
    margin-bottom: 8px;
}

/* Blockquote */
.highlight-quote {
    border-left: 4px solid var(--primary-color, #00b4d8);
    padding: 10px 15px;
    background: #f9f9f9;
    font-style: italic;
    margin: 15px 0;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.feature-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.feature-box i {
    font-size: 36px;
    color: var(--primary-color, #00b4d8);
    margin-bottom: 10px;
}

/*==== About Content Section =====*/
/* Content Section Styling */
#content {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    margin-bottom: 10px;
    margin-top: 80px;
}

#content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 L0,100 Z" fill="rgba(0,51,102,0.02)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

#content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

#content .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Main Content Area */
#content .col-md-9 {
    padding: 0 15px;
    width: 75%;
}

#content .col-md-9 .row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

#content .col-md-6 {
    padding: 0 15px;
    width: 50%;
    margin-bottom: 30px;
}

#content .col-md-12 {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 30px;
}

/* Vision & Mission Cards */
.padding30 {
    padding: 15px 20px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 51, 102, 0.1);
    margin-bottom: 15px;
    margin-top: 15px;
    background: #ffffff;
}

.padding30::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 193, 0, 0.15), transparent);
    transition: left 0.8s ease;
}

.padding30:hover::before {
    display: none;
}

.padding30:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.15);
    border-left: 4px solid var(--primary-color);
}

[data-bgcolor="#eee"] {
    background:#ffffff;
}

/* Box Icon Simple */
.box-icon-simple {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.box-icon-simple.left {
    flex-direction: row;
}

.box-icon-simple i {
    font-size: 1.6rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #ffb800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(248, 193, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.box-icon-simple:hover i {
    transform: scale(1.05);
    background-color: rgba(248, 193, 0, 0.15);
}

.box-icon-simple .text h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.box-icon-simple .text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ffb800);
    border-radius: 0;
    transition: width 0.3s ease;
}

.box-icon-simple:hover .text h3::after {
    width: 30px;
}

.box-icon-simple .text {
    flex: 1;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

.box-icon-simple .text p {
    color: #666;
    line-height: 1.5; /* Tighter line height */
    margin: 0;
    font-size: 0.9rem; /* Reduced */
}

/* Image Hover Effects */
.pic-hover {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.pic-hover:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.pic-hover img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
    display: block;
}

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

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.8), rgba(248, 193, 0, 0.4));
    opacity: 0;
    transition: all 0.5s ease;
}

.pic-hover:hover .bg-overlay {
    opacity: 1;
}

.center-xy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
}

.pic-hover:hover .center-xy {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(248, 193, 0, 0.4);
    border: 3px solid white;
}

.btn-action:hover {
    background: var(--secondary-color);
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 45px rgba(0, 51, 102, 0.4);
}

/* Content Typography */
#content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 2px;
    line-height: 1.3;
}

#content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffb800);
    border-radius: 2px;
}

#content p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 400;
}

/* Specific Element Styling */
.mb30 {
    margin-bottom: 30px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt20 {
    margin-top: 20px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}



/* Responsive Design */
@media (max-width: 991px) {
    #content .col-md-9 {
        width: 100%;
        margin-bottom: 40px;
    }
    
    #content .col-md-6 {
        width: 100%;
    }
    
    .padding30 {
        padding: 30px 25px;
    }
    
    .box-icon-simple {
        gap: 20px;
    }
    
    .box-icon-simple i {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
    
    #content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    #content {
        padding: 60px 0;
    }
    
    .box-icon-simple {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .box-icon-simple .text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pic-hover {
        margin-bottom: 25px;
    }
    
    #content h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    #content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    #content .container {
        padding: 0 15px;
    }
    
    .padding30 {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .box-icon-simple i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        border-radius: 15px;
    }
    
    .btn-action {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    #content h3 {
        font-size: 1.3rem;
    }
    
    #content p {
        font-size: 1rem;
        text-align: justify;
    }
}

/* Hover Effects for Text Content */
#content .col-md-6:hover h3 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

#content .col-md-6:hover h3::after {
    width: 100px;
    transition: width 0.3s ease;
}

/* Loading Animation for Images */
.pic-hover img {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Focus States for Accessibility */
.padding30:focus,
.box-icon-simple:focus,
.pic-hover:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    #content {
        background: white !important;
        padding: 40px 0 !important;
    }
    
    .padding30 {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .pic-hover {
        box-shadow: none !important;
    }
}


/*==== Projects Styling====*/
   .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .spacer-single {
            height: 2px;
            clear: both;
        }
        
        /* Section Styling */
        #section-portfolio {
            padding: 10px 0 40px 0;
            background-color: #fff;
            margin-top: -60px;
        }
        
        /* Filter Styling */
        #filters {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: -20px;
            margin-top: -10px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        #filters li {
            margin: 0 10px 10px 0;
        }
        
        #filters a {
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        #filters a:hover, #filters a.selected {
            background-color: var(--accent);
            color: black;
        }
        
        .pull-right {
            margin-left: auto;
        }
        
        /* Gallery Styling */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 0;
            margin-top: 0;
        }
        
        .item {
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .picframe {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .picframe img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .item:hover .picframe img {
            transform: scale(1.05);
        }
        /* zoom effect */
        .item:hover .picframe img {
            transform: scale(1.05);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(40, 42, 48, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .item:hover .overlay {
            opacity: 1;
        }
        
        .pf_text {
            text-align: center;
            color: #ffffff;
            padding: 20px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); /* Better readability */
        }
        
        .project-name {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.4;
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            #filters {
                flex-direction: column;
                align-items: center;
            }
            
            #filters li {
                margin: 5px 0;
            }
            
            .pull-right {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .call-to-action .row {
                text-align: center;
            }
            
            .call-to-action .col-md-4 {
                text-align: center !important;
                margin-top: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery {
                grid-template-columns: 1fr;
            }
            
            #section-portfolio {
                padding: 40px 0;
            }
        }

/*=== Projects Detail Section ===*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    padding: 0 15px;
    width: 50%;
}

/* Image Gallery */
#project-img-carousel {
    margin-bottom: 30px;
}

.pic-hover {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pic-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hover-scale img {
    transition: transform 0.5s ease;
}

.hover-scale:hover img {
    transform: scale(1.05);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 200, 138, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pic-hover:hover .bg-overlay {
    opacity: 1;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Project Details Box */
.padding40 {
    padding: 40px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: -60px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

/* Headings */
h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 15px;
    position: relative;
}

.tiny-border {
    display: block;
    width: 50px;
    height: 3px;
    background: #1cc88a;
    margin-top: 8px;
    border-radius: 2px;
}

/* Project Info Details */
.info-details {
    margin-bottom: 30px;
}

.info-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.info-text:last-child {
    border-bottom: none;
}

.info-text .title {
    font-weight: 600;
    color: #0d1b2a;
    min-width: 120px;
}

.info-text .val {
    color: #666;
    text-align: right;
    flex: 1;
}

/* Project Description */
.padding40 p {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

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

/* Spacer */
.spacer-single {
    height: 1px;
    background: #e0e0e0;
    margin: 25px 0;
    clear: both;
}

/* Additional Section */
.pt40 {
    padding-top: 40px;
}

.pb30 {
    padding-bottom: 30px;
}

[data-bgcolor="#eee"] {
    background: #eee;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .padding40 {
        padding: 30px;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #content {
        padding: 40px 0;
    }
    
    .padding40 {
        padding: 25px 20px;
    }
    
    .info-text {
        flex-direction: column;
    }
    
    .info-text .title {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .info-text .val {
        text-align: left;
    }
    
    .row {
        margin: 0 -10px;
    }
    
    .col-md-6 {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .padding40 {
        padding: 20px 15px;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .tiny-border {
        width: 40px;
    }
}

/* Hover Effects */
.padding40 {
    transition: all 0.3s ease;
}

.padding40:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Smooth animations */
.pic-hover, .padding40, .info-text {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.padding40:focus-within {
    outline: 2px solid #1cc88a;
    outline-offset: 2px;
}

/*===contact styling====*/


/* Tab Styles */
.de_tab.tab_style_2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.de_nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #0d1b2a;
    border-bottom: 3px solid #186448;
}

.de_nav li {
    position: relative;
    margin: 0;
    flex: 1;
}

.de_nav li span {
    display: block;
    padding: 20px 30px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.de_nav li.active span {
    color: #186448;
    background: rgba(28, 200, 138, 0.1);
}

.v-border {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background:#186448;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.de_nav li.active .v-border {
    transform: scaleX(1);
}

.de_nav li:hover span {
    color: #186448;
    background: rgba(28, 200, 138, 0.05);
}

/* Tab Content */
.de_tab_content {
    padding: 40px;
}

.tc_style-1 {
    background: #fff;
}

/* Hide all tab content except active */
.de_tab_content > div {
    display: none;
    animation: fadeIn 0.5s ease;
}

.de_tab_content > div:first-child {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Address Style */
.address-style-2 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.address-style-2 span {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.address-style-2 span:last-child {
    border-bottom: none;
}

.address-style-2 strong {
    color: #0d1b2a;
    font-weight: 600;
    min-width: -2px;
    display: inline-block;
    margin-right: 5px;
}

.address-style-2 a {
    color: #186448;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-style-2 a:hover {
    color: #0d1b2a;
    text-decoration: underline;
}

/* Contact Form */
.padding30 {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: fit-content;
}

.padding30 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 20px;
    position: relative;
}

.tiny-border {
    display: block;
    width: 50px;
    height: 3px;
    margin-top: 8px;
    border-radius: 2px;
}

/* Form Styles */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  border-color: #e0e0e0; /* keep same neutral border */
  box-shadow: none;      /* remove glow */
  outline: none;         /* remove default browser outline */
}

.form-control::placeholder {
    color: #999;
    font-family: 'Poppins', sans-serif;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

/* Error Messages */
.error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-bottom: 5px;
    display: none;
    font-weight: 500;
}

.success {
    color: #27ae60;
    font-size: 0.85rem;
    margin-bottom: 5px;
    display: none;
    font-weight: 500;
}
/* Custom file input styling */
.form-control[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem;
    color: var(--text-color);
    background-color: #186448;
    border: 0;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out;
}

.form-control[type="file"]::file-selector-button:hover {
    background-color: #0b5ed7;
}

/* Submit Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #186448;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.btn-line {
    background: transparent;
    border: 2px solid #1cc88a;
    color: #1cc88a;
}

.btn-line:hover {
    background: #1cc88a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

#submit {
    margin-top: 10px;
}

/* Form Row Spacing */
#contact_form .row {
    margin: 0 -10px;
}

#contact_form .col-md-12 {
    padding: 0 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .col-md-8,
    .col-md-4 {
        width: 100%;
    }
    
    .col-md-8 {
        margin-bottom: 40px;
    }
    
    .de_tab_content {
        padding: 30px;
    }
    
    .de_nav li span {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    #content {
        padding: 60px 0;
    }
    
    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .de_nav {
        flex-direction: column;
    }
    
    .de_nav li span {
        padding: 15px;
        text-align: center;
    }
    
    .v-border {
        bottom: 0;
        left: auto;
        top: 0;
        width: 3px;
        height: 100%;
        transform: scaleY(0);
    }
    
    .de_nav li.active .v-border {
        transform: scaleY(1);
    }
    
    .padding30 {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .address-style-2 span {
        padding: 12px 0;
        font-size: 0.95rem;
    }
    .form-control[type="file"]::file-selector-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .de_tab_content {
        padding: 20px 15px;
    }
    
    .padding30 {
        padding: 20px 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .padding30 h3 {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Hover Effects */
.padding30 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.padding30:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Focus States for Accessibility */
.form-control:focus,
.btn:focus {
    outline: 2px solid #1cc88a;
    outline-offset: 2px;
}

/* Loading State for Form */
#send_message:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Success/Failure Message Animation */
.success, .error {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

.success {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid #27ae60;
}

.error {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

/* Form Validation Styles */
.form-control.error-border {
    border-color: #e74c3c;
}

.form-control.success-border {
    border-color: #27ae60;
}

/* Tab Content Animation when switching */
.de_tab_content > div.active-tab {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Clean Product UI Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }
    .product-card {
      background: #ffffff;
      border: 1px solid #eef2f5;
      border-radius: 12px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.08);
      border-color: #198754;
    }
    .tech-badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 50px;
      background-color: #e8f5e9;
      color: #1b5e20;
      margin-bottom: 15px;
      align-self: flex-start;
    }
    .product-icon {
      font-size: 2.5rem;
      color: #198754;
      margin-bottom: 15px;
    }
    .product-title {
      font-size: 1.35rem;
      color: #0d1b2a;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .product-desc {
      font-size: 0.92rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .functionality-title {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #777;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }
    .spec-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 25px;
    }
    .spec-list li {
      font-size: 0.9rem;
      color: #444;
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
    }
    .spec-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: #198754;
      font-size: 0.8rem;
    }
    .btn-quote {
      background-color: #198754;
      color: white;
      font-weight: 500;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      transition: background 0.2s;
      width: 100%;
      text-align: center;
      text-decoration: none;
    }
    .btn-quote:hover {
      background-color: #146c43;
      color: white;
    }
    /* Section Intro Styling */
    .gradient-text {
      background: linear-gradient(45deg, #0d1b2a, #198754);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }