/* ===== RESET & BASE STYLES ===== */
* {
  margin: -1px ;
  padding: -1px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

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

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out;
}

.preloader-content {
  text-align: center;
  color: white;
}

.hydraulic-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.gear {
  position: absolute;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}

.gear1 {
  width: 50px;
  height: 50px;
  top: 0;
  left: 10px;
}

.gear2 {
  width: 40px;
  height: 40px;
  top: 30px;
  left: 0;
  animation-direction: reverse;
}

.gear3 {
  width: 40px;
  height: 40px;
  top: 30px;
  right: 0;
  animation-direction: reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.preloader-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.preloader-content p {
  font-size: 16px;
  opacity: 0.8;
}

/* ===== NAVIGATION - CLEAN STRAIGHT LINE DESIGN ===== */
/* === New Code ===*/
/* Reset any default margins/padding that might interfere */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    
    /* Fixed positioning */
    position: fixed;
    top: 1px;
    left: 0;
    right: 0; /* Use right instead of width: 100% for better stability */
    z-index: 1000; /* Higher z-index for better stacking */
    
    /* Flexbox layout */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem; /* Increased padding for better spacing */
    min-height: 20px; /* Set minimum height for consistency */
}

/* Logo styling */
.navbar .logo {
    flex-shrink: 0; /* Prevent logo from shrinking */
    height: 15px; /* Set specific height */
    width: auto; /* Maintain aspect ratio */
    margin-right: auto; /* Push to far left */
}

.navbar .logo img {
    height: 50%;
    width: auto;
    object-fit: contain;
}

/* Navigation menu container */
.navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem; /* Space between menu items */
    margin-left: auto; /* Push to right */
}

/* Menu button styling */
.navbar .nav-menu a,
.navbar .nav-menu button {
    font-size: 1.1rem; /* Increased font size */
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
    border: none;
    background: none;
    cursor: pointer;
}

.navbar .nav-menu a:hover,
.navbar .nav-menu button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Mobile hamburger menu button */
.navbar .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Body margin to account for fixed navbar */
body {
    margin-top: 70px; /* Match navbar min-height */
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .navbar .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .navbar .nav-menu.active {
        left: 0;
    }
    
    .navbar .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar .nav-menu a,
    .navbar .nav-menu button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }
}



/* === New Code ===*/


.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: flex-end;
    font-weight: 100;
    color: #1e3c72 !important;
    text-decoration: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
}

.logo-img {
  width: 110px;
  height: 80px;
  border-radius: 8px;
  margin-right: 30px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-text {
  font-size: 23px;
  font-weight: 100;
  color: #1e3c72;
}

/* Clean Straight Line Navigation Menu */
.navbar-nav {
    display: flex
;
    align-items: stretch;
    margin: 0;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: center;
}
.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 1000;
    padding: 7px 50px !important;
    border-radius: 55px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.navbar-contact {
    display: flex
;
    align-items: stretch;
    gap: 50px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
}

.navbar-contact .contact-btn {
  background: linear-gradient(135deg, #1e3c72, #1e3c72);
  color: white !important;
  padding: 7px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  transition: all 0.3s ease;
  border: none;
}

.navbar-contact .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 80%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.6));
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.slide-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.2s both;
}

.slide-buttons {
  animation: slideInUp 1s ease-out 0.4s both;
}

.slide-buttons .btn {
  margin: 0.5rem 0.5rem 0.5rem 0;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.slide-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
  backdrop-filter: blur(10px);
}

.slide-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
  left: 30px;
  border-radius: 0 50px 50px 0;
}

.slide-nav.next {
  right: 30px;
  border-radius: 50px 0 0 50px;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
.section-padding {
  padding: 70px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

/* ===== ABOUT SECTION ===== */
.office-images {
  position: relative;
}

.main-office-img {
  position: relative;
  margin-bottom: 30px;
}

.main-office-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.office-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.office-badge i {
  margin-right: 8px;
}

.office-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.about-content h3 {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content .lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 10px 0;
}

.feature-item i {
  color: #28a745;
  font-size: 18px;
  margin-right: 15px;
  width: 20px;
}

.feature-item span {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* About Boxes */
.about-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.box-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.box-icon i {
  font-size: 30px;
  color: white;
}

.box-content h4 {
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}

.box-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.box-image {
  margin-top: 20px;
}

.box-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certification-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.cert-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cert-icon i {
  font-size: 24px;
  color: white;
}

.certification-card h5 {
  color: #1e3c72;
  font-weight: 600;
  margin-bottom: 10px;
}

.certification-card p {
  color: #666;
  margin: 0;
}

/* ===== PRODUCTS SECTION - 4x4 GRID ===== */
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 30px;
  margin-bottom: 10px;
}

.overlay-content span {
  font-weight: 600;
  font-size: 16px;
}

.product-content {
  padding: 25px;
}

.product-content h4 {
  font-size: 1.3rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-price {
  margin-top: 15px;
}

.price-label {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}

.view-more-btn {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}

/* ===== SERVICES SECTION ===== */
.service-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 35px;
  color: white;
}

.service-card h4 {
  font-size: 1.3rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: #1e3c72;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #ff6b35;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-carousel {
  position: relative;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
  font-size: 40px;
  color: #ff6b35;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.author-info h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.rating {
  color: #ffc107;
}

.rating i {
  font-size: 16px;
  margin-right: 2px;
}

.testimonial-nav {
  margin-top: 30px;
}

.testimonial-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn.active,
.testimonial-btn:hover {
  background: white;
  transform: scale(1.2);
}

/* ===== ENQUIRY FORM SECTION ===== */
.enquiry-form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.enquiry-form .form-label {
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 8px;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 0 0.2rem rgba(30, 60, 114, 0.25);
  background: white;
}

.form-control::placeholder {
  color: #999;
}

.form-check-input:checked {
  background-color: #1e3c72;
  border-color: #1e3c72;
}

.enquiry-form .btn-primary {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.enquiry-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

/* ===== FAQ SECTION ===== */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background: white;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  color: #1e3c72;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px 25px;
  background: #f8f9fa;
  color: #666;
  line-height: 1.6;
}

/* ===== FULL WIDTH RESPONSIVE GOOGLE MAPS ===== */
.map-container-full {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.map-container-full iframe {
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.map-container-full:hover iframe {
  filter: grayscale(0%);
}

.map-info-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.location-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 300px;
}

.location-card h4 {
  color: #1e3c72;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.location-card h4 i {
  color: #ff6b35;
  margin-right: 8px;
}

.location-card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.location-actions .btn {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 24px;
  color: white;
}

.contact-details h5 {
  color: #1e3c72;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-details p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: #1e3c72;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #ff6b35;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-form {
  max-width: 500px;
  margin-left: auto;
}

.newsletter-form .input-group {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  background: white;
}

.newsletter-form .btn {
  border: none;
  padding: 15px 25px;
  font-weight: 600;
  background: #1e3c72;
  color: white;
}

.newsletter-form .btn:hover {
  background: #2a5298;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0 0;
}

.footer-section h4,
.footer-section h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 12px;
  object-fit: cover;
}

.footer-section p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  transform: translateY(-3px);
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #ff6b35;
  padding-left: 5px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.footer-contact .contact-item i {
  color: #ff6b35;
  font-size: 16px;
  margin-right: 10px;
  width: 20px;
  margin-top: 2px;
}

.footer-contact .contact-item span {
  color: #ccc;
  line-height: 1.5;
}

.footer-contact .contact-item a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 14px;
}

/* ===== PRODUCTS PAGE BANNER ===== */
.products-banner {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.banner-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.6));
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 20px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
  backdrop-filter: blur(10px);
}

.banner-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.banner-nav.prev {
  left: 20px;
  border-radius: 0 25px 25px 0;
}

.banner-nav.next {
  right: 20px;
  border-radius: 25px 0 0 25px;
}

.banner-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.banner-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-indicator.active,
.banner-indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* ===== CATEGORY FILTERS ===== */
.category-filters {
  margin-bottom: 40px;
}

.category-filters .btn {
  margin: 5px;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-filters .btn.active,
.category-filters .btn:hover {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===== PRODUCT CATEGORIES ===== */
.product-category {
  margin-bottom: 60px;
}

.category-title {
  color: #1e3c72;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ff6b35;
  display: inline-block;
}

.category-title i {
  margin-right: 10px;
  color: #ff6b35;
}

.category-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.spec-item {
  background: #f8f9fa;
  color: #666;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== PRODUCT MODAL ===== */
.product-modal-details h4 {
  color: #1e3c72;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-features {
  margin: 20px 0;
}

.product-features h6 {
  color: #1e3c72;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-features ul {
  padding-left: 20px;
}

.product-features li {
  color: #666;
  margin-bottom: 5px;
}

.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #128c7e;
}

.call-btn {
  background: #007bff;
}

.call-btn:hover {
  background: #0056b3;
}

.email-btn {
  background: #dc3545;
}

.email-btn:hover {
  background: #c82333;
}

.enquiry-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .slide-title {
    font-size: 3rem;
  }

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

  .banner-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: center;
  }

  .navbar-contact {
    margin-top: 15px;
    text-align: center;
    justify-content: center;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-subtitle {
    font-size: 1.1rem;
  }

  .slide-nav {
    padding: 10px 15px;
    font-size: 20px;
  }

  .slide-nav.prev {
    left: 15px;
  }

  .slide-nav.next {
    right: 15px;
  }

  .office-stats {
    flex-direction: column;
    gap: 15px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

  .map-info-overlay {
    position: static;
    margin: 20px;
  }

  .location-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .brand-text {
    font-size: 16px;
  }

  .hero-section {
    height: 70vh;
  }

  .products-banner {
    height: 50vh;
  }

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

  .slide-subtitle {
    font-size: 1rem;
  }

  .slide-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 0.25rem;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

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

  .section-padding {
    padding: 50px 0;
  }

  .main-office-img img {
    height: 300px;
  }

  .about-content h3 {
    font-size: 1.5rem;
  }

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .enquiry-form-container {
    padding: 30px 20px;
  }

  .contact-card {
    margin-bottom: 20px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .newsletter-form {
    margin-left: 0;
  }

  .category-filters .btn {
    margin: 3px;
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    width: 35px;
    height: 35px;
  }

  .brand-text {
    font-size: 14px;
  }

  .hero-section {
    height: 60vh;
  }

  .products-banner {
    height: 40vh;
  }

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

  .slide-subtitle {
    font-size: 0.9rem;
  }

  .slide-nav {
    padding: 8px 12px;
    font-size: 16px;
  }

  .slide-nav.prev {
    left: 10px;
  }

  .slide-nav.next {
    right: 10px;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }

  .banner-nav {
    padding: 10px 12px;
    font-size: 16px;
  }

  .banner-nav.prev {
    left: 10px;
  }

  .banner-nav.next {
    right: 10px;
  }

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

  .section-padding {
    padding: 40px 0;
  }

  .main-office-img img {
    height: 250px;
  }

  .about-box {
    padding: 20px;
  }

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

  .box-icon i {
    font-size: 24px;
  }

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

  .service-icon i {
    font-size: 30px;
  }

  .testimonial-content {
    padding: 25px;
  }

  .author-img {
    width: 60px;
    height: 60px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .back-to-top {
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .enquiry-form-container {
    padding: 25px 15px;
  }

  .location-actions {
    justify-content: center;
  }

  .location-actions .btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .category-filters {
    text-align: center;
  }

  .category-filters .btn {
    margin: 2px;
    padding: 6px 15px;
    font-size: 13px;
  }

  .product-specs {
    justify-content: center;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: #1e3c72 !important;
}

.bg-primary {
  background: linear-gradient(135deg, #9c9ca8, #2a5298) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #1e3c72;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid #1e3c72;
  color: #1e3c72;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-2px);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #1e3c72;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1e3c72;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn-primary,
  .floating-btn {
    border: 2px solid currentColor;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .floating-buttons,
  .back-to-top,
  .slide-nav,
  .slide-indicators,
  .banner-nav,
  .banner-indicators {
    display: none !important;
  }

  .hero-section,
  .products-banner {
    height: auto !important;
    background: none !important;
  }

  .slide-overlay,
  .banner-overlay {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}
