
/* ================= ROOT COLORS ================= */
:root {
  --primary: #043082;
  --primary-dark: #032566;
  --primary-light: #0a4ed1;

  --white: #ffffff;
  --black: #000000;

  --text-dark: #222;
  --text-light: #777;

  --bg-light: #f5f7fb;

  --shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ================= GLOBAL ================= */
body {
  font-family: Arial, sans-serif;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.section-padding {
    padding-bottom: 120px !important; 
}


/* DESKTOP */
.nav-menu {
  display:flex;
  align-items:center;
  gap:20px;
}


/* MOBILE */
@media (max-width:768px){

  #menuBtn {
    display:block !important;
  }

  .nav-menu {
    display:none; /* 🔥 FIX: hidden by default */
    flex-direction:column;
    width:100%;
    margin-top:15px;
    background:#fff;
    padding:15px;
    border-top:1px solid #eee;
  }

  .nav-menu.active {
    display:flex; /* 🔥 show only when clicked */
  }

  .nav-menu a {
    padding:10px 0;
    width:100%;
    text-align:center;
  }

  .nav-menu input {
    width:100% !important;
  }
}


/* ================= TOPBAR ================= */
.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 15px 0;
}

.topbar span {
  margin-right: 20px;
}

.topbar i {
  margin-right: 5px;
}

.top-right a {
  color: var(--white);
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
}

.quote-btn {
  background: var(--white);
  color: var(--primary) !important;
  padding: 6px 12px;
  border-radius: 4px;
}
.navbar {
  overflow: visible !important;
}

/* Dropdown Container */
.nav-item {
  position: relative;
}

/* Link */
.nav-link {
  color: #042b75;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: none;
  z-index: 9999;
}

/* Items */
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f2f4ff;
  color: #042b75;
}

/* SHOW DROPDOWN */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--white);
}

.logo {
  height: 105px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: 25px;
  padding: 8px 18px;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
   padding: 500px 0px 250px 0px;
  background: url('images/main-bg.png') no-repeat center/cover;
 
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
  animation: fadeIn 1.5s;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: slideUp 1s;
}

.hero-text {
  margin-bottom: 25px;
  animation: fadeIn 2s;
}

.hero-buttons a {
  margin-right: 10px;
  border-radius: 25px;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

.btn-outline-light:hover {
  /*background: var(--white);*/
  /*color: var(--primary);*/
  background-color: #f5f8ff !important;
  color: #023794 !important;
  border-color: #023794;
}

/* IMAGE */
.hero-image img {
  max-height: 380px;
  border-radius: 12px;
  animation: float 4s ease-in-out infinite;
}

/* SCROLL */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down span {
  display: block;
  width: 20px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  position: relative;
}

.scroll-down span::before {
  content: '';
  width: 4px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

@keyframes slideUp {
  from {transform:translateY(40px); opacity:0;}
  to {transform:translateY(0); opacity:1;}
}

@keyframes float {
  0% {transform: translateY(0);}
  50% {transform: translateY(-12px);}
  100% {transform: translateY(0);}
}

@keyframes scroll {
  0% {opacity:0; top:6px;}
  50% {opacity:1;}
  100% {opacity:0; top:18px;}
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .topbar { display:none; }
  .hero-section { height:auto; padding:60px 0; }
  .hero-title { font-size:30px; }
  .hero-image { margin-top:30px; }
}

/* ================= ABOUT ================= */
.about-section {
  background: var(--bg-light);
}

/* IMAGE */
.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* CONTENT */
.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* CARDS */
.about-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.about-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 16px;
  color: var(--text-light);
}

/* HOVER EFFECT */
.about-card:hover {
  transform: translateY(-8px);
}

.services-section {
  background: var(--white);
}
.f-link {
  color:#ddd;
  text-decoration:none;
  display:block;
  margin-bottom:8px;
  transition:0.3s;
}
.f-link:hover {
  color:#fff;
  transform:translateX(5px);
}
.service-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  background: var(--white);
}

.service-card i {
  font-size: 35px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-10px);
}

.counter-section {
  background: var(--primary);
  color: var(--white);
}

.counter-box h2 {
  font-size: 40px;
  font-weight: 700;
}

/* ================= WHY US ================= */
.whyus-section {
  background: var(--bg-light);
}

/* CONTENT */
.whyus-content p {
  margin-bottom: 25px;
}

/* ITEMS */
.whyus-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: 0.3s;
}

.whyus-item i {
  font-size: 22px;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
}

.whyus-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.whyus-item p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

/* HOVER EFFECT */
.whyus-item:hover {
  transform: translateX(8px);
}

/* IMAGE */
.whyus-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}


.product-card h6{
    margin: 15px 0px;
    font-weight: bolder;
}

/* IMAGE WRAP */
.product-img {
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE ZOOM */
.product-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

/* CARD */
.product-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.4s;
}

/* CARD HOVER */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* BUTTON */
.btn-product {
  background: var(--primary);
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  transition: 0.3s;
}

.btn-product:hover {
  background: #021d66;
  transform: scale(1.05);
}

/* VIEW MORE BUTTON */
.btn-view-more {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-view-more:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  color: #555;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
}
/* CONTACT SECTION */
.contact-section {
  background: #f8f9fa;
}

/* INFO */
.contact-info p {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info i {
  color: var(--primary);
  margin-right: 10px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

/* BUTTON */
.btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #021d66;
}

/* FOOTER */
.footer-section {
  background: #111;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-section h5 {
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 14px;
  color: #ccc;
}

/* LINKS */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* SOCIAL */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--primary);
}

/* COPYRIGHT */
.footer-section hr {
  border-color: #333;
}

.feature-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 16px;
  font-weight: 600;
  color: #0e2a4b;
  transition: all 0.4s ease;
  cursor: pointer;
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
.gallery-card {
  overflow:hidden;
  border-radius:12px;
  position:relative;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
  transition:0.4s ease;
}

.gallery-card img {
  width:100%;
  height:230px;
  object-fit:cover;
  transition:0.5s ease;
}

/* Hover Effect */
.gallery-card:hover img {
  transform:scale(1.08);
}

.gallery-card:hover {
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

