/*navbar */
.navbar-custom {
  background-color: #fcd9c2; /* light peach */
  padding: 1rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030; /* higher than default to stay on top */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.nav-link {
  font-weight: 600;
  color: #0d3f67; /* dark blue */
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  text-decoration: none; /* no underline by default */
}
.nav-link:hover,
.nav-link:focus {
  color: #d94834; /* red on hover */
  text-decoration: none; /* no underline on hover */
}

.btn-enquire {
  background-color: #c1271d;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.75rem 1.5rem; /* bigger padding for touch */
  border: none;
  min-width: 120px; /* optional */
  min-height: 48px; /* ensures minimum 48px touch size for accessibility */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.btn-enquire:hover,
.btn-enquire:focus {
  background-color: #a61f17; /* darker hover red */
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

/* Remove toggler border and focus outline */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  color: #b33929;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' " + "xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23b33929' stroke-width='2' stroke-linecap='round' " + "stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 991px) {
  .navbar-nav {
    margin: 0;
  }
}
.navbar-brand img {
  height: 50px; /* increased size */
  width: 100px;
}

/* Hero Section */
.hero-section {
  padding-top: 25px;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Hide mobile by default */
.hero-mobile {
  display: none;
}

/* Mobile view: show only mobile image */
@media (max-width: 992px) {
  .hero-section {
    padding-top: 25px;
    height: auto; /* remove fixed height */
  }
  .hero-desktop {
    display: none !important; /* force hide desktop image */
  }
  .hero-mobile {
    display: block !important; /* show mobile image */
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/*About Section */
.leo {
  background-color: #ffe4d4;
}
.section-container {
  padding: 60px 15px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.dot-decoration {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#304569 2px, transparent 1px);
  background-size: 12px 12px;
  z-index: 0;
  opacity: 0.3;
}

.company-image {
  max-width: 100%;
  height: 520px; /* increased from 480px */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2; /* in front of dots */
}

.youtube-logo {
  width: 180px; /* slightly bigger if desired */
  position: absolute;
  bottom: 20px;
  right: 120px;
  z-index: 3; /* stays on top */
  padding: 30px;

  background-color: white;
}

.btn-custom {
  background-color: #002f6c;
  color: white;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
}

.btn-custom:hover {
  background-color: #dfe1e2;
}

ul li {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.btn-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .btn-right {
    align-items: flex-end;
  }
}

/* Services Section */

.services {
  padding: 60px 0;
}

.services h6 {
  color: #007bff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.services p {
  color: #6c757d;
}

.card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.btn-link {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-link:hover {
  color: #0056b3;
}
/*Why choose us*/
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.feature-icon {
  width: 65px;
  height: 65px;
  border: 2px solid #0a2b55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px; /* Increase icon size */
  color: #0a2b55;
  flex-shrink: 0;
}
.feature-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.section-title {
  font-weight: 700;
  color: #0a2b55;
}
.main-img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/*count */
.stats-section {
  background: linear-gradient(to bottom, #0286f8, #d9ecff);
  padding: 60px 0;
  color: #000;
}
.stat-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  display: inline-block;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #003d80;
}
.stat-title {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

/*big image */
.image-section img {
  max-width: 100%;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/*gallery */
.gallery-section {
  padding: 50px 15px;
  text-align: center;
}

.gallery-section h2 {
  font-weight: bold;
  margin-bottom: 40px;
  color: #0d2c57;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.4s ease-in-out;
  height: 250px; /* fixed height for all items */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes all same size */
  transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.08); /* Zoom effect */
}

.view-more-btn {
  margin-top: 30px;
}

.view-more-btn .btn {
  background-color: #0d2c57;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px 25px;
}

.view-more-btn .btn:hover {
  background-color: #1a3d7c;
}

/*trust*/
.recent-works {
  padding: 60px 15px;
  text-align: center;
}

.recent-works h5 {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.recent-works h2 {
  font-weight: bold;
  margin: 10px 0;
  color: #0d2c57;
}

.recent-works p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 15px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
}

/* Hover zoom */
.gallery img:hover {
  transform: scale(1.05);
}

/* Fixed sizes for consistent look */
.vert-img {
  height: 350px; /* vertical images */
}
.horiz-img {
  height: 350px; /* horizontal same height */
}
.med-img {
  height: 300px; /* second row images */
}

@media (max-width: 768px) {
  .vert-img,
  .horiz-img,
  .med-img {
    height: auto; /* let them resize naturally on small screens */
  }
  .recent-works {
    background-color: #fff !important;
  }
}

/* footer */
/* Footer container styling with background arrows */
.footer-bg {
  background-color: #fff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Pseudo-element for the left arrow */
.footer-bg:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1500px; /* Adjusted to make arrow more visible */
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e9ecef"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Pseudo-element for the right arrow */
.footer-bg:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1500px; /* Adjusted to make arrow more visible */
  transform: translateY(-50%) scaleX(-1);
  width: 450px;
  height: 450px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e9ecef"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Hide arrows on smaller screens to prevent overlap */
@media (max-width: 768px) {
  .footer-bg:before,
  .footer-bg:after {
    display: none;
  }
}

/* WhatsApp icon styling */
.whatsapp-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.whatsapp-icon img {
  width: 50px;
  height: auto;
}

/* Logo and description section */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-section img {
  width: 150px;
  margin-bottom: 20px;
}

.logo-section p {
  font-size: 14px;
  text-align: justify;
}

/* Link styling - applies to both Useful Links and Contact Info */
.useful-links ul li a,
.contact-info a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.useful-links ul li a:hover,
.contact-info a:hover {
  color: #d94834; /* Red hover color */
  text-decoration: none; /* Remove underline on hover */
}

/* Social media icons */
.social-icons a {
  margin-right: 15px;
  color: #fff;
  font-size: 24px;
}

.social-icons .bi-instagram {
  color: #e1306c;
}

.social-icons .bi-facebook {
  color: #1877f2;
}

.social-icons .bi-youtube {
  color: #ff0000;
}

/* Useful links list styling */
.useful-links ul {
  list-style-type: none;
  padding: 0;
}

.useful-links ul li {
  margin-bottom: 10px;
}

/* Footer bottom section with copyright and design credits */
.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 12px;
}

/* process */
.process-box {
  border: 2px solid #0d6efd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  background: #fff;
}
.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
}
.process-box img {
  max-width: 90px; /* bigger icons */
}
.process-title {
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.1rem; /* slightly bigger text */
}

/* Testimonials Section */
.testimonial-section {
  padding: 60px 0;
  text-align: center;
}
.testimonial-title small {
  display: block;
  font-size: 16px;
  color: #555;
}
.testimonial-title h2 {
  font-weight: 700;
  color: #0a2b55;
  margin-bottom: 40px;
}
.testimonial-card {
  position: relative;
  background: url("about/F1.png") no-repeat center;
  background-size: cover;
  padding: 120px 40px 90px;
  border-radius: 15px;
  min-height: 400px;
  overflow: hidden;
}
/* Top-left corner image */
.testimonial-card img.corner-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.testimonial-text {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  margin: 0;
  position: relative;
  z-index: 1;
}
.testimonial-location {
  font-size: 14px;
  color: #444;
  position: relative;
  z-index: 1;
}
/* Responsive fixes */
@media (max-width: 991px) {
  .testimonial-card {
    min-height: 300px;
    padding: 100px 25px 70px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .testimonial-author {
    font-size: 16px;
  }
}

/* header section */
.section {
  min-height: 80vh;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center; /* centers vertically */
  background-color: #d9d9d9; /* ash background */
  text-align: center; /* keeps content aligned in smaller screens */
  padding: 40px 20px;
}
.section img {
  max-width: 100%;
  height: auto;
}
.text-content h2 {
  font-weight: 900;
  font-size: 50px;
  color: #0d2c54;
  margin-bottom: 15px;
}
.text-content p {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}
.home-link {
  text-decoration: none;
  font-weight: 600;
  color: #0a2b55; /* default text color */
  transition: 0.3s;
  padding: 4px 10px;
  border-radius: 4px;
}

.home-link:hover {
  color: #b81212; /* text turns white */
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px; /* distance from bottom */
  right: 20px; /* distance from right */
  z-index: 1000; /* stay on top */
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366; /* WhatsApp green */
  padding: 10px;

  transition: transform 0.3s ease;
}

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

/**************/

/*drop down*/
/* Dropdown background */
.dropdown-menu {
  background-color: #fcd9c2;
  border: none;
}

/* Dropdown link color */
.dropdown-menu .dropdown-item {
  color: #000;
}

/* Hover effect for dropdown items */
.dropdown-menu .dropdown-item:hover {
  background-color: #d94834;
  color: #fff;
}

/* Nav link hover color */
.nav-link:hover {
  color: #d94834 !important;
}

/************/
