/* ==========================================================
   RESET AND BASE STYLES
   ========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================
   HEADER STYLES
   ========================================================== */

/* ------------------- Top Bar ------------------- */
.top-bar {
  background-color: #3ec4ed;
}

.top-bar p {
  font-size: 14px;
  font-weight: 500;
}

/* ✅ Old clean icon style (no effects) */
.social-icons a {
  font-size: 15px;
  color: #fff;
  margin-left: 10px;
}

.social-icons a:first-child {
  margin-left: 0;
}

/* ------------------- Info Bar ------------------- */
.info-bar {
  background-color: #fff;
}

.info-bar .logo-img {
  max-height: 90px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0d6efd;
}

/* Info text */
.info-item h6 {
  font-size: 15px;
}

.info-item small {
  font-size: 13px;
  color: #666;
}

/* ------------------- Navbar ------------------- */
.nav-bar-custom {
  background-color: #0d1b3b;
  padding: 0.8rem 0;
}

.nav-bar-custom .nav-link {
  color: #ffffff;
  font-weight: 600;
  padding: 12px 18px;
  transition: all 0.3s ease;
}

.nav-bar-custom .nav-link:hover,
.nav-bar-custom .nav-link.active {
  background-color: #3ec4ed;
  color: #0d1b3b;
  border-radius: 4px;
}

/* ------------------- Customer Care ------------------- */
.customer-care .customer-icon {
  width: 45px;
  height: 45px;
  background-color: #3ec4ed;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 22px;
  color: #fff;
}

.customer-care span {
  line-height: 1.2;
}

/* ==========================================================
   RESPONSIVE BEHAVIOR
   ========================================================== */

/* ----------- Large Screens (Desktop) ----------- */
@media (min-width: 993px) {
  .nav-bar-custom .nav-link {
    padding: 10px 14px;
    /* reduced padding */
    margin: 0 4px;
    /* smaller gap */
  }

  .nav-bar-custom .navbar-nav {
    gap: 8px;
  }
}

/* ----------- Tablets (992px and below) ----------- */
@media (max-width: 992px) {

  /* Hide info bar & customer care */
  .info-bar {
    display: none !important;
  }

  .customer-care {
    display: none !important;
  }

  /* Mobile navbar adjustments */
  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
  }


  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    background-color: #0d1b3b;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 12px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* ----------- Small Mobiles (max 767px) ----------- */
@media (max-width: 767px) {
  .social-icons {
    display: none !important;
  }

  .top-bar p {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }

  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-collapse {
    background-color: #0d1b3b;
  }

  .navbar-toggler {
    margin-left: auto;
  }
}

/* ----------- Extra Small Devices (max 576px) ----------- */
@media (max-width: 576px) {
  .mobile-logo {
    max-height: 65px;
  }

  .top-bar p {
    font-size: 12px;
  }
}

/* navbar sticky */

.nav-bar-custom {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ==========================================================
   CONTACT SECTION STYLES (Consistent with Header/Footer)
   ========================================================== */

.contact-section {
  background-color: #f9f9fb;
  color: #333;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0d1b3b;
  position: relative;
}

.contact-form .form-control {
  padding: 13px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #3ec4ed;
  box-shadow: 0 0 0 2px rgba(62, 196, 237, 0.15);
  outline: none;
}

.contact-form textarea {
  resize: none;
  width: 100%;
}

/* ---------- Submit Button ---------- */
.contact-submit {
  width: 100%;
  margin-top: 10px;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #3ec4ed;
  color: #fff;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-submit:hover {
  background-color: #0d1b3b;
  transform: translateY(-2px);
  color: #fff;
}

/* ---------- Map ---------- */
iframe {
  width: 100%;
  height: 300px;
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ---------- Address & Info ---------- */
.address-detail {
  font-size: 1rem;
  color: #333;
}

.address-detail i {
  color: #3ec4ed;
}

.address-detail a {
  color: #333;
  text-decoration: none;
}

.address-detail a:hover {
  color: #3ec4ed;
}

/* ---------- Social Icons ---------- */
.contact-media {
  display: flex;
  gap: 15px;
  padding-left: 0;
  list-style: none;
  margin-top: 10px;
}

.contact-media li i {
  font-size: 22px;
  color: #0d1b3b;
  transition: color 0.3s ease;
}

.contact-media a:hover i {
  color: #3ec4ed;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.6rem;
  }

  iframe {
    height: 250px;
  }

  .contact-submit {
    font-size: 0.95rem;
  }
}

/* ==========================================================
   FOOTER STYLES
   ========================================================== */

.custom-footer {
  background-color: #0d1b3b;
  /* same as navbar background */
  color: #fff;
  padding-top: 3rem;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: #f5f5f5;
}

/* ---------- Headings ---------- */
.footer-heading {
  color: #3ec4ed;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ---------- Lists ---------- */
.custom-footer ul {
  padding-left: 0;
}

.custom-footer ul li {
  margin-bottom: 10px;
  font-size: 15px;
  list-style: none;
}

.custom-footer ul li i {
  color: #3ec4ed;
  margin-right: 8px;
}

.custom-footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer ul li a:hover {
  color: #3ec4ed;
}

/* ---------- Social Icons ---------- */

.social-icons a {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  margin-right: 12px;
}

.social-icons a:hover {
  color: #3ec4ed;
}

/* ---------- Contact Info ---------- */
.contact-info li {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info i {
  margin-right: 8px;
  color: #3ec4ed;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  color: #3ec4ed;
}

/* ---------- Copyright ---------- */
.copyright-wrapper {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright {
  color: #333333;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.copyright-link {
  color: #3ec4ed;
  text-decoration: underline;
}

.copyright-link:hover {
  color: #3ec4ed;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .footer-logo-img {
    max-width: 150px;
  }

  .footer-heading {
    font-size: 16px;
  }

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

  .contact-info li,
  .custom-footer ul li {
    font-size: 14px;
  }
}

/* mani code */

/* ==========================================================
   ABOUT SECTION STYLES (Refined Version)
   ========================================================== */
.about-section {
  background-color: #f9f9fb !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-quote {
  color: #3ec4ed !important;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
}

.about-text {
  font-size: 17px;
  color: #444 !important;
  margin-bottom: 18px;
  line-height: 1.9;
}

.about-img {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
  transition: none;
  /* No zoom effect */
}

/* ---------- Fade-in animation ---------- */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .about-img {
    max-width: 85%;
  }
}

@media (max-width: 991px) {
  .about-quote {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-text {
    text-align: center;
    font-size: 16px;
  }

  .about-img {
    max-width: 90%;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-quote {
    font-size: 1.3rem;
  }

  .about-text {
    font-size: 15px;
  }
}

/* ==========================================================
   CORE VALUES SECTION STYLES
   ========================================================== */
.core-values-section {
  background-color: #ffffff;
}

.core-image {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.core-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f0fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3ec4ed;
  margin-right: 12px;
  flex-shrink: 0;
}

.core-title {
  color: #0d1b3b;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.core-text {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- Fade-in animation ---------- */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .core-values-section {
    text-align: center;
  }

  .core-image {
    max-width: 100%;
  }

  .core-icon {
    margin: 0 auto 10px;
  }

  .core-title {
    font-size: 1rem;
  }

  .core-text {
    font-size: 15px;
  }

  .col-sm-6.d-flex {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .core-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .core-title {
    font-size: 0.95rem;
  }

  .core-text {
    font-size: 14.5px;
  }
}


/* ==========================================================
   TESTIMONIAL SECTION (5 Reviews Version)
   ========================================================== */
.testimonial-section {
  background-color: #f9f9fb;
}

.testimonial-subtitle {
  color: #555;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.testimonial-slider {
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 50px 40px;
  text-align: center;
  outline: none;
}

.reviewer-icon {
  font-size: 65px;
  color: #3ec4ed;
  margin-bottom: 20px;
}

.star {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: #ffd700;
  font-size: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.review {
  color: #0d1b3b;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.reviewer-name {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* Slick Dots */
.slick-dots {
  bottom: -35px;
}

.slick-dots li button:before {
  color: #3ec4ed;
  opacity: 0.6;
}

.slick-dots li.slick-active button:before {
  color: #0d1b3b;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 35px 25px;
  }

  .reviewer-icon {
    font-size: 55px;
  }

  .review {
    font-size: 16px;
  }
}