/* Global Font Settings START*/

.profile-icon {
  width: 24px;      /* adjust size */
  height: 24px;
  filter: brightness(0) invert(1); /* forces it to display white */
}


/* Headings (h1, h2, h3) → Roboto Bold */
h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500; /* bold */
}

/* Subheadings (h4, h5, h6) → Montserrat Bold */
h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* bold */
}

/* Body text (p, li, span, etc.) → Montserrat Light */
body, p, li, span, a, input, button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* light */
  line-height: 1.6; /* improves readability */
}
/* Global Font Settings END*/

.text-dark-custom {
  color: #111;   /* or #000 if you prefer true black */
}



/*** NAVBAR START****/
.custom-nav {
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
  padding: 1rem 0;
  z-index: 9999; /* stays above everything */
}
.custom-nav.scrolled {
  background: rgba(0,0,0,0.85);
  padding: 0.5rem 0;
  backdrop-filter: blur(5px);
}
.custom-nav .nav-link {
  color: #fff;
  margin-left: 1rem;
  transition: color 0.3s;
}
.custom-nav .nav-link:hover,
.custom-nav .dropdown-item:hover {
  color: #09d24f;
}

/* Dropdown customization */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.171);
  border: none;
}
.dropdown-item {
  color: #fff;
  transition: color 0.3s;
}
.dropdown-item:hover {
  color: #09d24f;
  background: transparent;
}

/* ===== Get Started Button Custom Size ===== */
.btn-get-started {
  background-color: #ef061d;   /* Bootstrap red */
  border: none;
  font-size: 0.85rem;          /* smaller text */
  padding: 0.35rem 0.9rem;     /* tighter padding */
  border-radius: 1rem;       /* slightly rounded corners */
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-get-started:hover {
  background-color: #b02a37;   /* darker red on hover */
}



/* ===== Logo Shimmer Effect ===== */
.logo {
  position: relative;
  height: 50px;        /* adjust as needed */
  width: auto;
  display: inline-block;
  overflow: hidden;    /* keep shine inside logo bounds */
}

/* Add a pseudo-element for the light sweep */
.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;  /* start from left outside */
  width: 100%;
  height: 100%;
  
  /* Gradient: transparent -> white -> transparent */
  background: linear-gradient(
    120deg, 
    transparent 0%, 
    rgba(255,255,255,0.6) 50%, 
    transparent 100%
  );

  /* Animation moves gradient left to right */
  animation: shine 3s linear infinite;
}

/* Keyframes to sweep the light across */
@keyframes shine {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}

@media (max-width: 991px) {
  .navbar-collapse.show {
    background: rgba(0,0,0,0.9);
    padding: 1rem;
  }
}


/*** NAVBAR END****/

/* Hero video section */


.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /*background: #007e5d; fallback for browsers that can't load video */
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 4, 4, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
}


/* ===== Fancy Service Cards ===== */
.service-card {
  position: relative;
     /* translucent Minadi green glass */
  
  
  border-radius: 1.5rem;
  padding: 2rem;
 
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* animated gradient halo behind each card */

/* smooth lift on hover 
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
***/

/* headline + text tweaks */
.service-card h2,
.service-card p {
  color: #fff;
}

/* Button styling inside the card */
.service-card .btn-primary {
  background: #007e5d; /* Logo Green */
  border: none;
  transition: background 0.3s ease;
}
.service-card .btn-primary:hover {
  background: #161918; /* Darker green hover */
}

/* Keyframes for slow gradient rotation */
@keyframes rotateGradient {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== Fancy Service Cards END ===== */




/* ===== Navbar Spacing & Font ===== */
.custom-nav .nav-link {
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.8rem;
}

/* Keep the brand/logo nicely sized */
.custom-nav .navbar-brand img.logo {
  max-height: 48px;
}

/* ===== Hero Section Centering ===== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;          /* full viewport */
  padding-top: 4rem;      /* keeps nav from overlapping */
}

.hero-content h1 {
  font-size: 3rem;        /* bold welcome text */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

/* Headings in uppercase for big impact */
.hero-content h2 {
  text-transform: uppercase;
}

/* ===== Buttons & Card Layout ===== */
.service-card .btn-primary {
  background: #007e5d;
  border-radius: 25rem;
  padding: 0.2rem 1.2rem;
  font-weight: 500;
}

.service-card {
  min-height: 160px;  /* ensures both cards stay equal height */
  text-align: center;
}
.service-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Responsive tweaks for smaller devices */
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .service-card {
    min-height: auto;
    margin-bottom: 1rem;
  }
}


/* === Remove Glass Effect from Service Cards === */
.service-card {
          /* solid dark background (or #fff if you want white) */
      /* solid border to match background */
  backdrop-filter: none;        /* remove blur */
  box-shadow: none;             /* no extra shadow unless desired */
}

/* Remove the animated halo completely */
.service-card::before {
  display: none;                /* hide gradient pseudo-element */
  content: none;
}


/* ===== OUR CORE VALUES ===== */
.circle-box {
  position: relative;
  width: 120px;
  height: 120px;
  
}

.circle-static .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.circle-static .ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: #28a745;
  border-right-color: #28a745;
  animation: spin 6s linear infinite;
  z-index: 1;
}

/* Ring speed & color variations */
.ring.fast   { animation-duration: 4s; border-top-color:#09d24f; border-right-color:#09d24f; }
.ring.medium { animation-duration: 6s; border-top-color:#09d24f; border-right-color:#09d24f; }
.ring.slow   { animation-duration:10s; border-top-color:#09d24f; border-right-color:#09d24f; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#values h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* ===== Responsive Sizes ===== */
@media (min-width:1400px) {
  .circle-box { width:150px; height:150px; }
  .circle-static .inner { width:130px; height:130px; font-size:2rem; }
  .circle-static .ring  { width:150px; height:150px; }
  #values h2 { font-size:2.5rem; }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .circle-box { width:140px; height:140px; }
  .circle-static .inner { width:120px; height:120px; font-size:1.8rem; }
  .circle-static .ring  { width:140px; height:140px; }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .circle-box { width:120px; height:120px; }
  .circle-static .inner { width:100px; height:100px; font-size:1.6rem; }
  .circle-static .ring  { width:120px; height:120px; }
}

@media (min-width:768px) and (max-width:991.98px) {
  .circle-box { width:115px; height:115px; margin-bottom:1.25rem; }
  .circle-static .inner { width:95px; height:95px; font-size:1.45rem; }
  .circle-static .ring  { width:115px; height:115px; }
  #values h2 { font-size:1.9rem; }
  #values .d-flex {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .circle-box { width:95px; height:95px; margin-bottom:1rem; }
  .circle-static .inner { width:80px; height:80px; font-size:1.2rem; }
  .circle-static .ring  { width:95px; height:95px; border-width:6px; }
  #values h2 { font-size:1.6rem; }
  #values .d-flex {
    flex-direction: column;
    align-items: center;        /* keep circle-box centered */
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width:575.98px) {
  .circle-box { width:80px; height:80px; margin-bottom:1rem; }
  .circle-static .inner { width:65px; height:65px; font-size:1rem; }
  .circle-static .ring  { width:80px; height:80px; border-width:5px; }
  #values h2 { font-size:1.4rem; margin-bottom:1.5rem; }
  #values .d-flex {
    flex-direction: column;
    align-items: center;        /* center align on very small phones */
    justify-content: center;
    text-align: center;
    gap: .75rem;
  }
}
/* ===== OUR CORE VALUES END ===== */


/* ===== OUR PARTNERS SECTION ===== */
.partners-section {
  background: url("assets/dark-businesswoman-shaking-hands-with-male-colleague.jpg") center center/cover no-repeat;
  position: relative;
  padding: 80px 0;
  color: #fff;
}

/* optional semi-transparent dark overlay for contrast */
.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.partners-section > .container {
  position: relative; /* keep content above overlay */
  z-index: 2;
}

.partners-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.partner-box {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;               /* equal height for all boxes */
  transition: transform 0.3s ease;
}
.partner-box img {
  max-height: 60px;           /* keep logos neat */
  width: auto;
}
.partner-box:hover {
  transform: translateY(-5px);
}

/* ===== Responsive tweaks ===== */
@media (max-width: 575.98px) {
  .partners-title { font-size: 1.6rem; }
  .partner-box    { height: 80px; padding: .75rem 1rem; }
  .partner-box img { max-height: 50px; }
}
/* ===== OUR PARTNERS SECTION END ===== */


/* ===== FOOTER STYLES ===== */
/* ===== FOOTER STYLES (Compact) ===== */
.footer {
  background-color: #111111f1;
  color: #f1f1f1;
  font-size: 0.8rem;   /* slightly smaller */
  padding: 0.5rem 0;     /* reduce vertical padding */
}

.footer h3,
.footer h6 {
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem; /* tighten spacing under headings */
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #20c997;
}

/* ---- Social Icons ---- */
.footer .social-link {
  width: 34px;   /* smaller icons */
  height: 34px;
  font-size: 1rem;
}

/* ---- Contact Info ---- */
.footer .contact-info li {
  margin-bottom: 0.5rem; /* reduce gap between items */
  font-size: 0.9rem;
}

/* ---- Newsletter ---- */
.footer .form-control {
  padding: 0.4rem 0.75rem; /* smaller input height */
  border-radius: 0.4rem;
  font-size: 0.9rem;
}

.footer .btn-success {
  padding: 0.45rem 0.9rem; /* smaller button */
  border-radius: 0.4rem;
  font-size: 0.9rem;
}

/* ---- Logo ---- */
.footer-logo {
  max-width: 150px; /* smaller logo */
  height: auto;
}

/* ---- Responsive Tweaks ---- */
@media (max-width: 767.98px) {
  .footer {
    padding: 1.5rem 0;
  }
  .footer-logo {
    max-width: 120px;
  }
}

/* ===== FOOTER STYLES END ===== */

/* ===== know us ===== */
#know-us h2 {
  font-weight: 400;
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  #know-us h2 {
    font-size: 1.25rem;
    text-align: center;
  }
  #know-us h5 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
/* ===== know us ===== */

/* =======================
   TESTIMONIALS SECTION
   ======================= */

/* Full-width section and reduced height */
.testimonials-section {
  width: 100%;
  height: 55vh;          /* reduce height – adjust as desired */
  min-height: 500px;
  overflow: hidden;
}

/* Stretch columns to full section height */
.testimonials-section .row,
.testimonials-section .col-md-6 {
  height: 93%;
}

/* Grey outer box – fixed height container */
.testimonial-box {
  background: #e6e6e6;
  max-width: 550px;
  padding: 2rem;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0;
  overflow: hidden;      /* keeps inner card inside */
}

/* Inner white card – constrained properly */
.carousel-content {
  background: #fff;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  flex: 1;               /* make it fill space inside parent */
  overflow-y: auto;
  border-radius: 0;
}

/* Testimonial text – stronger appearance */
.quote {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #222;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.2rem;
  background: transparent;
  box-shadow: none;
}

/* Decorative quote marks */
.quote::before,
.quote::after {
  content: '';
  position: absolute;
}

.quote::before {
  content: "“";
  font-size: 2rem;
  left: -0.6rem;
  top: -0.4rem;
  color: #000;
}

.quote::after {
  content: "”";
  font-size: 2rem;
  right: -0.6rem;
  bottom: -0.4rem;
  color: #000;
}

/* Only the testimonial image keeps its circle */
.testimonial-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.bg-green {
  background-color: #008060;
}

.triangle {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid red;
  transform: rotate(90deg);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .testimonials-section {
    height: auto;        /* let it grow naturally on small screens */
    min-height: auto;
    padding: 2rem 1rem;
  }

  .testimonials-section .row,
  .testimonials-section .col-md-6 {
    height: auto;        /* stop forcing equal height */
  }

  .testimonial-box {
    max-width: 100%;
    height: auto;
    padding: 1.5rem;
  }

  .carousel-content {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-img {
    width: 40px;
    height: 40px;
  }

  /* Center the right-side heading */
  .testimonials-section .bg-green h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 1rem;
  }

  .triangle {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid red;
  }
}

/* =======================
   TESTIMONIALS BACKGROUND
   (from external file)
   ======================= */
.testimonial-bg {
  background-color: #0d8050;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 128, 80, 0.85); /* dark green overlay */
  z-index: 0;
}

/* keep content above overlay */
.testimonial-bg .container,
.testimonial-bg .card,
.testimonial-heading {
  position: relative;
  z-index: 1;
}

/* Heading style */
.testimonial-heading {
  text-align: right;
  font-size: 1.3rem;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .testimonial-heading {
    text-align: center;
    margin-top: 2rem;
  }
}
/* =======================
   TESTIMONIALS SECTION END
   ======================= */


/* ===== Base Styles ===== */
.privacy-section h1,
.privacy-section h2,
.privacy-section h3,
.privacy-section h4 {
  font-weight: 700;
  margin-top: 2rem;
}

.privacy-section p,
.privacy-section li {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  padding-left: 1.25rem;
}

/* ===== Responsive Typography ===== */

/* Small screens (phones) */
@media (max-width: 575.98px) {
  .privacy-section h1 { font-size: 1.8rem; }
  .privacy-section h2 { font-size: 1.4rem; }
  .privacy-section h3 { font-size: 1.2rem; }
  .privacy-section h4 { font-size: 1.1rem; }
  .privacy-section p,
  .privacy-section li { font-size: 0.95rem; }
  .privacy-section { padding: 2rem 1rem; }
}

/* Medium screens (tablets) */
@media (min-width: 576px) and (max-width: 991.98px) {
  .privacy-section h1 { font-size: 2rem; }
  .privacy-section h2 { font-size: 1.6rem; }
  .privacy-section h3 { font-size: 1.3rem; }
  .privacy-section h4 { font-size: 1.15rem; }
  .privacy-section p,
  .privacy-section li { font-size: 1rem; }
  .privacy-section { padding: 3rem 2rem; }
}

/* Large screens (desktops) */
@media (min-width: 992px) {
  .privacy-section h1 { font-size: 2.4rem; }
  .privacy-section h2 { font-size: 1.8rem; }
  .privacy-section h3 { font-size: 1.4rem; }
  .privacy-section h4 { font-size: 1.2rem; }
  .privacy-section p,
  .privacy-section li { font-size: 1.05rem; }
  .privacy-section { padding: 4rem 3rem; }
}


/* ===== Contact ===== */
/* ===== Contact Section ===== */
.contact-section {
  background: url("automobile/MG/RX9/MG_RX9-\(High\ Res\)-55.jpg") center center/cover no-repeat;
  
  position: relative;
  padding: 80px 0;
  margin-top: 50px; /* user request */
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.872); /* <-- adjust opacity here */
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Form */
.contact-form {
  max-width: 800px; /* shrink form width */
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 6px;
}

.contact-form .form-label {
  color: #fff;
  font-weight: 500;
}

.contact-form .form-control {
  background: transparent;
  border: 1px solid #aaa;
  border-radius: 0;
  color: #fff;
}

.contact-form .form-control:focus {
  border-color: #0f9d58;
  background: rgba(255,255,255,0.05);
  color: #fff;
  box-shadow: none;
}

.contact-form textarea {
  resize: none; /* disable expand */
}

.btn-submit {
  background: #007a4d;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: none;
  font-weight: 500;
}

.btn-submit:hover {
  background: #005f3a;
}

/* Map Styling */
.map-container {
  margin: 15px auto;
  max-width: 700px;
  border-radius: 6px;
  overflow: hidden;
}

.contact-info p, 
.contact-info a {
  margin: 0.3rem 0;
  color: #fff;
  text-decoration: none;
}


/* Responsiveness */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
    max-width: 100%;
  }
}

/*----- GALLERY SECTION ===== */
/* ===== GALLERY SECTION ===== */
.gallery-section {
  background-color: #fff;
}

.gallery-section h2 {
  color: #000; /* Heading color */
}

/* Keep tabs always visible */
#gallery-filters .nav-link {
  color: #007e5d;
  border: 1px solid #007e5d;
  border-radius: 50px;
  margin: 0 5px;
  background-color: transparent;
  transition: all 0.3s ease;
}

#gallery-filters .nav-link.active {
  background-color: #007e5d;
  color: #fff;
  font-weight: bold;
}

#gallery-filters .nav-link:hover {
  background-color: #005f46;
  color: #fff;
}


.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.video-wrapper video {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Play button overlay */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 126, 93, 0.8); /* Brand green overlay */
  border-radius: 50%;
  padding: 15px 20px;
  line-height: 1;
  pointer-events: none; /* let clicks go through */
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.video-wrapper:hover .play-button {
  background: rgba(0, 126, 93, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile scaling */
@media (max-width: 576px) {
  .play-button {
    font-size: 1rem;
    padding: 10px 14px;
  }
}

/* Images same size + hover zoom centered with margin top */
.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0; /* square edges */
  transition: transform 0.3s ease;
  cursor: pointer;
  transform-origin: center; /* zoom from center */
}


.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-caption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
  color: #666;
}

/* If using Bootstrap modal or lightbox */
.modal-dialog,
.lightbox .modal-content {
  margin-top: 50px; /* Push modal down */
}

/* For specific lightbox containers */
.lightbox .modal-body img,
.modal-body img {
  margin-top: 40px; /* Push the enlarged image down inside the modal */
}


/* Mobile responsiveness */
@media (max-width: 576px) {
  .gallery-img {
    height: 200px;
  }
  #gallery-filters .nav-link {
    margin-bottom: 10px;
  }
}