/* ===========================
   THEME COLORS
   =========================== */
:root {
  --primary-color: #0C436A;
  --accent-color: #ED6624;
  --light-bg: #f7f8fa;
  --text-color: #252525;
}


/* ===========================
   Global
   ===========================  */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* ===========================
   PRELOADER
   =========================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.loader {
  position: relative;
  width: 120px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.circle {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.circle:nth-child(2) {
  background: var(--primary-color);
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  background: var(--accent-color);
  animation-delay: 0.4s;
}

.shadow {
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  filter: blur(1px);
  animation: shadow 0.6s infinite alternate;
}

.shadow:nth-child(4) {
  left: 0;
  animation-delay: 0s;
}

.shadow:nth-child(5) {
  left: 50px;
  animation-delay: 0.2s;
}

.shadow:nth-child(6) {
  left: 100px;
  animation-delay: 0.4s;
}

.loading-text {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  letter-spacing: 1px;
}

@keyframes bounce {
  to {
    transform: translateY(-18px);
  }
}

@keyframes shadow {
  to {
    transform: scaleX(1.3);
    opacity: 0.3;
  }
}


/* ===========================
   HEADER
   =========================== */
.main-header {
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  padding: 0.8rem 0;
}

.logo-img {
  width: 45px;
  height: auto;
}

.navbar-brand span {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

/* Dropdown Menu */
.dropdown-menu {
  background: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.dropdown-item {
  color: var(--primary-color);
  font-weight: 500;
  padding: 10px 18px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: none;
  outline: none;
  background: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Submenu hover for desktop only */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile Menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary-color);
    border-radius: 0 0 10px 10px;
    padding: 15px;
  }

  .dropdown-menu {
    background: var(--primary-color);
    box-shadow: none;
  }

  .dropdown-item {
    color: #fff;
  }

  .dropdown-item:hover {
    background: var(--accent-color);
    color: #fff;
  }
}


/*------------------------------------------------------------- HOME SECTION START ----------------------------------------------------------*/



/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  background: #000;
}

/* Slides Container */
.slides {
  flex: 1;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Text Content Box */
.slide .content {
  color: #fff;
  max-width: 580px;
  background: rgba(12, 67, 106, 0.6);
  /* Navy glass effect */
  padding: 40px 35px;
  border-radius: 18px;
  backdrop-filter: blur(5px);
  border-left: 6px solid #ED6624;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.slide .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 0.5px;
}

.slide .content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f0f0f0;
  line-height: 1.6;
}

/* CTA Button */
.slide .btn-light {
  background: #ED6624;
  color: #fff;
  border-radius: 30px;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(237, 102, 36, 0.4);
}

.btn-light a {
    color: white;
}

.slide .btn-light:hover {
  color: #0C436A;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Thumbnails (Right Side) */
.thumbnails {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3;
}

.thumb {
  width: 100px;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: #ED6624;
  transform: scale(1.05);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .hero-slider {
    flex-direction: column;
  }

  .slides {
    height: 90vh;
  }

  .thumbnails {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin: 18px auto;
    transform: none;
  }

  .thumb {
    width: 80px;
    height: 50px;
  }

  .slide .content {
    max-width: 90%;
    padding: 28px 20px;
    border-left: 4px solid #ED6624;
  }

  .slide .content h2 {
    font-size: 2rem;
  }

  .slide .content p {
    font-size: 1rem;
  }

  .slide .btn-light {
    padding: 10px 26px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .slide .content h2 {
    font-size: 1.6rem;
  }

  .slide .content p {
    font-size: 0.95rem;
  }
}


/* ===========================
   WHY CHOOSE US
   =========================== */
.why-choose-us {
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(12, 67, 106, 0.15), transparent 70%);
  z-index: 0;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0C436A;
}

.section-title span {
  color: #ED6624;
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 15px auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.choose-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  z-index: 1;

  /* 🔥 Equal height magic */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.row.g-4>[class*="col-"] {
  display: flex;
}

/* Hover background gradient */
.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ED6624, #0C436A);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.45s ease;
  z-index: 0;
  border-radius: 18px;
}

.choose-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Icon styling */
.choose-card .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(12, 67, 106, 0.1);
  color: #0C436A;
  border-radius: 20px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.choose-card:hover .icon-wrap {
  background: #fff;
  color: #ED6624;
  transform: rotateY(360deg);
}

/* Headings and text */
.choose-card h5 {
  font-weight: 600;
  color: #0C436A;
  margin-bottom: 12px;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  z-index: 1;
  position: relative;
}

.choose-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
  z-index: 1;
  position: relative;
  flex-grow: 1;
  /* ensures equal content distribution */
}

.choose-card:hover h5,
.choose-card:hover p {
  color: #fff;
}

/* Hover effect */
.choose-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(12, 67, 106, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .choose-card {
    margin-bottom: 20px;
  }
}


/* ============================
   PREMIUM ABOUT SECTION
============================ */
.oka-about-sec {
  background: #f4f7fb;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.oka-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 25px;
  background: #ffffff;
  padding: 50px;
  border-radius: 35px;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Universal Card Style */
.oka-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.35s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.oka-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}

/* Main Blue Card */
.oka-main-card {
  background: #0C436A;
  color: #fff;
  grid-column: 1 / 3;
}

.oka-tag {
  background: #EE6624;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.oka-main-card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.oka-main-card p {
  color: #e9e9e9;
  line-height: 1.7;
}

/* Stats Cards */
.oka-stat-card h3 {
  font-size: 2.4rem;
  color: #0C436A;
  margin-bottom: 5px;
}

.oka-stat-card p {
  color: #555;
}

/* Image Card */
.oka-img-card {
  grid-column: 1 / 4;
  padding: 0;
  overflow: hidden;
}

.oka-img-card img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
  transition: 0.6s ease;
}

.oka-img-card:hover img {
  transform: scale(1.06);
}

/* Client Card */
.oka-client-card .oka-avatars {
  display: flex;
  margin-top: 15px;
}

.oka-client-card .oka-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
}

/* Card Height Sync */
.oka-about-grid>.oka-card {
  min-height: 260px;
}

/* Responsive Fix */
@media (max-width: 992px) {
  .oka-about-grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .oka-main-card,
  .oka-img-card,
  .oka-stat-card,
  .oka-client-card {
    grid-column: auto;
  }

  .oka-main-card h2 {
    font-size: 1.6rem;
  }

  .oka-stat-card h3 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .oka-about-sec {
    padding: 60px 0;
  }

  .oka-card {
    padding: 25px;
  }

  .oka-main-card h2 {
    font-size: 1.4rem;
  }
}


/* ===========================
   PRODUCT SECTION
   =========================== */
.premium-products {
  background: linear-gradient(135deg, #0C436A 0%, #EE6622 100%);
  color: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.section-title p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-content h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.btn-view {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
}

.btn-view:hover {
  background: #fff;
  color: #0C436A;
}

/* Responsive */
@media (max-width: 768px) {
  .product-img {
    height: 180px;
  }

  .product-content {
    padding: 15px;
  }

  .btn-view {
    font-size: 0.85rem;
  }
}


/* ===========================
   CUSTOMER REVIEW SLIDER
   =========================== */
.customer-reviews {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  position: relative;
  overflow: hidden;
}

.customer-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #EE6622 0%, transparent 60%),
    radial-gradient(circle at bottom right, #0C436A 0%, transparent 60%);
  opacity: 0.08;
}

.section-title h2 {
  font-weight: 700;
  color: #0C436A;
}

.section-title p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

.review-slider {
  position: relative;
}

.review-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 50px;
  margin: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.review-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #EE6622;
  transition: transform 0.3s ease;
}

.review-card:hover .review-img {
  transform: rotate(-5deg) scale(1.1);
}

.review-header h5 {
  margin: 0;
  font-weight: 600;
  color: #0C436A;
}

.review-header p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.review-text {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.stars {
  color: #EE6622;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Swiper Pagination Dots */
.swiper-pagination-bullet {
  background: #0C436A;
  opacity: 0.4;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #EE6622;
  opacity: 1;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 0.9rem;
  }
}


/* ===========================
   FAQ SECTION
   =========================== */
   .faq-section-title{
    color: #0C436A;
   }
.faq-section {
  background: #f7f9fc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  margin-top: 35px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 67, 106, 0.22);
  border-color: #EE6622;
}

/* Soft gradient border glow */
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #EE6622, #0C436A);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.faq-item.active::after {
  opacity: 1;
}

/* Question Row */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question h5 {
  margin: 0;
  font-size: 18px;
  color: #0C436A;
  font-weight: 600;
}

.faq-icon {
  font-size: 26px;
  color: #EE6622;
  transition: transform 0.45s cubic-bezier(.23, 1, .32, 1);
}

/* Icon rotates smoothly */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Smooth answer animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.55s cubic-bezier(.23, 1, .32, 1),
    opacity 0.45s ease,
    transform 0.45s ease;
}

/* Smooth expand */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0px);
  margin-top: 12px;
}

.faq-answer p {
  color: #555;
  font-size: 15px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question h5 {
    font-size: 17px;
  }

  .faq-item {
    padding: 16px 18px;
  }
}

/*------------------------------------------------------------- HOME SECTION END ----------------------------------------------------------*/



/*------------------------------------------------------------ ABOUT SECTION START --------------------------------------------------------*/
/* ===========================
   ABOUT BANNER SECTION
   =========================== */
.about-banner {
  padding: 60px 20px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.about-content {
  padding: 50px;
}

.about-tag {
  display: inline-block;
  background: #0C436A10;
  color: #0C436A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0C436A;
  line-height: 1.2;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ===== Buttons ===== */
.btn-primary {
  padding: 12px 26px;
  background: #ED6624;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn-primary:hover {
  background: #c44f19;
  transform: translateY(-2px);
}

.btn-outline {
  padding: 12px 26px;
  border: 2px solid #0C436A;
  color: #0C436A;
  margin-left: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn-outline:hover {
  background: #0C436A;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Right Side Image ===== */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-content {
    padding: 35px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}


/* =======================================
   DIRECTOR SECTION – DARK VERSION
   ======================================= */

.director-section {
  background: #0C436A;
  /* Navy dark background */
  padding: 70px 0;
}

/* Main Card */
.director-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 45px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);
  /* Light frosted glass effect */
  backdrop-filter: blur(6px);

  border-left: 6px solid #ED6624;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.director-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Director Image */
.director-image img {
  width: 280px;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.director-card:hover .director-image img {
  transform: scale(1.05);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.55);
}

/* Director Text */
.director-content h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.director-content h5 {
  color: #ED6624;
  margin-bottom: 15px;
  font-size: 18px;
}

.director-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e9e9e9;
}

/* Section Title */
.section-title h2 {
  color: #fff;
}

.section-title p {
  color: #e2e2e2;
}

/* Responsive */
@media (max-width: 991px) {
  .director-card {
    flex-direction: column;
    text-align: center;
    padding: 35px;
  }

  .director-image img {
    width: 240px;
    height: 280px;
  }
}


/* =======================================
   AIM | GOAL | VISION | MISSION Section
   ======================================= */
.aim-section {
  background: #ffffff;
}

.aim-card {
  background: #fff;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.aim-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: all 0.3s ease;
}

.aim-card:hover .icon-wrap {
  background: #0C436A;
  color: #fff;
  box-shadow: 0 0 18px rgba(12, 67, 106, 0.6);
}



/* ===============================
   ABOUT SECTION WRAPPER
================================= */
.about-wrap {
  padding: 80px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-left {
  padding-right: 10px;
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0C436A;
}

.about-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Image with fixed balanced height */
.left-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.left-img img:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
}

/*  RIGHT ABOUT CARD   */
.about-card {
  background: #0C436A;
  padding: 35px 40px;
  border-radius: 25px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.about-card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #EE6622;
}

.about-card p {
  line-height: 1.7;
  font-size: 16px;
}

/*  STATS SECTION   */
.stats-box {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 25px;
  padding: 40px 45px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
}

.stat-item {
  flex: 1;
  padding: 25px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
}

/* Numbers */
.stat-item h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0C436A;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

/* Sub text */
.stat-item p {
  margin: 0;
  color: #444;
  font-weight: 600;
}

/* Hover Effects */
.stat-item:hover {
  transform: translateY(-10px);
  background: #0C436A;
  border-color: #EE6622;
  box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.20);
}

.stat-item:hover h2 {
  color: #EE6622;
}

.stat-item:hover p {
  color: #fff;
}

/*    RESPONSIVE    */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .stat-item {
    width: 100%;
  }

  .about-card {
    padding: 25px 28px;
  }

  .about-title {
    font-size: 28px;
  }
}


/*------------------------------------------------------------- ABOUT SECTION END ----------------------------------------------------------*/



/*------------------------------------------------------------- SERVICES SECTION START ----------------------------------------------------------*/


/* ====================================
      SERVICES SECTION
==================================== */
.services-section {
  background: #f8f8f8;
}

.services-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0C436A;
  margin-bottom: 10px;
}

.services-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 22px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  cursor: pointer;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.08);
}

/* ICON */
.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  background: #0C436A;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 28px;
  transition: 0.35s ease;
  box-shadow: 0px 6px 14px rgba(12, 67, 106, 0.35);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0C436A;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECTS */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.18);
  border-color: #EE6622;
}

.service-card:hover .service-icon {
  background: #EE6622;
  transform: scale(1.15);
  box-shadow: 0px 10px 22px rgba(238, 102, 34, 0.45);
}

/*  RESPONSIVE  */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 28px;
  }
}


/* ===========================
   SERVICES IMAGE + FAQ SECTION
=========================== */

.services-faq-section {
  padding: 80px 0;
}

.services-faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

/* Right FAQ Box */
.services-faq-box h2 {
  font-weight: 700;
  font-size: 32px;
}

.services-faq-box h2 span {
  color: #EE6622;
  /* your brand highlight color */
}

/* FAQ Container */
.services-faq-container {
  margin-top: 20px;
}

.services-faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  padding: 18px 22px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all .3s ease;
}

.services-faq-item:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.services-faq-item.open {
  border-color: #EE6622;
  box-shadow: 0px 8px 25px rgba(238, 102, 34, 0.2);
}

/* Question Row */
.services-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-faq-question i {
  font-size: 20px;
  color: #EE6622;
  margin-right: 12px;
}

.services-faq-question h5 {
  flex: 1;
  font-size: 17px;
  margin: 0;
}

.faq-toggle {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

/* Answer */
.services-faq-answer {
  display: none;
  padding-top: 10px;
}

.services-faq-answer p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/*  RESPONSIVE   */
@media (max-width: 991px) {
  .services-faq-image img {
    margin-bottom: 25px;
    height: 320px;
  }
}



/*------------------------------------------------------------- SERVICES SECTION END ----------------------------------------------------------*/



/*------------------------------------------------------------- CONTACT SECTION START ----------------------------------------------------------*/


/* ===========================
   CONTACT SECTION UPDATED
=========================== */

.contact-section {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.contact-wrapper {
  width: 90%;
  max-width: 1350px;
  margin: auto;
}

/* Title */
.row-title {
  text-align: center;
  margin-bottom: 40px;
}

.row-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0C436A;
}

.row-title p {
  color: #555;
  max-width: 650px;
  margin: auto;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

/* Cards */
.contact-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

/* Form Title */
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0C436A;
  font-weight: 700;
}

/* Floating Input Group */
.form-row {
  display: flex;
  gap: 20px;
}

.floating-group {
  position: relative;
  margin-bottom: 20px;
  flex: 1;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 15px 14px;
  font-size: 15px;
  border-radius: 10px;
  outline: none;
  background: #fff;
  transition: .3s;
}

.floating-group textarea {
  height: 120px;
  resize: none;
}

.floating-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 14px;
  color: #777;
  transition: .3s;
  pointer-events: none;
}

.floating-group input:focus+label,
.floating-group textarea:focus+label,
.floating-group input:not(:placeholder-shown)+label,
.floating-group textarea:not(:placeholder-shown)+label {
  top: -8px;
  left: 12px;
  background: #fff;
  padding: 0px 5px;
  color: #EE6622;
  font-size: 12px;
}

.floating-group input:focus,
.floating-group textarea:focus {
  border-color: #EE6622;
  box-shadow: 0 0 0 3px rgba(238, 102, 34, 0.15);
}

/* Button */
.send-btn {
  background: #EE6622;
  color: #fff;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}

.send-btn:hover {
  background: #c44d10;
}

/* Success Message */
.success-msg {
  margin-top: 15px;
  display: none;
  color: green;
  font-weight: 600;
}

/* ======================================================
   PREMIUM INFO CARDS (EMAIL + ADDRESS)
====================================================== */

.info-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
  transition: .35s ease-in-out;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
}

.info-icon {
  height: 55px;
  width: 55px;
  border-radius: 12px;
  background: rgba(238, 102, 34, 0.12);
  color: #EE6622;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: .4s ease;
}

.info-icon i {
  font-size: 22px;
  transition: .5s ease;
}

.info-card:hover .info-icon i {
  transform: rotate(360deg);
}

.info-card h4 {
  margin-bottom: 6px;
  color: #0C436A;
  font-size: 18px;
  font-weight: 700;
}

.info-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Map */
.map-box {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.map-wrapper:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Custom Marker */
.custom-marker {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 28px;
  height: 28px;
  background: #EE6622;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(238,102,34,0.6);
  animation: marker-bounce 1.2s infinite ease-in-out;
}

@keyframes marker-bounce {
  0% { transform: translate(-50%, -100%) scale(1); }
  50% { transform: translate(-50%, -130%) scale(1.1); }
  100% { transform: translate(-50%, -100%) scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .map-wrapper {
    height: 320px;
    border-radius: 14px;
  }
  .section-title {
    font-size: 26px;
  }
  .location-address {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 260px;
  }
} 

/*------------------------------------------------------------- CONTACT SECTION END ----------------------------------------------------------*/





/*------------------------------------------------------------- PRODUCT SECTION START ----------------------------------------------------------*/


:root {
  --primary: #0C436A;
  --accent: #EE6622;
  --light-bg: #f4f7fb;
}

/* HERO */
.hero-banner {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #0C436A, #EE6622);
  color: #fff;
  border-radius: 18px;
  margin: 30px auto;
  max-width: 1200px;
}

.hero-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 18px;
}

/* WRAPPER */
.catalog-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: grid;
  gap: 30px;
  grid-template-columns: 250px 1fr;
}

/* SIDEBAR */
.catalog-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.sidebar-item {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-item:hover {
  background: #eaf0f7;
}

.sidebar-item.active {
  background: var(--primary);
  color: #fff;
}

/* SUB-TABS */
.subtabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.subtabs button {
  padding: 10px 18px;
  border: 2px solid var(--primary);
  background: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.subtabs button.active {
  background: var(--primary);
  color: #fff;
}

.subtabs button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* DETAILS */
.details-box {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 30px;
  padding: 35px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.details-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s;
}

.details-image img:hover {
  transform: scale(1.04);
}

.details-text h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.details-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.details-text ul {
  padding-left: 18px;
}

.details-text ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

/* RESPONSIVE */
@media(max-width: 950px) {
  .catalog-wrapper {
    grid-template-columns: 1fr;
  }

  .details-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .details-image img {
    height: 260px;
  }
}




/*------------------------------------------------------------- PRODUCT SECTION END ----------------------------------------------------------*/




/* ===========================
   FOOTER SECTION
   =========================== */
.footer {
  background: #0C436A;
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  z-index: 0;
}

.footer-logo {
  max-width: 90px;
  margin-bottom: 15px;
}

.footer h4,
.footer h5 {
  color: #EE6622;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.footer p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-info li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #EE6622;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-info a {
  color: #EE6622;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  z-index: 1;
}

.footer-policy a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-policy a:hover {
  color: #EE6622;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-policy {
    width: 100%;
    margin-top: 10px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}


/* ===========================
   TOP TO BOTTOM BUTTON SECTION
   =========================== */
/* ==== TOP BUTTON ==== */
#topBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 100;
  border: none;
  outline: none;
  background: var(--accent-color);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  /* fixed width */
  height: 50px;
  /* fixed height */
  font-size: 22px;
  opacity: 0.85;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

#topBtn:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* ==== RESPONSIVE ==== */
@media (max-width: 576px) {
  .navbar-brand span {
    font-size: 1rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 18px 10px;
  }

  .testimonials {
    padding: 35px 0;
  }
}