/* Core Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
  overflow-x: hidden;
  transition: all 0.3s ease
}


/* === Header Styles === */
.vk-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  height: 34px;
  max-width: 160px;
  object-fit: contain;
}

/* Navigation */
.vk-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.vk-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}
.vk-menu li a {
  font-size: 16px;
  color: #040A42;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.vk-menu li a:hover {
  color: #0034a1;
}

/* Contact CTA */
.contact-cta {
  padding: 8px 20px;
  border-radius: 6px;
  background: #040A42;
  color: #fff;
  font-weight: 600;
  margin-left: 20px;
  transition: background 0.3s ease;
}
.contact-cta:hover {
  background: #001148;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #040A42;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .vk-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
  }

  .vk-nav.active {
    display: flex;
  }

  .vk-menu {
    flex-direction: column;
    gap: 16px;
  }

  .contact-cta {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
/* Default state: menu hidden on mobile */
@media (max-width: 768px) {
  .vk-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 999;
  }

  .vk-nav.active {
    display: flex;
  }

  .vk-menu {
    flex-direction: column;
    gap: 16px;
  }

  .contact-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}

#wpadminbar{
  display: none !important;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 700;
  color: #040A42;
}
p {
  margin: 10px 0 20px;
}

/* Container */
.vk-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Buttons */
.vk-btn-primary {
  background: #040A42;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}
.vk-btn-primary:hover {
  background: #001148;
}
.vk-btn-outline {
  border: 2px solid #040A42;
  color: #040A42;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.vk-btn-outline:hover {
  background: #040A42;
  color: #fff;
}
.vk-btn-link {
  font-weight: 600;
  color: #040A42;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
}
.vk-btn-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.vk-hero {
  background: linear-gradient(to bottom, #ffffff, #f5f8ff);
  padding: 100px 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  color: #555;
}
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.hero-image {
  flex: 1;
  min-width: 300px;
}

/* Intro Section */
.vk-intro {
  padding: 80px 0;
  background: #f5f5f5;
  text-align: center;
}
.vk-intro h2 {
  font-size: 36px;
}
.vk-intro p {
  font-size: 16px;
  max-width: 700px;
  margin: 20px auto;
}















/* Products Section */
.vk-products-preview {
  padding: 80px 0;
}

.vk-products-preview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  color: #040A42;
}

.vk-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Product Card */
.product-card {
  background: #f9f9f9;
  padding: 24px 20px;
  text-align: center;
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Product Image */
.product-card img {
  width: 100%;
  max-width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* Product Title */
.product-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #040A42;
  line-height: 1.4;
  min-height: 48px; /* Maintain equal height for uneven titles */
}

/* Centered Button */
.center-btn {
  text-align: center;
  margin-top: 40px;
}

.center-btn .primary-btn {
  font-size: 16px;
  padding: 12px 28px;
  background: #040A42;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.center-btn .primary-btn:hover {
  background: #001148;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .vk-products-preview {
    padding: 60px 20px;
  }

  .vk-products-preview h2 {
    font-size: 28px;
  }

  .vk-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card img {
    max-width: 120px;
    height: 120px;
  }

  .product-card h3 {
    font-size: 16px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .vk-products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 20px 16px;
  }

  .product-card img {
    max-width: 100px;
    height: 100px;
  }

  .product-card h3 {
    font-size: 15px;
  }
}









.industries-section {
  padding: 80px 20px;
  background: #f5f7fa;
  text-align: center;
}

.industries-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #040A42;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.industry-box {
  background: #fff;
  padding: 20px;
  font-weight: 600;
  color: #040A42;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-box:hover {
  background: #040A42;
  color: #fff;
}







.process-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.process-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #040A42;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
  background: #eef3ff;
  transform: translateY(-5px);
}

.step h4 {
  font-size: 20px;
  font-weight: 600;
  color: #040A42;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}








.certifications-section {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.certifications-section h2 {
  font-size: 36px;
  color: #040A42;
  margin-bottom: 20px;
}

.cert-note {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  max-width: 220px;
}

.cert-card img {
  width: 100%;
  object-fit: contain;
}













.why-choose-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

.why-title {
  font-size: 36px;
  font-weight: 700;
  color: #040A42;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.why-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

.why-card i {
  font-size: 36px;
  color: #0034a1;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #040A42;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.why-card:hover {
  background: #eef2ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}








/* === Products Page Styles === */

/* Hero Section */
.products-hero {
  background: linear-gradient(to bottom, #ffffff 0%, #040a42 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}
.products-hero .products-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}
.products-hero .products-subtitle {
  font-size: 18px;
  color: #d3d3d3;
}

/* Product Range Section Layout */
.products-range-section {
  padding: 80px 0;
  background-color: #f7f9fc;
}
.products-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sidebar */
.products-sidebar h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #040a42;
}
.products-sidebar h2 span {
  color: #0034a1;
  font-size: 16px;
  display: block;
}
.category-select select {
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border 0.3s ease;
}
.category-select select:focus {
  border-color: #0034a1;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}
.product-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.product-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.product-details {
  padding: 16px;
}
.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #040a42;
  margin-bottom: 6px;
}
.product-model {
  font-size: 14px;
  color: #666;
}

/* Custom Banner */
.custom-brass-banner {
  background: linear-gradient(to right, #0034a1, #040a42);
  padding: 80px 20px;
  color: #fff;
  text-align: left;
}
.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
}
.banner-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
.banner-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}
.contact-details {
  margin-top: 20px;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}
.contact-btn {
  padding: 12px 24px;
  background: #fff;
  color: #040a42;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-btn:hover {
  background: #0034a1;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  .banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-btn {
    margin-top: 20px;
    display: inline-block;
  }
}
















/* ========== BASE STYLING ========== */
#main-content {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  padding-bottom: 5px;
}

/* ========== MAIN CONTAINER ========== */
.products-main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

.three-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 60px;
}

/* ========== COLUMN LEFT ========== */
.column-left h1.product-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.column-left .product-model {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.product-description,
.product-features,
.vk-quality-assurance,
.vk-plating-standards {
  margin-bottom: 30px;
}

.product-description h2,
.product-features h2,
.vk-quality-assurance h2,
.vk-plating-standards h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #003366;
}

.product-description p {
  color: #444;
}

.feature-list,
.vk-list {
  padding-left: 20px;
  margin-top: 10px;
}

.feature-list li,
.vk-list li {
  margin-bottom: 8px;
  color: #333;
  list-style: disc;
  font-size: 15px;
}

/* ========== BUTTON ========== */
.Prouct-primary-btn {
  display: inline-block;
  margin: 15px 0 35px;
  padding: 12px 28px;
  background-color: #003366;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}
.Prouct-primary-btn:hover {
  background-color: #002244;
}

/* ========== COLUMN CENTER (Image + Options) ========== */
.product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.vk-custom-options h2,
.column-center .product-features h2,
.column-center .vk-quality-assurance h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #003366;
}

.column-center .vk-list li,
.column-center .feature-list li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* ========== COLUMN RIGHT (Categories) ========== */
.column-right h2 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #003366;
}

.category-select select {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 6px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  margin-bottom: 25px;
}

#ajax-category-products {
  font-size: 14px;
  color: #555;
}

/* ========== RELATED PRODUCTS ========== */
.related-products-section {
  padding: 80px 40px;
  
}

.related-products-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #003366;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-box img {
  width: 100%;
  height: 200px; /* fixed height for all product images */
  object-fit: cover;
  display: block;
}

.related-box p {
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-box:hover {
  transform: translateY(-6px);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .three-column-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .products-main-container {
    padding: 60px 20px;
  }

  .three-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h1.product-title {
    font-size: 28px;
  }

  .related-products-section h2 {
    font-size: 24px;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}












/* SECTION 1: Hero */
.feedback-hero {
  padding: 120px 20px;
  background-color: #ffffff;
}

.feedback-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.feedback-text-block {
  max-width: 600px;
}

.feedback-title {
  font-size: 48px;
  font-weight: 700;
  color: #040a42;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feedback-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.feedback-form-block {
  background-color: #f4f6ff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* SECTION 2: Benefits */
.feedback-benefits {
  background: #f9fafc;
  padding: 100px 20px;
}

.section-heading {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  color: #040a42;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-box {
  background: #fff;
  border: 1px solid #e6eaf0;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.benefit-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-box p {
  font-size: 15px;
  color: #555;
}

/* SECTION 3: Process */
.feedback-process {
  background: #ffffff;
  padding: 80px 20px;
}

.process-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps li {
  font-size: 16px;
  color: #444;
  padding: 12px 0;
  border-bottom: 1px solid #e6e6e6;
}

.process-steps li strong {
  color: #040a42;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .feedback-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .feedback-form-block {
    padding: 30px 20px;
  }

  .feedback-title {
    font-size: 36px;
  }

  .feedback-desc {
    font-size: 16px;
  }
}












.vk-about-hero-section {
  padding: 100px 20px 60px;
  background: linear-gradient(to bottom, #f5f7fa 0%, #fff 100%);
  text-align: center;
}
.vk-about-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1b3f;
  margin-bottom: 15px;
}
.vk-about-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
}

.vk-about-highlight-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.vk-highlight-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.vk-highlight-text {
  flex: 1 1 50%;
}
.vk-highlight-text h2 {
  font-size: 30px;
  font-weight: 600;
  color: #0b1b3f;
  margin-bottom: 15px;
}
.vk-highlight-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.vk-highlight-img {
  flex: 1 1 45%;
}
.vk-highlight-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.vk-about-stats-section {
  background-color: #f1f4f9;
  padding: 70px 20px;
}
.vk-stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.vk-stat-box h3 {
  font-size: 36px;
  color: #0b1b3f;
  margin-bottom: 10px;
}
.vk-stat-box p {
  font-size: 15px;
  color: #4f4f4f;
}

.vk-about-core-values {
  padding: 80px 20px;
  background-color: #ffffff;
}
.vk-about-core-values h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #0b1b3f;
  margin-bottom: 40px;
}
.vk-values-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.vk-value-box {
  flex: 1 1 250px;
  background-color: #f9fafc;
  border: 1px solid #e5e7eb;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}
.vk-value-box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.vk-value-box h4 {
  font-size: 20px;
  color: #0b1b3f;
  margin-bottom: 10px;
}
.vk-value-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.vk-journey-section, .vk-manufacturing-section, .vk-certification-section {
  padding: 80px 20px;
  background-color: #fff;
}
.vk-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-step {
  border-left: 3px solid #0b1b3f;
  padding-left: 20px;
  position: relative;
}
.timeline-step .year {
  font-weight: 600;
  font-size: 20px;
  color: #0b1b3f;
}
.vk-manufacturing-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.vk-manufacturing-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}
.vk-manufacturing-text {
  flex: 1;
}
.vk-manufacturing-text h2 {
  font-size: 28px;
  color: #0b1b3f;
  margin-bottom: 10px;
}
.vk-manufacturing-text ul.vk-list {
  padding-left: 20px;
  margin-top: 15px;
}
.vk-manufacturing-text ul.vk-list li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #444;
}

.cert-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.cert-logos img {
  width: 80px;
  opacity: 0.9;
}
.cert-note {
  text-align: center;
  font-size: 15px;
  color: #555;
}












/* CONTACT HERO SECTION */
.contact-hero-section {
  background: #f9f9f9;
  padding: 100px 20px;
}

.contact-hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* LEFT COLUMN: Text & Info */
.contact-left {
  flex: 1 1 480px;
}

.contact-heading {
  font-size: 36px;
  color: #111;
  margin-bottom: 16px;
}

.contact-subheading {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-details p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.contact-details a {
  color: #002b6b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-details a:hover {
  color: #000;
}

/* RIGHT COLUMN: Form */
.contact-right {
  flex: 1 1 480px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* CONTACT DETAILS SECTION */
.contact-details-section {
  background: #fff;
  padding: 100px 20px;
  border-top: 1px solid #e0e0e0;
}

.contact-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: center;
}

.detail-box {
  flex: 1 1 300px;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.detail-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.detail-box p,
.detail-box a {
  font-size: 16px;
  color: #555;
  text-decoration: none;
}

/* MAP SECTION */
.contact-map {
  padding: 0;
  margin: 0;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-hero-grid {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-heading {
    font-size: 30px;
  }

  .contact-right {
    padding: 30px;
  }

  .detail-box {
    padding: 24px;
  }
}
/* SUPPORT HIGHLIGHTS */
.support-highlights {
  background: #f9f9f9;
  padding: 80px 20px;
}

.support-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
}

.support-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.support-box p {
  color: #555;
  font-size: 15px;
}

/* WORKING HOURS */
.working-hours {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.hours-box {
  max-width: 600px;
  margin: 0 auto;
}

.hours-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hours-box p {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

/* CHAT CTA */
.chat-cta-section {
  background: #f1f4f9;
  padding: 80px 20px;
  text-align: center;
}

.chat-cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.chat-cta-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.chat-cta-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.primary-btn {
  background: #002b6b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* FEEDBACK BANNER */
.feedback-banner {
  background: #e7f2ff;
  padding: 60px 20px;
  text-align: center;
}

.feedback-banner-box {
  max-width: 600px;
  margin: 0 auto;
}

.feedback-banner-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feedback-banner-box p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.secondary-btn {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid #002b6b;
  color: #002b6b;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .support-grid {
    flex-direction: column;
    gap: 20px;
  }

  .chat-cta-box h2,
  .feedback-banner-box h2 {
    font-size: 22px;
  }
}

















/* HERO */
.capabilities-hero {
  background: #f8f8f8;
  padding: 120px 20px 80px;
  text-align: center;
}

.capabilities-title {
  font-size: 42px;
  color: #111;
  margin-bottom: 16px;
}

.capabilities-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* GRID */
.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 80px 20px;
}

.capability-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 30px;
  flex: 1 1 300px;
  text-align: center;
  transition: transform 0.3s;
}

.capability-box:hover {
  transform: translateY(-5px);
}

.capability-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.capability-box p {
  font-size: 16px;
  color: #666;
}

/* ADVANTAGES SECTION */
.capabilities-advantages {
  padding: 100px 20px;
  background: #f9f9f9;
}

.advantage-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.advantage-text {
  flex: 1 1 400px;
}

.advantage-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.advantage-text ul {
  list-style: none;
  padding: 0;
}

.advantage-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.advantage-image {
  flex: 1 1 400px;
}

.advantage-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* CERTIFICATIONS */
.capabilities-certifications {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.capabilities-certifications h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.capabilities-certifications p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.cert-list {
  list-style: none;
  padding: 0;
}

.cert-list li {
  font-size: 16px;
  color: #333;
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .capabilities-title {
    font-size: 32px;
  }

  .advantage-flex {
    flex-direction: column;
  }
}






































































.capabilities-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: #f9f9f9;
}

.capabilities-title {
  font-size: 42px;
  color: #111;
  margin-bottom: 20px;
}

.capabilities-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.capabilities-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 0;
}

.capability-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 320px;
  flex: 1;
  transition: transform 0.3s ease;
}

.capability-box:hover {
  transform: translateY(-4px);
}

.capability-box img {
  width: 40px;
  margin-bottom: 20px;
}

.capability-box h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.capability-box p {
  font-size: 16px;
  color: #555;
}

/* CERTIFICATIONS */
.certification-section {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.certification-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cert-note {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  font-size: 16px;
  color: #444;
  margin: 10px 0;
}

/* FACILITY HIGHLIGHT */
.facility-highlight {
  background: #f5f5f5;
  padding: 100px 20px;
}

.facility-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.facility-text {
  flex: 1 1 400px;
}

.facility-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.facility-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.facility-points {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.facility-image {
  flex: 1 1 400px;
}

.facility-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .facility-flex {
    flex-direction: column;
  }

  .capabilities-title {
    font-size: 32px;
  }

  .capabilities-subtitle {
    font-size: 16px;
  }

  .capability-box {
    max-width: 100%;
  }
}














































































/* === FOOTER STYLES === */
.custom-footer {
  background-color: #F4F5F7;
  padding: 80px 5vw 40px;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 50px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #040A42;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0034a1;
}

.footer-tagline {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 300px;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #0034a1;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #000;
}

/* Newsletter */
.newsletter-col p {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  flex: 1 1 160px;
}

.newsletter-form button {
  background-color: #040A42;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #001148;
}

/* Contact Column */
.footer-contact li {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Bottom Text */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
