body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* normal text */
  color: #212529;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/********************Website Loader*****************/
#site-loader {
    position: fixed;
    inset: 0;
    background: #e74646;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 300px;
    display: block;
    animation: logoBlink 2.5s ease-in-out infinite;
}

@keyframes logoBlink {
    0%   { opacity: 1; }
    25%  { opacity: 0; }
    50%  { opacity: 1; }
    75%  { opacity: 0; }
    100% { opacity: 1; }
}

/************************** TOP Menubar *******************/
.topbar {
  background-color: #e74646;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  letter-spacing: 0.3px;
}

/* Icons Style */
.icon-large {
  font-size: 1.2rem;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Links inside top navbar */
.topbar-link {
  color: #f5f5f5;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect — smooth animation */
.topbar-link:hover {
  transform: translateY(-2px);
}

.topbar-link:hover .icon-large {
  transform: scale(1.2);
}

/* Separator */
.separator {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 15px;
  user-select: none;
}

/************************ Main Menubar ***************************/

/* logo */
.navbar-brand img {
  background: transparent;
}

.navbar-brand:hover {
  color: rgb(255, 0, 0) !important; /* hover color */
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #212529 !important;
  font-size: 20px;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover & Active Link */
.navbar-nav .nav-link:hover {
  color: #dc1414 !important;
}

.navbar-nav .nav-link.active {
  color: #dc1414 !important;
  font-weight: 600;
}

/* Red Underline Animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #dc1414;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Navbar Toggler */
.navbar-toggler {
  filter: invert(0.3);
  border: none;
}

/* ============================
    Custom Offcanvas (Mobile)
   ============================ */
.custom-offcanvas {
  width: 70% !important; /* Sidebar covers 70% of screen */
  background: #454141 !important;
  color: white;
  border-right: 2px solid #dc1414;
  transition: all 0.4s ease-in-out;
}

/* Header Inside Offcanvas */
.custom-offcanvas .offcanvas-header {
  background: #454141;
  border-bottom: 5px solid rgba(255, 255, 255, 0.1);
}

/* Links Inside Offcanvas */
.custom-offcanvas .nav-link {
  color: #fff !important;
  text-align: left;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.custom-offcanvas .nav-link:hover {
  background-color: #dc1414 !important;
  color: #fff !important;
}

/* Close Button */
.btn-close-white {
  filter: invert(1);
}

/* Optional Slide Animation */
.offcanvas-start.show {
  animation: slideIn 0.4s ease forwards;
}

/* Hide Offcanvas Footer on Large Screens */
@media (min-width: 992px) {
  .custom-offcanvas {
    display: none !important;
  }
}

/* Dropdown style */
.custom-dropdown {
  background-color: #fff !important;  /* FIX background color */
  border-radius: 12px;
  padding: 10px 0;
  border: none;
  animation: fadeDown 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 6px;
  background: transparent !important; /* Prevent red background */
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
  background-color: #dc1414 !important;
  color: #fff !important;
}

/* Fade animation */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hover show dropdown (Desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: 0.3s;
  }
}

/**************************************************** Slider ******************************/
.slider-img {
  height: 90vh;
  filter: brightness(75%);
}

.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  text-align: center;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
}

.caption-box {
  padding: 40px 50px;
  border-radius: 12px;
  max-width: 800px;
}

/* Title */
.caption-box h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Paragraph */
.caption-box p {
  font-size: 18px;
  color: #f1f1f1;
  line-height: 1.6;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.6;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #dc1414;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 15px;
}

@media (max-width: 768px) {
  .slider-img {
    height: 60vh;
  }

  .caption-box {
    padding: 25px 20px;
  }

  .caption-box h2 {
    font-size: 26px;
  }

  .caption-box p {
    font-size: 14px;
  }
}

/******************************** Home About ***********/
/* About Section Base */
.home-about {
  border-radius: 15px;
  background-image: url("../images/bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #000;
  animation: fadeInBg 1.2s ease-in-out;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.about-image img {
  border-radius: 25px;
  transition: all 0.6s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hover Zoom + Floating Effect */
.about-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 30px rgba(220, 20, 20, 0.25);
}

/* Floating Animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animated-image {
  animation: floatImage 4s ease-in-out infinite;
}

/* Scroll Animation (fade & slide from left) */
.about-image {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease-out;
}

.about-image.show {
  opacity: 1;
  transform: translateX(0);
}

/* Title Styling */
.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.about-title span {
  color: #dc1414;
  position: relative;
}

.about-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 5px;
}

.about-desc {
    line-height: 1.4;
}

/* About Button */
.btn-about {
  background-color: #dc1414;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background-color: #b30f0f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 20, 20, 0.3);
}

/***************************************** features Card ****************************/
.feature-section {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url('../images/features-bg.jpg')
    center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle abstract overlays */
.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at top left, rgba(220, 20, 20, 0.1), transparent 60%),
    radial-gradient(circle at bottom right, rgba(220, 20, 20, 0.1), transparent 60%);
  z-index: 0;
}

.section-titles {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  color: #000;
}

.section-titles span {
  color: #dc1414;
  position: relative;
}

/* Underline Style (from About Title) */
.section-titles span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 5px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 1;
}

/* Icon with gradient */
.feature-card i {
  font-size: 60px;
  background: linear-gradient(135deg, #dc1414, #ff5f5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

/* Title */
.feature-card h5 {
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

/* Animated underline */
.feature-card h5::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #c90016, #ff2a2a);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* Hidden paragraph */
.feature-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin: 0;
  max-width: 240px;
}

/* Hover Effects */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(220, 20, 20, 0.25);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.feature-card:hover i {
  transform: scale(1.2);
}

.feature-card:hover h5 {
  color: #dc1414;
}

.feature-card:hover h5::after {
  width: 100%;
}

.feature-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/************************************ Counter ***********************************/
.counter-section {
  background-image: url("../images/bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #000;
  animation: fadeInBg 1.2s ease-in-out;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.counter-section .container {
  position: relative;
  z-index: 1;
}

.counter-section h2 {
  font-weight: 700;
  color: #000;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.counter-section h2 span {
  color: #dc1414;
  position: relative;
}

.counter-section h2 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 5px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(193, 104, 104, 0.1);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(220, 20, 20, 0.25);
}

/* Counter numbers */
.counter-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
  transition: color 0.3s ease;
}

.counter-card:hover .counter-number {
  color: #f91313;
}

/* Counter symbol */
.counter-number .currency {
  font-size: 48px;
  vertical-align: top;
  margin-right: 2px;
  color: #000;
  transition: color 0.3s ease;
}

.counter-card:hover .currency {
    color: #f91313; /* red color on hover */
}

/* Counter text */
.counter-text {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}

.counter-card:hover .counter-text {
  color: #f91313;
}

/* Fade-in animation */
@keyframes fadeInBg {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/**************************** Whatsapp Chatboot **************/
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: opacity 0.3s ease,
              transform 0.3s ease,
              visibility 0.3s ease,
              background 0.3s ease;

  z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Show WhatsApp Button */
.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover Effect */
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-5px);
}


/******************************************************* Footer *******************/
.modern-footer {
  background: linear-gradient(135deg, #b00020, #ff4d4d);
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: 0;
  animation: footerGlow 6s infinite alternate ease-in-out;
}

.modern-footer * {
  position: relative;
  z-index: 1;
}

.footer-logo-img {
    width: 230px;     
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo-img {
        width: 180px;
    }
}

.footer-logo span {
  color: #ffd6d6;
}

.footer-desc {
  color: #f8d7da;
  font-size: 15px;
}

.footer-social a {
  display: inline-block;
  color: white;
  margin-right: 12px;
  font-size: 20px;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #ffd6d6;
  transform: scale(1.2);
}

.footer-title {
  font-weight: 600;
  color: #fff;
}

.footer-links a {
  color: #f8d7da;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Icons */
.footer-icon {
  font-size: 14px;
  color: #fff;
  margin-top: 3px;
  flex-shrink: 0;
}

/* All links */
.footer-link {
  color: #f8d7da;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  padding-left: 4px;
}

/* Address spans */
.address-link span {
  display: block;
}


/* 🔹 Address Cards */
.footer-locations {
  margin-top: 60px;
}

.footer-heading {
  font-size: 28px;
  color: #fff;
}

.footer-subtext {
  color: #f8d7da;
  font-size: 15px;
}

.address-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.address-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.address-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
  transition: color 0.3s;
}

.address-card:hover .icon {
  color: #ffd6d6;
}

@keyframes footerGlow {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

/************************************ Footer Bottom **********************/
.footer-bottom {
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a); /* Sleek dark gradient */
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

/* Soft glowing gradient line animation */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e53935, transparent);
  animation: glowLine 4s linear infinite;
}

@keyframes glowLine {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

/* Brand highlight color */
.brand-highlight {
  color: #e53935;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover animation for brand name */
.brand-highlight:hover {
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 80, 80, 0.8);
}

/* Responsive text adjustments */
.footer-bottom p {
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.footer-bottom p:hover {
  transform: translateY(-2px);
}

/***************************************** Back to Top *************************************/
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #d94747; /* red theme */
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.20s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #b00020; /* darker red */
  transform: translateY(-5px);
}


/****************************************************** Contact Page **********************************/
/***************************** Inquiry Form Box */
.inquiry-section {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-top: 40px;
  max-width: 700px;
  margin: auto;
}

/* Form Heading */
.inquiry-section h2 {
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 25px;
}

.inquiry-section h2 span {
  color: #dc1414;
  border-bottom: 3px solid #dc1414;
  padding-bottom: 5px;
}

/* Labels */
.form-label {
  font-weight: 500;
  color: #333;
}

/* Inputs & Textareas */
.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #dc1414;
  box-shadow: 0 0 0 0.2rem rgba(220, 20, 20, 0.25);
}

/* Submit Button */
.btn-submit {
  background-color: #dc1414;
  color: #fff;
  border-radius: 8px;
  padding: 10px 25px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-submit:hover {
  background-color: #b30f0f;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 30px 20px;
  }
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Tablet */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.95);
        transform-origin: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: center;
    }
}


/**************************** Contact Detail */
.contact-details {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(217, 210, 210, 0.1);
  transition: all 0.3s ease;
}

.contact-details h3 {
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.contact-details .d-flex {
  transition: all 0.3s ease;
}

.contact-details i {
  color: #dc1414;
  transition: all 0.4s ease;
  background: #f8d7da;
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.contact-details .d-flex:hover {
  transform: translateX(6px);
}

.social-links a {
  color: #dc1414;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

.contact-underline {
  color: #dc1414;
  position: relative;
  display: inline-block;
}

.contact-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 3px;
}

/************************* Map */
.map-container {
  text-align: center;
}

.map-container h5 {
  font-size: 1.9rem;
  font-weight: 700;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  transition: all 0.4s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .map-container iframe {
    height: 280px;
  }
}

.map-underline {
  color: #dc1414;
  position: relative;
  display: inline-block;
}

.map-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 3px;
}


/******************************************Career Page *************************/ 
.career-section {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
}

.career-title {
  font-weight: 700;
  color: #000;
  text-align: center;
}

/* 🔹 Only underline the red "Career" word */
.career-title span {
  color: #dc1414;
  position: relative;
  display: inline-block;
}

.career-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 5px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #dc1414;
  box-shadow: 0 0 0 0.2rem rgba(220, 20, 20, 0.25);
}

.btn-submit {
  background-color: #dc1414;
  color: #fff;
  border-radius: 8px;
  padding: 10px 25px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-submit:hover {
  background-color: #b30f0f;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-section {
    padding: 25px;
  }
}

/******************************************* Product Page **********************************/
.product-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.product-title span {
  color: #dc1414;
  position: relative;
}

.product-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #dc1414;
  border-radius: 4px;
}

.product-descptrion {
  padding-top: 15px;
  font-size: 1.2rem;
  color: #373737;
  max-width: 1000px;
  margin: 10px auto 0;
}

/* LINK RESET */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin: 10px;
}

/* CARD */
.product-card {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* CENTER PRODUCT NAME */
.product-card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.product-card-title h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

/* DARK OVERLAY */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* BUTTON */
.product-card-btn {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* HOVER EFFECTS */
.product-card:hover img {
  transform: scale(1.1);
}

.product-card:hover .product-card-overlay,
.product-card:hover .product-card-btn {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-card {
    height: 200px;
  }

  .product-card-title h3 {
    font-size: 1.1rem;
  }
}

.page-bg {
  background-image: url("../images/product-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}


/******************************************* Sub-Product  *********************/
/* PAGE HEADING */
.product-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.product-title span {
  color: #dc1414;
  position: relative;
}

.product-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #dc1414;
  border-radius: 4px;
}

/* SMALL HEADING (BETWEEN) */
.sub-title-between {
  margin-top: 14px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 10px;
  letter-spacing: 1.5px;
}

.highlight-red {
  color: #dc1414;
  font-weight: 700;
}

.product-desc {
  font-size: 1.2rem;
  color: #373737;
  padding-top: 5px;
  max-width: 1000px;
  margin: 12px auto 0;
  line-height: 1.7;
  
}

.flip-card {
  width: 100%;
  height: 250px;
  perspective: 1000px;
  padding: 10px;
  cursor: pointer;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
}

/* FRONT IMAGE */
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FRONT TITLE CENTER */
.product-overlay-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  text-align: center;
}

.product-overlay-center h3 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}

/* BACK SIDE */
.flip-back {
  background: #dc1414;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
}

.flip-back h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.flip-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 90%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .flip-card {
    height: 200px;
  }

  .sub-title-between {
    font-size: 0.85rem;
  }

  .product-overlay-center h3 {
    font-size: 1.1rem;
  }
}

.back-btn {
  position: absolute;
  top: 0;
  left: 28px;
  background-color: #dc1414;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 10;
}

@media (max-width: 576px) {
  .back-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
}

.back-btn:hover {
  background-color: #b81010;
  color: #fff;
}

/************************************* About Us ****************/
.about-page {
  background: #f7f7f7;
}

/* MAIN TITLE */
.about-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
}

.about-title span {
  color: #dc1414;
  position: relative;
}

/* UNDERLINE ONLY RED WORD */
.about-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 4px;
}

/* PARAGRAPH CONTENT */
.about-content {
  max-width: 1200px;
}

.about-content p {
  font-size: 1.4rem;
  color: #454545;
  line-height: 1.6;
  margin-bottom: 18px;
  direction: ltr;
  text-align: left;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/*********************ABOUT CEO SECTION**/
.ceo {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  overflow: hidden;
}

.ceo-image img {
  border-radius: 25px;
  transition: all 0.6s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hover Zoom + Floating Effect */
.ceo-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 30px rgba(220, 20, 20, 0.25);
}

/* Floating Animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animated-image {
  animation: floatImage 4s ease-in-out infinite;
}

/* .ceo-image {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s ease-out;
}

.ceo-image.show {
  opacity: 1;
  transform: translateX(0);
} */

.ceo-title {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 10px;

}

.ceo-title span {
  color: #dc1414;
  position: relative;
}

.ceo-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #dc1414;
  border-radius: 4px;
}

.ceo-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.ceo-content ul li {
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
}

.ceo-content ul li i {
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ceo-content { padding-right: 0; }
  .ceo-title { font-size: 1.9rem; }
}

@media (max-width: 576px) {
  .ceo { padding: 30px 20px; }
  .ceo-title { font-size: 1.6rem; }
  .ceo-content p { font-size: 0.95rem; }
  .ceo-image img { max-width: 100%; }
}

/*** About Card***/
.about-cards-section{
  background: #f7f7f7;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-align: center;
}

.section-title span {
  color: #dc1414;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #dc1414;
  border-radius: 3px;
}

.section-desc {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: center;
}

/* About Cards */
.about-card {
  background-color: #dc1414;
  color: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 20, 20, 0.5);
}

/* Card Icon */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Card Title */
.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Card Description */
.card-desc {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .about-card {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .card-icon {
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.9rem;
  }
}

/*************** Our Mission And Our Vision *****************/
/* ===== Mission & Vision ===== */
.mission-vision {
    background-color: #f7f7f7;
}

.mv-item {
    max-width: 900px;
}

.mv-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mv-highlight {
    color: #dc1414;
    position: relative;
}

.mv-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background-color: #dc1414;
}

.mv-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

/* ===== Full Width Image ===== */
.full-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

/* ===== Our Values ===== */
.our-values {
    background: #fff;
}

.value-card {
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: scale(1.05);
}

.value-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .mv-title {
        font-size: 28px;
    }

    .mv-desc {
        font-size: 16px;
    }

    .full-image img {
        height: 45vh;
    }

    .value-card {
        height: 220px;
    }
}