@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Font Family */
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    padding: 0px;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}
img{
    max-width: 100%;
}

* Margin */
.m-0 { margin: 0; }
.m-5 { margin: 5px; }
.m-10 { margin: 10px; }
.m-15 { margin: 15px; }
.m-20 { margin: 20px; }
.m-25 { margin: 25px; }
.m-50 { margin: 50px; }
.m-75 { margin: 75px; }
.m-100 { margin: 100px; }

/* Padding */
.p-0 { padding: 0; }
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-25 { padding: 25px; }
.p-50 { padding: 50px; }
.p-75 { padding: 75px; }
.p-100 { padding: 100px; }


.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-75 { padding-top: 75px; }
.pt-100 { padding-top: 100px; }

.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-75 { padding-bottom: 75px; }
.pb-100 { padding-bottom: 100px; }  

/* Directional Margin */
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }

/* Directional Padding */
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }


/* Border Radius */
.br-0 { border-radius: 0; }
.br-5 { border-radius: 5px; }
.br-10 { border-radius: 10px; }
.br-15 { border-radius: 15px; }
.br-20 { border-radius: 20px; }
.br-25 { border-radius: 25px; }
.br-50 { border-radius: 50px; }
.br-75 { border-radius: 75px; }
.br-100 { border-radius: 100px; }

/* Font Sizes */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-md { font-size: 16px; }
.text-lg { font-size: 20px; }
.text-xl { font-size: 24px; }
.text-2xl { font-size: 28px; }
.text-3xl { font-size: 32px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 40px; }
.text-6xl { font-size: 44px; }
.text-7xl { font-size: 48px; }
.text-8xl { font-size: 52px; }
.text-9xl { font-size: 56px; }



/* Colors */
:root {
    --primary: #346197;
    --secondary: #ba984c ;
  }
  .text-primary { color: var(--primary) !important; }
  .text-secondary { color: var(--secondary) !important; }
  .bg-primary { background-color: var(--primary) !important; }
  .bg-secondary { background-color: var(--secondary) !important; }

a{
    text-decoration: none;
}


.btn-main {
    /* Container styling for the overall shape and border */
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 10px 25px; /* Adjust padding for the look. Left is wider for the text. */
   
    border-radius: 50px; /* Highly rounded corners */
    background-color: var(--primary);
    text-decoration: none; /* Remove underline from the link */
    color: #fff; /* Text color */
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s; /* Smooth transition on hover */
    /* Optional: Add a slight shadow to make it pop */
    
  }

  
  .btn-main .link-icon {
    /* Styling for the circular red icon area */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Width and height for a perfect circle */
    height: 35px;
    border-radius: 50%; /* Makes it a circle */
    background-color: #fff; /* Bright red color */
    color: var(--primary); /* White arrow color */
    font-size: 20px; /* Size of the arrow */
    line-height: 1; /* Ensures the arrow is perfectly centered vertically */
    font-weight: normal;
  }
  
.btn-white{
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 10px 25px;
   
    border-radius: 50px; 
    background-color: #fff;
    text-decoration: none; 
    color: var(--primary); 
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s; 
}
    
.btn-white .link-icon {
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; 
    height: 35px;
    border-radius: 50%; 
    background-color: var(--primary); 
    color: #fff;
    font-size: 20px; 
    line-height: 1;
    font-weight: normal;
  }
/* theme styles  */

/* Header Styles */
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0px;
}
.logo{
    max-height: 100px;
}
/* Banner Carousel Styles */
.banner-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-bg {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Video background inside banner carousel */
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 100vh * 16/9 to cover wide screens */
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* When viewport is wider than 16:9, size by width to avoid letterboxing */
@media (min-aspect-ratio: 16/9) {
  .video-bg iframe {
    width: 100vw;
    height: 56.25vw; /* 100vw * 9/16 */
  }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 0%, rgba(11, 43, 63, 0) 100%);
  z-index: 1;
  opacity: 0.7;
}

.carousel-caption {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;

}

.carousel-item h2 {
    color: white; 
    font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-item p {
   color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-caption .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(21, 21, 21, 0.147);
  border-radius: 50%;
  padding: 20px;
}

.carousel-indicators button {
  background-color: var(--primary);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  background-color: var(--secondary);
}

/* Header navigation */
.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 0 14px;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: #fff;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after {
  width: 100%;
}

.header-cta .service-link {
  white-space: nowrap;
}

/* Banner hero video background */
.banner-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-video-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(9, 37, 57, 0.55));
}

.banner-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.2;
}

.hero-content .eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.85rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Navigation Menu Styling */
.navbar-nav.me-auto .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-nav.me-auto .nav-link:hover,
.navbar-nav.me-auto .nav-link.active {
  color: var(--primary);
  background-color: rgba(234, 29, 59, 0.1);
}

.navbar-nav.me-auto .nav-item:first-child .nav-link {
  margin-left: 0;
}

.navbar-nav.me-auto .nav-item:last-child .nav-link {
  margin-right: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-nav .nav-link i {
  font-size: 1.1em;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 8px;
}

.dropdown-menu .dropdown-item {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary);
  color: white;
}

.dropdown-menu .dropdown-item.active {
  background-color: var(--secondary);
  color: white;
}

/* Phone number styling */
.navbar-nav .nav-link[href^="tel:"] {
  background-color: var(--primary);
  color: white !important;
  border-radius: 20px;
  font-weight: 600;
}

.navbar-nav .nav-link[href^="tel:"]:hover {
  background-color: var(--secondary);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(234, 29, 59, 0.3);
}

/* menu */
.menu-pill {
    /* Custom color for the dark indigo background */
    background-color: var(--primary);
    /* Pill shape */
    border-radius: 50px;
    /* Subtle outline/ring */
    border: 1px solid var(--secondary);
    /* Shadow effect */
    /* box-shadow: 0 1rem 3rem rgba(58, 47, 140, 0.4); */
    padding:8px 12px;
    transition: all 0.3s ease;
}

.menu-links-container {
    color: #fff;
    
}

.menu-link {
    color: #fff;
    text-decoration: none;
    transition: color 150ms ease-in-out;
    white-space: nowrap;
    /* Add horizontal spacing for flex items */
    margin: 0 0.5rem;
    padding: 0.25rem 0.5rem;
    font-weight: 500;
    font-size: 16px;
}

.menu-link:hover {
    color: #c7d2fe; /* Light indigo hover color */
}

.menu-link:focus {
    color: #c7d2fe;
}

.separator {
    color: #a5b4fc; /* Indigo-400 equivalent */
    font-size: 0.875rem;
}

/* Header Right Side Elements */
.dropdown-toggle::after {
    display: none;
}

.dropdown .btn-link {
    color: white !important;
    text-decoration: none;
    border: none;
    padding: 8px 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown .btn-link:hover {
    color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.dropdown-menu .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary);
    color: white;
}

.dropdown-menu .dropdown-item.active {
    background-color: var(--secondary);
    color: white;
}

/* Phone button styling */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(234, 29, 59, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 29, 59, 0.4);
}

/* Banner Buttons */
.banner-buttons {
    margin-top: 30px;
}

.banner-buttons .btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-width: 2px;
    min-width: 160px;
    text-align: center;
}

.banner-buttons .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(234, 29, 59, 0.3);
}

.banner-buttons .btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 29, 59, 0.4);
}

.banner-buttons .btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
}

.banner-buttons .btn-outline-light:hover {
    color: var(--primary);
    background-color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Mobile responsiveness for banner buttons */
@media (max-width: 768px) {
    .banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
    .carousel-item h2{
      font-size: 40px;
    }
}

/* Header responsive adjustments */
@media (max-width: 991.98px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }

    .d-flex.justify-content-between .logo {
        align-self: center;
    }

    .d-flex.justify-content-between nav {
        order: 2;
        margin: 0 auto;
    }

    .d-flex.justify-content-between .d-flex.gap-3 {
        order: 3;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .dropdown .btn-link span {
        display: none;
    }

    .btn-primary span.d-none.d-md-inline {
        display: none !important;
    }

    .btn-primary span.d-inline.d-md-none {
        display: inline !important;
    }
}

.service-link {
    /* Container styling for the overall shape and border */
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 25px; /* Adjust padding for the look. Left is wider for the text. */
  
    border-radius: 50px; /* Highly rounded corners */
    background-color: #fff; /* White background */
    text-decoration: none; /* Remove underline from the link */
    color: #000; /* Text color */
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s; /* Smooth transition on hover */
    /* Optional: Add a slight shadow to make it pop */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  }
  
  .link-text {
    /* The text itself */
    margin-right: 15px; /* Space between the text and the icon */
  }
  
  .link-icon {
    /* Styling for the circular red icon area */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Width and height for a perfect circle */
    height: 35px;
    border-radius: 50%; /* Makes it a circle */
    background-color: var(--secondary); /* Bright red color */
    color: #fff; /* White arrow color */
    font-size: 24px; /* Size of the arrow */
    line-height: 1; /* Ensures the arrow is perfectly centered vertically */
    font-weight: normal;
  }
  
  /* Optional: Hover effect for interactivity */
  .service-link:hover {
    background-color: #f8f8f8;
  }
/* About Us Section */
.about-section {
  background-color: #fff;
  padding: 80px 0;
}

.section-title {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.gallery-section {
  background: #f8f9fb;
}

.gallery-tabs .nav-link {
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 500;
  color: #4b5567;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.gallery-tabs .nav-link.active {
  background: var(--secondary);
  color: #fff;
  /* box-shadow: 0 12px 30px rgba(234, 29, 59, 0.25); */
}

.gallery-tabs .nav-link:not(.active):hover {
  border-color: rgba(0, 0, 0, 0.1);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-zoom {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption {
  padding: 22px 26px;
}

.gallery-caption h5 {
  margin-bottom: 4px;
  color: #111827;
}

.gallery-caption p {
  margin: 0;
  color: #6b7280;
}

.video-card {
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.video-card h5 {
  margin-bottom: 16px;
  font-weight: 600;
}

.video-card .ratio {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.directors-section {
  background: radial-gradient(circle at top right, rgba(234, 29, 59, 0.08), transparent 50%), #fff;
}

.director-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.director-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
}

.director-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--secondary);
}

.director-card {
  background: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.director-card img{
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.director-card .badge{
  background-color: var(--secondary);
}
.director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 55px rgba(15, 23, 42, 0.12);
}

.director-card .role {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.director-copy {
  color: #4b5563;
  font-size: 0.95rem;
}

.location-section {
  background: linear-gradient(135deg, #fff 0%, #f6f7fb 100%);
}

.location-copy .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
}

.location-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: #1a2340;
  margin-bottom: 20px;
}

.location-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 30px;
}

.location-meta .meta-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 35, 64, 0.15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.9rem;
  background-color: #fff;
  color: #1a2340;
  box-shadow: 0 10px 25px rgba(26, 35, 64, 0.08);
}

.location-meta i {
  color: var(--secondary);
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.location-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: #333;
}

.location-list i {
  color: var(--primary);
  margin-right: 12px;
  font-size: 1rem;
}

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.location-highlights h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.location-highlights p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  font-size: 0.9rem;
}

.location-image {
  position: relative;
}

.location-image img {
  width: 100%;
  object-fit: cover;
  min-height: 320px;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.location-card {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  max-width: 260px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card .card-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 10px;
}

.location-card h4 {
  margin-bottom: 4px;
  color: #1a2340;
}

.location-card p {
  margin-bottom: 12px;
  color: #555;
}

.location-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--secondary);
}

.location-card .card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 767.98px) {
  .location-highlights {
    gap: 20px;
  }

  .image-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .location-card {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
  }
}

.about-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 30px 0 15px 0;
}

.about-content h3:first-child {
  margin-top: 0;
}

.about-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}
.about-content img{
    border-radius: 30px;
}

/* Stats Counter */
.stats-counter {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Accordion Styling */
.accordion {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  background-color: white;
  padding: 25px 30px;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  color: var(--primary);
  background-color: rgba(234, 29, 59, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(234, 29, 59, 0.05);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ea1d3b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button i {
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
}

.accordion-body {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  padding: 0 30px 25px 30px;
  background-color: #f8f9fa;
}

/* Responsive Design for About Section */
@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-counter {
    margin-top: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .accordion-button {
    padding: 20px 25px;
    font-size: 1rem;
  }

  .accordion-body {
    padding: 0 25px 20px 25px;
  }

  .stats-counter {
    padding: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

.banner-bottom{
  margin-top: -80px;
  position: relative;
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.453);
  padding: 20px 0px;
}

.service-card{
    min-height: 400px;
    position: relative;
    padding: 20px;
}
.service-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(56, 56, 56, 0) 100%);
}
.service-card h3{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}
.service-card p{
    color: #fff;
}
.service-card-btn{
    display: block;
    width: 100%;
    padding: 15px 0px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.608);
    margin-top: 60px;
    font-size: 20px;
}

.product-card{
    background: rgba(217, 217, 217, 0.16);
    border-radius: 30px;
    border: 1px rgba(0, 0, 0, 0.32) solid;
    text-align: center;
    padding: 25px;
   
}
.product-card img{
   width: 80% !important;
   border-radius: 100%;
   margin: auto;
   border: 1px rgba(0, 0, 0, 0.17) solid;
  
}
.product-card h6{
    font-size: 20px;
    font-weight: 500;
    margin-top: 13px;
}
    
.catelog-bg{
    background: url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0px;
    position: relative;
}
.catelog-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.66) )
}

/* Industries We Serve Section */
.industry-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.industry-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(238, 238, 238);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background-color: #fff;
  transform: scale(1.1);
}

.industry-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.industry-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 20px 0 15px 0;
}

.industry-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.industry-card .btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.industry-card .btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 29, 59, 0.3);
}

/* Section spacing for industries */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Responsive adjustments for industries section */
@media (max-width: 991.98px) {
  .industry-card {
    padding: 30px 25px;
  }

  .industry-icon {
    width: 70px;
    height: 70px;
  }

  .industry-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767.98px) {
  .industry-card {
    margin-bottom: 30px;
  }

  .industry-title {
    font-size: 1.2rem;
  }
}
.gradient-bg{
    background: linear-gradient(90deg, #FFEAED 0%, #E8E9FF 100%); 
    border-radius: 20px;
    padding: 20px;
}

/* Blog Carousel Styling */
.blog-card {
  background-color: white;
  border-radius: 15px;
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  outline: 1px #D6D6D6 solid; outline-offset: -1px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Certificates Grid */
.certificate-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  padding: 14px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  min-height: 280px;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.certificate-thumb {
  position: relative;
  width: 100%;
  /* aspect-ratio: 4/5;  */
  overflow: hidden;
  border-radius: 12px;
  outline: 1px solid #e1e1e1;
  outline-offset: -1px;
  background: #fafafa;
}

.certificate-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-thumb img {
  transform: scale(1.05);
}

.certificate-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  margin: 12px 0 0 0;
}

@media (max-width: 767.98px) {
  .certificate-title {
    font-size: 0.9rem;
  }
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 25px;
}

.blog-content h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--secondary);
  text-decoration: none;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Blog Carousel Navigation */
#blogCarousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

#blogCarousel .owl-nav button {
  pointer-events: all;
  background-color: rgba(234, 29, 59, 0.9) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

#blogCarousel .owl-nav button:hover {
  background-color: var(--secondary) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

#blogCarousel .owl-nav button:focus {
  outline: none !important;
}

/* Responsive adjustments for blog carousel */
@media (max-width: 991.98px) {
  #blogCarousel .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  #blogCarousel .owl-nav {
    display: none;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 15px;
  }
}
/* Clients Logo Carousel */
.clients-carousel .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.clients-carousel .client-logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients-carousel .client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 575.98px) {
  .clients-carousel .client-logo {
    height: 80px;
    padding: 12px 14px;
  }
  .clients-carousel .client-logo img {
    max-height: 46px;
  }
}
/* Footer Styling */
.footer-section {
  background-color: #000;
  color: white;
  padding: 60px 0 30px 0;
  margin-top: 0;
}

.footer-widget {
  height: 100%;
}

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

.footer-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.social-links {
  display: inline-flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(234, 29, 59, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-item h6 {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.contact-item p {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;
}

.copyright-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.copyright-text a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright-text a:hover {
  color: white;
}

.designed-by {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.designed-by i {
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Footer Responsive Design */
@media (max-width: 991.98px) {
  .footer-section {
    padding: 50px 0 30px 0;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .contact-item {
    gap: 12px;
  }
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 40px 0 20px 0;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .row > div {
    text-align: center !important;
  }

  .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .contact-item {
    flex-direction: column;
    /* text-align: center; */
    gap: 8px;
  }
}
/* About Page Specific Styling */

/* Company Detail Cards */
/* Enhanced Company Detail Cards */
.company-detail-card {
    background: #e9ecef;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  /* border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary); */
  /* border-top: 1px solid rgba(234, 29, 59, 0.1); */
  position: relative;
  overflow: hidden;
}


.company-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: var(--secondary);
}

.detail-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  /* box-shadow: 0 8px 25px rgba(234, 29, 59, 0.3); */
  position: relative;
}

.detail-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.company-detail-card:hover .detail-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(45, 49, 136, 0.4);
}

.company-detail-card:hover .detail-icon::before {
  opacity: 1;
}

.detail-icon i {
  font-size: 2rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.company-detail-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 25px 0 20px 0;
  position: relative;
}

/* Distinct colors for company detail cards */
/* .company-detail-card:nth-child(1) {
  border-left-color: #ff6b6b;
 
}

.company-detail-card:nth-child(2) {
  border-left-color: #4ecdc4;
}

.company-detail-card:nth-child(3) {
  border-left-color: #45b7d1;
} */

.company-detail-card p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Enhanced Value Cards */
.value-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

/* .value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 29, 59, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
} */

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary);
}

.value-card:hover::before {
  transform: rotate(45deg) translate(10px, 10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(234, 29, 59, 0.3);
  position: relative;
}

.value-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(45, 49, 136, 0.4);
}

.value-card:hover .value-icon::before {
  opacity: 1;
}

.value-icon i {
  font-size: 2rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Distinct colors for different value cards */
/* .value-card:nth-child(1) {
  border-top-color: #ff6b6b;
} */

.value-card:nth-child(2) {
  border-top-color: #4ecdc4;
}

.value-card:nth-child(3) {
  border-top-color: #45b7d1;
}

.value-card:nth-child(4) {
  border-top-color: #96ceb4;
}

.value-card:nth-child(5) {
  border-top-color: #ffeaa7;
}

.value-card:nth-child(1) .value-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.value-card:nth-child(2) .value-icon {
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7aa 100%);
}

.value-card:nth-child(3) .value-icon {
  background: linear-gradient(135deg, #45b7d1 0%, #3498db 100%);
}

.value-card:nth-child(4) .value-icon {
  background: linear-gradient(135deg, #96ceb4 0%, #85c1a3 100%);
}

.value-card:nth-child(5) .value-icon {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

/* Enhanced Team Cards */
.team-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px auto;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  transition: all 0.3s ease;
  position: relative;
}

.team-image::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  z-index: -1;
}

.team-card:hover .team-image {
  border-color: var(--secondary);
  transform: scale(1.05);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 20px 0 5px 0;
}

.team-role {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 15px;
}

.team-bio {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* About Hero Section */
.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary), transparent);
  border-radius: 15px;
  z-index: -1;
}

.page-box{
    padding: 30px;
    /* border: 1px solid #000; */
    background: #e9ecef;
    border-radius: 20px;
    /* margin-top: 100px; */
}
@media (max-width: 991.98px) {
  .company-detail-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .detail-icon {
    width: 70px;
    height: 70px;
  }

  .detail-icon i {
    font-size: 1.5rem;
  }

  .company-detail-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .company-detail-card {
    padding: 25px 20px;
  }

  .detail-icon {
    width: 60px;
    height: 60px;
  }

  .detail-icon i {
    font-size: 1.3rem;
  }

  .company-detail-card h3 {
    font-size: 1.2rem;
  }

  .team-image {
    width: 100px;
    height: 100px;
  }

  .team-card {
    padding: 25px 20px;
  }
}

/* Enhanced Service Cards */
.service-card-enhanced {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(234, 29, 59, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40px, -40px);
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: var(--secondary);
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(234, 29, 59, 0.3);
  position: relative;
}

.service-card-enhanced:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(45, 49, 136, 0.4);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card-enhanced h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 25px 0 10px 0;
}

.service-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card-enhanced p:not(.service-subtitle) {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #333;
}

.service-features li i {
  color: #28a745;
  margin-right: 12px;
  font-size: 0.9rem;
}

/* Launching Soon Badge */
.launching-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.launching-badge .badge {
  font-size: 0.8rem;
  padding: 8px 15px;
  border-radius: 20px;
}

/* Digital Platforms Card */
.digital-platforms-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 40px;
  border-radius: 25px;
  border: 2px dashed var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.digital-platforms-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(234, 29, 59, 0.05) 50%, transparent 60%);
  transform: rotate(-45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.digital-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.digital-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.digital-features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.digital-features li i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Coming Soon Badge */
.coming-soon-badge {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
}

.coming-soon-badge h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px 0 10px 0;
}

/* Product Category Cards */
.product-category-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.product-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(234, 29, 59, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: var(--secondary);
}

.product-category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(234, 29, 59, 0.3);
}

.product-category-card:hover .product-category-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(45, 49, 136, 0.4);
}

.product-category-icon i {
  font-size: 2rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.product-category-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 25px 0 10px 0;
}

.product-category-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-category-card p:not(.product-category-subtitle) {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.product-features li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 0.8rem;
}

/* Category Title */
.category-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary);
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

/* Product Item Cards */
.product-item-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(234, 29, 59, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 20px;
}

.product-info h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.product-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 15px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #888;
  font-family: "Poppins", sans-serif;
}

.spec-item i {
  margin-right: 5px;
  color: var(--primary);
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.price {
  font-size: 0.8rem;
  color: #666;
  font-family: "Poppins", sans-serif;
}

.amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

/* Product CTA Card */
.product-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.product-cta-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-cta-card .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Job Cards */
.job-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(234, 29, 59, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: var(--primary);
}

.job-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.job-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.job-card:hover .job-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(5deg);
}

.job-icon i {
  font-size: 1.5rem;
  color: white;
}

.job-title-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 10px 0;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.job-type, .job-location, .job-level {
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
}

.job-type {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.job-location {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}

.job-level {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.job-description {
  margin-bottom: 20px;
}

.job-description p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.job-requirements {
  margin-bottom: 25px;
}

.job-requirements h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}

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

.job-requirements li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.job-requirements li::before {
  content: '✓';
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.job-salary {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* Culture Cards */
.culture-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.culture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.culture-card:hover .culture-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(5deg);
}

.culture-icon i {
  font-size: 2rem;
  color: white;
}

.culture-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 20px 0 15px 0;
}

.culture-card p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Application Process */
.application-process {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px dashed var(--primary);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 8px 0;
}

.step-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Career CTA Card */
.career-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.career-cta-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Career Modal Styling */
.modal-content {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: none;
}

.modal-header {
  background: var(--secondary);
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 20px 30px;
}

.modal-header .modal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #eee;
}

/* Form Styling */
.form-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-control, .form-select {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(234, 29, 59, 0.25);
}

.form-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 5px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Success Modal Styling */
.success-icon {
  margin: 0 auto;
}

#successModal .modal-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Privacy Modal Styling */
#privacyModal .modal-body h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin: 20px 0 10px 0;
}

#privacyModal .modal-body p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* Application Process Steps Enhancement */
.application-process {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px dashed var(--primary);
  position: relative;
}

.application-process::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(234, 29, 59, 0.3);
}

.step-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 8px 0;
}

.step-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Form Check Styling */
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.form-check-label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* Contact Info Cards */
.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  /* border-left: 5px solid var(--primary); */
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(234, 29, 59, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: var(--secondary);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, #c91e2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(234, 29, 59, 0.3);
}

.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2372 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(45, 49, 136, 0.4);
}

.contact-icon i {
  font-size: 2rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 25px 0 20px 0;
  text-align: center;
}

.contact-details {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}

.contact-details p {
  margin: 0 0 20px 0;
  color: #555;
}

.contact-details strong {
  color: var(--secondary);
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-actions {
  margin-top: 25px;
  text-align: center;
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Contact Form Styling */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(234, 29, 59, 0.25);
}

.contact-form-wrapper .form-control::placeholder {
  color: #adb5bd;
  font-family: "Poppins", sans-serif;
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Success Modal */
#contactSuccessModal .modal-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}
.pageheade{
    padding-top: 200px;
    padding-bottom: 100px;
    border-bottom: 3px solid var(--primary);
}
.pageheade::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0B2B3F 0%, rgba(11, 43, 63, 0) 100%);
    /* opacity: 0.7; */
}
.product-details-page{
  background: var(--secondary);
  padding-top: 120px;
  padding-bottom: 70px;
}
    
/* Breadcrumb Styling */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--primary);
    font-weight: 600;
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: #6c757d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-item i {
    font-size: 0.8rem;
    opacity: 0.8;
}
    
/* Responsive Breadcrumb */
@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 0.5rem 0;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.25rem;
        content: ">";
    }

    .breadcrumb-item i {
        font-size: 0.7rem;
    }
}
    
/* Mobile Menu Styles */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Drawer Menu Styles */
.offcanvas {
    background: #2b2b2b;
    width: 280px;
}

.offcanvas-logo {
    height: 55px;
    width: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: white;
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 25px 25px 0;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
    opacity: 0.8;
}

.mobile-contact-title {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.mobile-contact-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.mobile-contact-item a,
.mobile-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: white;
}

.mobile-language .btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
}

.mobile-language .btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.mobile-language .btn:not(.active) {
    color: var(--primary);
    border-color: var(--primary);
}

.mobile-language .btn:not(.active):hover {
    background-color: var(--primary);
    color: white;
}

/* Hide main navigation on mobile */
@media (max-width: 1199.98px) {
    .d-xl-flex {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* Show main navigation on larger screens */
@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .d-xl-flex {
        display: flex !important;
    }
}
    
/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-animate-left {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.scroll-animate-left.animate {
    opacity: 1;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.scroll-animate-right {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.scroll-animate-right.animate {
    opacity: 1;
    animation: fadeInRight 0.8s ease-out forwards;
}

.scroll-animate-scale {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.scroll-animate-scale.animate {
    opacity: 1;
    animation: scaleIn 0.8s ease-out forwards;
}

/* Parallax Effects */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

/* Header Scroll Effects */
.header-scrolled {
    background: rgba(11, 43, 63, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1030;
}

.header-scrolled .logo {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Fixed Header */
#header {
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Sticky WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 26px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Counter Animation */
.counter-animate {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.counter-animate.animate {
    opacity: 1;
    animation: scaleIn 0.8s ease-out forwards;
}

/* Stagger Animation for Multiple Elements */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Mobile Responsive Scroll Effects */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }

    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top i {
        font-size: 18px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .logo{
      height: 55px;
    }
}
/* Service Details Page Styling */
.service-details-page{
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(11, 43, 63, 0.9) 100%);
  padding-top: 120px;
  padding-bottom: 70px;
}

.service-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-info-card .spec-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-info-card .spec-item:last-child {
    border-bottom: none;
}

.service-features .feature {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features .feature:last-child {
    border-bottom: none;
}

/* Process Steps Styling */
.process-steps .step-item {
    margin-bottom: 30px;
}

.step-number .badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Equipment Cards Styling */
.equipment-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.equipment-icon {
    margin-bottom: 20px;
}

.equipment-specs {
    margin-top: 15px;
}

.equipment-specs small {
    line-height: 1.6;
}

/* Compliance Cards Styling */
.compliance-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    margin-bottom: 20px;
}

/* Service Features Styling */
.service-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.feature-list .feature {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list .feature:last-child {
    border-bottom: none;
}

.feature i {
    width: 20px;
}

/* Service Cards Styling for Related Services */
.service-card {
    position: relative;
    /* border-radius: 10px; */
    overflow: hidden;
    /* margin-bottom: 20px; */
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h6 {
    padding: 20px 20px 10px;
    margin: 0;
    font-weight: 600;
}

.service-description {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay .btn {
    transform: translateY(0);
}

/* CTA Section Styling */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

/* Hero Features Styling */
.hero-features {
    max-width: 400px;
}
.hero-features .d-flex {
    margin-bottom: 15px;
}

/* Service Enquiry Modal Styling */
.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
}

.enquiry-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.enquiry-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.enquiry-form .form-focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.service-benefits {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.service-benefits small {
    color: #6c757d;
    font-size: 0.8rem;
}

.modal-lg {
    max-width: 800px;
}

/* Form validation styling */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .modal-body .row {
        --bs-gutter-x: 1rem;
    }
}

.stagger-item .equipment-card,
.stagger-item .compliance-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-item.animate .equipment-card,
.stagger-item.animate .compliance-card {
    opacity: 1;
    transform: translateY(0);
}

/* Service Details Page Specific Spacing */
.service-details-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Rental Service Page Styling */
.service-rental-page{
  background: linear-gradient(135deg, #f8f9fa 0%, rgba(248, 249, 250, 0.9) 100%);
  padding-top: 120px;
  padding-bottom: 70px;
}

.service-rental-page .hero-features {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.service-rental-page .service-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Equipment Cards Hover Effects */
.equipment-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.equipment-icon {
    padding: 20px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.equipment-card:hover .equipment-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: scale(1.1);
}

/* Process Steps Styling for Rental Page */
.process-steps .step-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.process-steps .step-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
}

/* Rental CTA Section */
.rental-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.rental-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rental-cta-section .container {
    position: relative;
    z-index: 2;
}

/* Equipment Categories Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Design for Rental Page */
@media (max-width: 768px) {
    .service-rental-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .equipment-card {
        margin-bottom: 30px;
    }

    .process-steps .step-item {
        margin-bottom: 20px;
        padding: 20px;
    }

    .rental-cta-section {
        text-align: center;
    }

    .rental-cta-section .btn {
        margin-bottom: 15px;
    }
}
.contact-section {
  background: #070e1b;
  color: #fff;
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
}

.contact-form-card {
  background: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 25px 65px rgba(7, 14, 27, 0.35);
  position: relative;
}

/* .contact-form-card::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 28px;
  border: 1px solid rgba(7, 13, 25, 0.05);
  pointer-events: none;
} */

.contact-form-card .form-label {
  font-weight: 500;
  color: #0f172a;
}

.contact-form-card .form-control,
.contact-form-card textarea {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 14px 18px;
  font-size: 0.95rem;
}

.contact-form-card .form-control:focus,
.contact-form-card textarea:focus {
  border-color: var(--secondary);
  box-shadow: none;
}