body {
    font-size: 1.125rem; /* 18px instead of 16px */
    line-height: 1.7;
  }
/* Headings */
h1 {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 2rem;      /* ~36px, 2x body font */
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.75rem;   /* ~31.5px, 1.75x body font */
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.5rem;    /* ~27px, 1.5x body font */
  font-weight: 600;
  line-height: 1.3;
}
 
/* ------------------------------
   TOP CONTACT BAR (HEADER STRIP)
------------------------------ */
.topbar {
    background: #ffffff;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* General link styling */
.topbar a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Base cleanup so icons don't inherit unwanted styles */
.topbar i {
    margin-right: 8px;
    font-size: 1rem;
}

/* ------------------------------
   LEFT SECTION: CONTACT INFO
------------------------------ */
.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Contact icons (red, but NO circle) */
.contact-info .contact-icon {
    color: #FFB343;
    font-size: 18px;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Default font size (desktop) */
.topbar .contact-info .item a {
  font-size: 14px; /* or whatever you want for desktop */
}

/* Mobile view: screens smaller than 768px */
@media (max-width: 767px) {
  .topbar .contact-info .item a {
    font-size: 16px; /* bigger on mobile */
  }

  .topbar .contact-info .item i.contact-icon {
    font-size: 18px; /* increase icon size as well */
  }
}

/* ------------------------------
   RIGHT SECTION: SOCIAL ICONS
------------------------------ */
.social-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

/* Default State: Icons visible (black), no circle */
.social-links a i {
  font-size: 18px;
  color: #000;
  transition: 0.3s ease;
  padding: 6px;
  border: 2px solid transparent;
  border-radius: 50%;
}

/* Hover: Red icon & red outline circle */
.social-links a:hover i {
  color: #FFB343;
  border-color: #FFB343;
  transform: scale(1.15);
}



/* ------------------------------
   RESPONSIVE BEHAVIOR
------------------------------ */
@media (max-width: 768px) {
    .topbar {
        text-align: center;
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .contact-info {
        width: 100%;
        justify-content: center;
        gap: 1.2rem;
    }

    .social-links {
        display: none !important;
    }
}


/* ------------------------------
   NAVBAR STYLING
------------------------------ */

.navbar {
    background-color: #FFB343 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-link {
    color: #000 !important;
    font-weight: 600;
    font-size: 1rem;
}

.nav-link:hover {
    background-color: #FFB343;
    border-radius: 4px;
    transition: 0.2s ease-in-out;
}

.navbar-nav {
    gap: 1.2rem;
    display: flex;
  }

.nav-item .btn {
    margin-left: 0.8rem;
    font-weight: 700;
}

/* Toggle button contrast fix */
.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    filter: brightness(0) contrast(5);
}


/* ------------------------------
   DROPDOWN MENU
------------------------------ */
.navbar .dropdown ul {
    background: #ffffff;
    border: none;
    padding: 8px 0;
    border-radius: 4px;
}

.navbar .dropdown ul li a {
    padding: 10px 20px;
    font-size: 15px;
    color: #000;
    transition: 0.3s ease;
}

.navbar .dropdown ul li a:hover,
.navbar .dropdown ul li:hover > a,
.navbar .dropdown ul li a:focus,
.navbar .dropdown ul.show > li > a,
.navbar .dropdown ul li a:active {
    background: #00ff00 !important;
    color: #000 !important;
}

@media (max-width: 991px) {
    .navbar .dropdown ul li a {
        padding: 12px 18px;
        background: #ffffff;
        border-bottom: 1px solid #ddd;
    }
}

/* Hide close icon by default */


.navbar-toggler .close-icon {
    display: none;
    font-size: 22px;
    color: #000;
}

.navbar-toggler .open-icon,
.navbar-toggler .close-icon {
    transition: 0.2s ease-in-out;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
}


@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }
}

/* ================================
   SUPER SECTION
================================ */

.super {
  position: relative;
}

/* Fullscreen Carousel Image */
.super .carousel-item img {
  height: 80vh;
  width: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.super .overlay-gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Centered Transparent Content Box */
.super .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 80%;
  max-width: 900px;
  padding: 35px;
  border: 2px solid #FFB343;
  border-radius: 10px;
  background: transparent;
  text-align: center;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  pointer-events: auto !important; /* Ensure buttons work inside carousel */
}

/* Responsive Title */
.super h2 {
  font-size: clamp(24px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 12px rgba(0,0,0,0.5);
}

/* Responsive Paragraph */
.super p {
  font-size: clamp(14px, 2vw, 20px);
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* -------------------------------
   CUSTOM CTA BUTTON (FINAL)
-------------------------------- */
.super-btn {
  display: inline-block;
  padding: clamp(10px, 2vw, 16px) clamp(24px, 4vw, 40px);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  border-radius: 40px;
  background: #FFB343;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid #FFB343;
  animation: pulse 2.5s infinite ease-in-out;
}

.super .super-btn {
  position: relative;
  z-index: 9999 !important;
  pointer-events: auto !important;
}


/* Hover effect */
.super-btn:hover {
  background: transparent;
  color: #FFB343;
  transform: scale(1.15);
  box-shadow: 0px 0px 18px rgba(255, 0, 0, 0.5);
}

/* Animation: Fade-up when slide becomes active */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.super .animate-content {
  opacity: 0;
}

.super .carousel-item.active .animate-content {
  animation: fadeUp 1.2s ease forwards;
}
/* Allow the carousel caption to accept mouse hover/click */
.carousel-caption, 
.carousel-caption * {
  pointer-events: auto !important;
}

/* Timing consistency with CTA button */
.carousel-caption .cta-btn {
  transition: all 0.3s ease !important;
}

/* Hover behavior same as CTA */
.carousel-caption .cta-btn:hover {
  background: #b30000 !important;
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.45);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .super .carousel-caption {
    width: 90%;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .super-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}
/* CTA Section Styling */
.call-to-action {
  background: #f2f2f2;
  padding: 60px 0;
  border-radius: 10px;
}

/* CTA Button */
.call-to-action .cta-btn {
  display: inline-block;
  background: #4999f3;
  color: #fff;
  padding: 14px 30px;
  font-size: 1.15rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px #4999f3;
}

/* Hover Effect */
.call-to-action .cta-btn:hover {
  background: #4999f3;
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* Remove default link styling */
.get-started-btn {
  display: inline-block;
  padding: 13px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #e60000;
  border-radius: 50px;
  border: none;
  text-decoration: none !important;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  pointer-events: auto !important;
}


/* Hover effect */
.get-started-btn:hover {
  background: #b30000;
  transform: scale(1.15);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.45);
  color: #fff !important;
}


@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(255,0,0,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 18px rgba(255,0,0,0.4); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,0,0,0.3); }
}
/* Subtle hover effect for Reasons list */
#reasons-to-choose-us ul li {
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 6px 4px;
  border-radius: 4px;
}

#reasons-to-choose-us ul li:hover {
  background-color: rgba(13, 110, 253, 0.06); /* Bootstrap primary, very light */
  transform: translateX(4px);
}

/* ------------------------------
   SERVICES SECTION STYLES
------------------------------ */
.services {
  padding: 60px 0;
}

.service-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}

/* Hover effect for card */
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0,0,0,0.12);
  border-color: #FFB343;
}

/* Icon style */
.service-item .icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid #FFB343;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  transition: all 0.35s ease;
}

.service-item i {
  font-size: 30px;
  color: #FFB343;
  transition: 0.3s ease;
}

/* Hover effect for icon */
.service-item:hover .icon {
  background: #FFB343;
  transform: scale(1.15);
}

.service-item:hover i {
  color: #fff;
}

/* Title styling */
.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* Title hover effect */
.service-item:hover h3 {
  color: #FFB343;
  transform: translateY(-3px);
}

blockquote.my-3 {
  font-size: 1.125rem;       /* match body text */
  font-weight: 500;           /* optional: slightly bolder */
  color: #111;                /* darker for emphasis */
  line-height: 1.7;           /* same as body */
}
.boxed-paragraph {
  background-color: #f8f8f8;
  border-left: 4px solid #FFB343;
  padding: 16px 20px;
  border-radius: 6px;
  line-height: 1.7;
}

/* Remove default underline from stretched link */
.stretched-link {
  text-decoration: none !important;
}

/* Form Section */
.info-form-section {
  background: #fafafa;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
}

.intro-text {
  font-size: 1.1rem;
  color: #555;
}

.sub-content {
  font-size: 1rem;
  color: #444;
}

.final-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* FORM STYLES */
.form-box {
  background: #fff;
  border: 2px solid #e60000;
  border-radius: 14px;
  transition: 0.3s ease;
}

.form-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.25);
}

.form-control {
  border-radius: 10px;
}

/* Mobile Tweaks */
@media (max-width: 992px) {
  .content-left {
    margin-bottom: 2rem;
  }
}
.main-img {
  width: 30%;   /* ensures 30% width as requested */
  max-width: 350px; 
}

.info-box {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: #fff;
}
.layout-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
}

/* Make image span 2 rows */
.image-cell {
  grid-row: span 2;
}

.image-cell img {
  width: 30vw;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0px 15px 35px rgba(0,0,0,0.25);


}

.cell {
  max-width: 280px;
  margin: auto;
  text-align: center;
}

@media (max-width: 768px) {

  /* Make layout stack */
  .layout-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    width: 95%;
    margin: 0 auto;
  }

  /* Allow image to behave normally */
  .image-cell {
    grid-row: unset;
  }

  /* Make image wide & centered */
  .image-cell img {
    width: 95vw;
    max-width: 95%;
    height: auto;
  }

  /* Expand text blocks to full width */
  .cell {
    width: 95%;
    max-width: none;
    margin: 0 auto;
  }

  /* Adjust typography sizing */
  h5 {
    font-size: 1.1rem;
  }

  .cell p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  section h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    width: 95%;
    margin: 0 auto 25px;
  }
}
/* --- Animation Setup --- */

/* Initial off-screen state */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease-out;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease-out;
  transition-delay: 0.3s; /* slightly delay content */
}

/* Active state when in viewport */
.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Optional styling */
.content-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}



/* Image styling */
img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

/* Responsive tweak */
@media (max-width: 768px){
  .slide-left, .slide-right {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------------------------
   FOOTER LINK HOVER EFFECTS (FINAL WORKING)
------------------------------------- */

footer a {
    position: relative !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block !important;   /* IMPORTANT */
    padding-bottom: 3px;                /* Space for underline */
}

/* The underline */
footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;                          /* Positioned exactly under text */
    width: 0%;
    height: 2px;
    background-color: #FFB343;          /* Your theme color */
    transition: width 0.3s ease;
}

/* Show underline on hover */
footer a:hover::after {
    width: 100%;

}

.service-item img {
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

blockquote {
  font-size: 0.95rem;
  color: #444;
}
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  width: 3px;
  background: rgba(255,255,255,0.4);
}

.timeline-item {
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(6px);
}

.timeline-icon {
  position: absolute;
  left: -40px;
  width: 40px;
  height: 40px;
  background: white;
  color: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

