/* FULL CSS WITH HERO BLUE + WHITE UNDERLINE */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color:#079fa0;
  line-height: 1.6;
  background-color: #f8f9fc;
  overflow-x: hidden;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   HEADER / NAVBAR
========================================= */
/* =========================================
   HEADER / NAVBAR (UPDATED – HOVER UNDERLINE ONLY)
========================================= */

header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 13, 26, 0.9);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.9rem;
  color: #9ad0ff;
}

/* ⭐ NAV LINKS – FULL FIX HERE */
nav a {
  color: #c9d9f0;
  margin-left: 25px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #0ea5ff;
}

nav a.active {
  color: #ffd700 !important;
}

nav a.active::after {
  width: 0 !important;
}

/* =================================================
   HERO BUTTON COLORS (CUSTOM USER REQUEST)
================================================= */

/* 1️⃣ Explore Products */
.hero-section .btn.primary {
    background: #079fa0 !important;   /* Green */
    color: #ffffff !important;        /* White text */
    border: none !important;
}

.hero-section .btn.primary:hover {
    background: #067f80 !important;   /* Darker green hover */
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* 2️⃣ Get in Touch */
.hero-section .btn.secondary {
    background: #ffffff !important;   /* White */
    color: #079fa0 !important;        /* Green text */
    border: 2px solid #079fa0 !important;
}

.hero-section .btn.secondary:hover {
  /* Turns green on hover */
    color: #ffffff !important;        /* White text on hover */
    transform: translateY(-3px);
}
/* =================================================
   BOTH HERO BUTTONS – DARK GREEN STYLE
================================================= */
.btn.secondary {
   
    color: #007bff !important; /* Blue text always visible */
    border: 2px solid #00aaff !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
}







/* ... (ENTIRE USER CSS BLOCK HERE — OMITTED DUE TO LENGTH) ... */

/* ======================================================
   CUSTOM HERO TEXT BLUE + UNDERLINE WHITE  (ADDED)
====================================================== */
.hero-section h1,
.hero-section h1 span,
.hero-section h2,
.hero-section p,
.hero-inner h1,
.hero-inner h1 span,
/* ECO FRIENDLY EDGE → GREEN COLOR */
/* MAIN HEADING FIRST PART → BLUE CYAN (#00A8CE) */
.hero-inner h1 .main-text {
    color: #00A8CE !important;
}

/* ECO FRIENDLY EDGE → GREEN (#079FA0) */
.hero-inner h1 .eco-text {
    color: #079FA0 !important;
}



.hero-section .btn.secondary {
    color: #00a8ff !important;
    border-color: #00a8ff !important;
}

.hero-section .btn.secondary:hover {
  
    color: #000 !important;
}

.hero-section .btn.primary {
    color: #ffffff !important;
}

.hero-section a {
    color: #00a8ff !important;
    text-decoration: none;
    border-bottom: 2px solid #ffffff !important;
    padding-bottom: 3px;
}

.hero-section a:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff !important;
}
/* =========================================
   RESET & BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color:#000000;
  line-height: 1.6;
  background-color: #f8f9fc;
  overflow-x: hidden;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   HEADER / NAVBAR
========================================= */
/* =========================================
   HEADER / NAVBAR (UPDATED – HOVER UNDERLINE ONLY)
========================================= */

header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 13, 26, 0.9);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.9rem;
  color: #9ad0ff;
}

/* ⭐ NAV LINKS – FULL FIX HERE */
nav a {
  color: #c9d9f0;
  margin-left: 25px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;   /* space for underline */
  transition: color 0.3s ease;
}

/* Create underline (hidden by default) */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #ffd700; /* underline color */
  transition: width 0.3s ease;
}

/* Hover underline */
nav a:hover::after {
  width: 100%;
}

/* Hover color */
nav a:hover {
  color: #0ea5ff;
}

/* Active page – color only (NO underline) */
nav a.active {
  color: #ffd700 !important;
}

nav a.active::after {
  width: 0 !important;
}

/* HAMBURGER + MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #0ea5ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 25px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #f8fafc;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin: 0;
    color: #0e4e96;
    font-weight: 600;
  }

  /* Mobile hover underline */
  .nav-links a::after {
    background-color: #0ea5ff;
  }
}


/* ✅ INDUSTRIES SECTION FIX */
/* ✅ INDUSTRIES WE SERVE (Large Box Version) */
/* ================================
   INDUSTRIES SECTION – FINAL FIXED
================================ */

.industries-section {
  text-align: center;
  padding: 80px 0;
  background: #f9fafb;
}

/* Title → Logo Green */
.industries-section .section-title {
  font-size: 2.4rem;
  color: #079fa0;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Subtitle → Black */
.industries-section .lead {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* CARD */
.industry-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  width: 300px;
  height: 330px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* IMAGE */
.industry-card .icon img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* TITLE under image */
.industry-title {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #003d9b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industry-card {
    width: 240px;
    height: 270px;
  }
  .industry-card .icon img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .industry-card {
    width: 200px;
    height: 230px;
  }
  .industry-card .icon img {
    width: 120px;
    height: 120px;
  }
  .industry-title {
    font-size: 0.85rem;
  }
}




/* -----------------------------------
   RESPONSIVE NAVBAR
----------------------------------- */

/* Main nav container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

/* Hamburger (hidden for desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: 0.3s;
}

/* NAV-LINKS desktop */
.nav-links {
  display: flex;
  gap: 20px;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    z-index: 10;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    text-align: center;
    width: 100%;
  }
}


/* -----------------------------------
   RESOURCES PAGE
----------------------------------- */
.resources-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.resources-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #003366;
}

.resources-section .lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.resource-card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #222;
}

.resource-card a.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #007bff;
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.resource-card a.btn:hover {
  background: #007bff;
  color: #fff;
}


/* =========================================
   HERO SECTION
========================================= */
/* ================================
   HERO SECTION – WHITE BACKGROUND
================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff !important; /* FULL WHITE */
  color: green; /* Dark text for white background */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
}

/* Inner Content */
.hero-inner {
  max-width: 800px;
  z-index: 2;
}

/* =========================================
   GLOBAL BADGE (LEFT SIDE + DARK ICON)
=========================================*/

.global-badge {
    background: #00A8CE !important;
    border: 2px solid #045f60 !important;
    color: #fff !important;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;      /* LEFT SIDE ALIGNMENT */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* Globe icon darker + blue tone */
.global-badge .globe-icon {
    color: #004d8a;      /* DARK BLUE instead of light blue */
    font-size: 18px;
    filter: brightness(0.7); /* More dark */
}

/* Center hero container must allow left alignment badge */
.hero-inner {
    text-align: left;     /* Make entire hero left aligned */
    max-width: 900px;
    margin: 0 auto;
}



/* Title */
.hero-inner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.hero-inner h1 span {
  color: #0ea5ff;
}

/* Short Description */
.hero-inner p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 25px;
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg, #1ea7ff, #0077ff);
  color: #fff;
}

.btn.secondary {
  border: 2px solid #0ea5ff;
  color: #0ea5ff;
  background: transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Remove Canvas Background (old effect) */
#heroCanvas {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2.2rem;
  }
  .hero-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-inner h1 {
    font-size: 1.8rem;
  }
}

/* =========================================
   SECTION TITLES
========================================= */
.page-section {
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}


.lead {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 50px;
}
/* === CORE STRENGTHS SECTION === */
.core-strengths-section {
  background: linear-gradient(to bottom right, #f8fafc, #eef2ff);
  padding: 90px 20px;
  overflow: hidden;
  position: relative;
}

.core-strengths-section::before,
.core-strengths-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.core-strengths-section::before {
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgba(14, 165, 255, 0.25);
}

.core-strengths-section::after {
  bottom: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: rgba(99, 102, 241, 0.25);
}

.core-strengths-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
/* Text Black – Delivering excellence */
.core-subtitle {
  color: #000000;      /* Pure Black */
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #079fa0;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 60px;
}

/* --- GRID --- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 forces four per row */
  gap: 25px;
  justify-items: center;
  align-items: stretch;
}

/* --- CARD STYLES --- */
.strength-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.strength-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #0ea5ff, #06b6d4);
  transition: width 0.3s ease;
}

.strength-card:hover::after {
  width: 100%;
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(14, 165, 255, 0.15);
}

/* --- ICON --- */
.strength-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  margin: 0 auto 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}

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

/* Icon gradients */
.icon-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.icon-purple {
    background: linear-gradient(135deg, #fbd3fb, #ec4);
}
.icon-orange {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* --- TEXT --- */
.strength-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.strength-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .strengths-grid {
    grid-template-columns: 1fr;
  }
}

/* === INDUSTRIES WE SERVE === */
/* ---------- INDUSTRIES SECTION ---------- */
.industries-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
/* ---------- INDUSTRIES SECTION ---------- */
.industries-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.industries-section .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #079fa0;
    margin-bottom: 10px;
}

.industries-section .section-subtitle {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 60px;
}

/* ---------- GRID LAYOUT ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
}

/* ---------- CARD STYLES ---------- */
.industry-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px 15px; /* Increased padding for better spacing */
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

/* ---------- IMAGE ICON ---------- */
/* ---------- IMAGE ICON ---------- */
.industry-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px; /* increased even more */
  margin-bottom: 20px;
  overflow: visible; /* allow full image to show */
}

.industry-card .icon img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.industry-card:hover .icon img {
  transform: scale(1.03);
}


/* ---------- CARD TITLE ---------- */
.industry-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-top: 10px;
}

/* ---------- HOVER BORDER LINE ---------- */
.industry-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: #0f81e6;
  border-radius: 0 0 12px 12px;
  transition: width 0.3s ease;
}

.industry-card:hover::after {
  width: 100%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .industries-section {
    padding: 40px 15px;
  }

  .industry-card .icon {
    height: 120px; /* Slightly smaller for mobile */
  }

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

  .industry-card h3 {
    font-size: 1rem;
  }
}
.section-title {
    font-size: 2rem;
    color: #079fa0;
    margin-bottom: 10px;
    font-weight: 600;
}

  


/* ---------- IMAGE ICON ---------- */
/* ---------- IMAGE ICON ---------- */
.industry-card .icon img {
  width: 120px; /* old: 100px */
  height: 120px; /* old: 100px */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .industry-card .icon img {
    width: 100px; /* old: 80px */
    height: 100px; /* old: 80px */
  }
}


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

/* ---------- CARD TITLE ---------- */
.industry-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-top: 10px;
}

/* ---------- HOVER BORDER LINE ---------- */
.industry-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: #0f81e6;
  border-radius: 0 0 12px 12px;
  transition: width 0.3s ease;
}

.industry-card:hover::after {
  width: 100%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .industries-section {
    padding: 40px 15px;
  }

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

  .industry-card h3 {
    font-size: 1rem;
  }
}


/* Image Container */
.industry-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.industry-image {
  width: 100px;         /* Circle size */
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.industry-image img {
  width: 90%;           /* Fill 90% of circle */
  height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.industry-image img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Title */
.industry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
.industries-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.industry-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.industry-card {
  width: 140px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-10px);
 
}

.industry-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.industry-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .industry-card {
    width: 100px;
  }
  .industry-image img {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }
  .industry-card h3 {
    font-size: 0.9rem;
  }
}
/* ============================
   WHY CHOOSE US FIX
============================ */
/* WHY CHOOSE US SECTION HEADINGS */
.why-title {
    color: #079fa0;      /* Logo Green */
    font-weight: 700;
    font-size: 2.2rem;
}

.why-subtitle {
    color: #000;         /* Black */
    font-size: 1.1rem;
    margin-top: 5px;
}

#why-us {
  background: #f8fafc;
  padding: 60px 20px;
}

#why-us .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title + Subtitle */
#why-us .section-title {
  color: #0ea5ff;
  font-size: 2rem;
  margin-bottom: 15px;
}

#why-us .lead {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ✅ Proper 4-column layout */
#why-us .glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}
.glass-grid{
  margin-top: 80px;  
}


/* Card design */
#why-us .glass-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 250px;
}

#why-us .glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Icon + heading + text */
#why-us .icon {
  font-size: 2rem;
  color: #0ea5ff;
  display: block;
  margin-bottom: 10px;
}

#why-us h3 {
  color: #0ea5ff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

#why-us p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ✅ Responsive behavior */
@media (max-width: 1024px) {
  #why-us .glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #why-us .glass-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FOOTER SECTION*/


/* ================================
   FINAL PROFESSIONAL FOOTER
================================ */
/* MAIN WHITE TABLE */
.footer-info-table {
    background: #ffffff;
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    border: 1px solid #e2e2e2;
}

/* TWO COLUMNS */
.footer-info-table .info-column {
    width: 48%;
    min-width: 280px;
}

/* HEADINGS */
.footer-info-table h3 {
    color: #075192;
    margin-bottom: 10px;
}

/* TEXT */
.footer-info-table p {
    color: #333;
    margin: 6px 0;
    font-size: 15px;
}

/* MOBILE */
@media(max-width: 768px) {
    .footer-info-table {
        flex-direction: column;
        text-align: left;
    }
    .footer-info-table .info-column {
        width: 100%;
    }
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}


    /* ✅ Social Media Icons */
    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      color: #0ea5ff;
      font-size: 1.3rem;
      margin: 0 10px;
      transition: color 0.3s ease, transform 0.2s;
    }

    .social-icons a:hover {
      color: #38bdf8;
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 15px;
      font-size: 0.9rem;
      color: #94a3b8;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
    }
/* =========================================
   PRODUCTS SECTION
========================================= */

.products-section {
  background: #fff;
  color: #111;
  padding: 100px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

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

.product-content {
  padding: 15px;
}

.product-content h3 {
  font-size: 1.2rem;
  color: #0e4e96;
  margin: 10px 0 5px;
}

.product-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
/* Our products → Logo Green */
.products-title {
    color: #007f4f;     /* Logo Green */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* A selection of ------- → Black */
.products-subtitle {
    color: #000000;     /* Pure Black */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
}
/* ==============================
   University–Industry Project Section
   ============================== */

.project-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 50px auto;
  max-width: 1100px;
}

.project-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-section .lead {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.project-details {
  background: #fff;
  padding: 25px 30px;
  border-left: 5px solid #003366;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-details p {
  margin: 8px 0;
  font-size: 1rem;
  color: #333;
}

.project-outcome,
.project-objectives {
  margin-bottom: 40px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-outcome h3,
.project-objectives h3 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 15px;
  border-bottom: 2px solid #003366;
  display: inline-block;
  padding-bottom: 5px;
}

.project-outcome p,
.project-objectives li {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}

.project-objectives ul {
  list-style: disc;
  margin-left: 25px;
}

/* Product Detail Page Styling */
.product-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

.product-detail img {
  max-width: 400px;     /* limit image width */
  width: 100%;          /* responsive for smaller screens */
  height: auto;         /* keep aspect ratio */
  border-radius: 12px;  /* smooth corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-content {
  flex: 1;
  min-width: 280px;
}

.product-detail-content h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 10px;
}

.product-detail-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
}

.product-detail-content ul {
  margin-bottom: 25px;
}

.product-detail-content li {
  margin: 5px 0;
  color: #333;
}

.product-details {
  margin-top: 20px;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3 {
  color: #079fa0;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #0ea5ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

/* Map */
.map-container {
  margin-top: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}
/* =========================================
   ABOUT PAGE DESIGN
========================================= */
/* =========================================
   ABOUT PAGE - LIGHT THEME
========================================= */

.about-page {
  padding-top: 120px; /* leave space for fixed navbar */
  background-color: #f8f9fc;
  color: #222;
  min-height: 100vh;
  text-align: center;
}

.about-intro {
  max-width: 850px;
  margin: 0 auto 60px;
}

.about-intro h2 {
  font-size: 2.5rem;
  color: #0e4e96;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-intro p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* CARD GRID */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

.glass-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.glass-card h3 {
  color: #0ea5ff;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.glass-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 2rem;
  }
  .glass-card {
    padding: 25px 20px;
  }
  .glass-card p {
    font-size: 0.95rem;
  }
}
/* ===== Compact Footer ===== */
.footer {
  background: #f9f9f9;
  color: #333;
  border-top: 1px solid #e0e0e0;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  padding: 25px 0 10px;
}

.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left h3 {
  color: #007acc;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.footer-left p {
  color: #555;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007acc;
}

.footer-right p {
  margin: 3px 0;
}

.footer-right a {
  color: #007acc;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===================== INDUSTRIES PAGE ===================== */
/* INDUSTRIES WE SERVE SECTION HEADINGS */
.industries-title {
    color:#079fa0;      /* Logo Green */
    font-weight: 700;
    font-size: 2.8rem;   /* Increased size */
    line-height: 1.2;
}



.industries-subtitle {
    color: #000;         /* Black */
    font-size: 1.1rem;
    margin-top: 5px;
}

.industries-section {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #079fa0;
  margin-bottom: 10px;
  font-weight: 600;
}

.lead {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  padding: 0 20px;
}

.industry-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: #007acc;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 122, 204, 0.3);
}

.industry-card .icon {
  font-size: 2.5rem;
  color: #007acc;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.industry-card:hover .icon {
  color: #fff;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 600;
}

.industry-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.industry-card:hover h3,
.industry-card:hover p {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .industries-section {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .lead {
    font-size: 0.95rem;
  }
}
/* ===== header overlap fix (robust) ===== */
:root {
  --nav-height: 80px; /* fallback if JS doesn't run */
}

/* Ensure header sits above content */
header.navbar,
.header, /* in case your header uses .header instead */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Use the nav height variable to push sections down */
.page-section {
  padding-top: calc(var(--nav-height) + 20px) !important; /* 20px extra breathing room */
  padding-bottom: 60px;
}

/* This ensures anchor jumps land below the header */
.page-section .section-title,
.section-title {
  scroll-margin-top: calc(var(--nav-height) + 24px); /* for anchor links */
}

/* If any other specific section is still cut, target it */
#industries,
.industries-section {
  padding-top: calc(var(--nav-height) + 20px) !important;
}

/* small-screen tweak */
@media (max-width: 768px) {
  .page-section {
    padding-top: calc(var(--nav-height) + 14px) !important;
  }
  .section-title { scroll-margin-top: calc(var(--nav-height) + 18px); }
}


/* BLOG SECTION - LIGHT THEME */
.blog-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.blog-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #079fa0;
}

.blog-section .lead {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #475569;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #0ea5ff;
}

.blog-card .blog-date {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 10px;
}

.blog-card strong {
  color: #f59e0b;
}
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #0ea5ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.nav-links {
  display: flex;
  gap: 25px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px; /* height of navbar */
    left: 0;
    right: 0;
    background: #f8fafc;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .nav-links a {
    margin: 0;
    color: #0e4e96;
    font-weight: 600;
  }

  .nav-links.show {
    display: flex;
  }
}

/* =========================================
   STATS / INDUSTRIES / RESOURCES
========================================= */
.stats-section,
.industries-section,
.resources-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.stats-grid,
.industries-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card,
.industry-card,
.resource-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover,
.industry-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-icon,
.industry-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0ea5ff;
}

.stat-card h3,
.industry-card h3,
.resource-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}

.stat-card p,
.industry-card p,
.resource-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .hero-inner h1 {
    font-size: 2.5rem;
  }
  .hero-inner p {
    font-size: 0.95rem;
  }
  nav a {
    font-size: 0.95rem;
    margin-left: 12px;
  }
}

@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  nav a {
    font-size: 0.9rem;
    margin: 5px 10px;
  }
  .product-image img {
    height: 220px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-inner h1 {
    font-size: 1.6rem;
  }
  .hero-inner p {
    font-size: 0.9rem;
  }
  .product-image img {
    height: 180px;
  }
}

/* =========================================
   EXTRA
========================================= */
:target::before {
  content: "";
  display: block;
  height: 100px; /* header height */
  margin-top: -100px;
  visibility: hidden;
}
/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #0b0b0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}
.global-badge {
    background: #00A8CE !important;   /* Full Blue Background */
    border: 2px solid #045f60 !important; /* Dark Green Border */
    color: #fff !important;        /* Dark Green Text */
    
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}



.hero-inner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0ea5ff;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg,#079fa0,#079fa0);
  color: #fff;
}

.btn.secondary {
  border: 2px solid #0ea5ff;
  background: transparent;
  color: #0ea5ff;
}

.btn:hover {
  transform: translateY(-2px);
}

/* HERO CANVAS */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.products-section h2 {
  font-size: 2.5rem;
  color: #079fa0;
  margin-bottom: 10px;
}

.products-section .lead {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
}

/* PRODUCT GRID */
/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e2efff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card .image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 180px; /* fixed height for uniformity */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card .image-container img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,165,255,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

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

.product-card h3 {
  font-size: 1.2rem;
  margin: 15px 15px 5px 15px;
  color: #0e3f84;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 15px 15px 15px;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-card .image-container {
    height: 150px;
  }
  .product-card h3 {
    font-size: 1rem;
  }
  .product-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .product-card .image-container {
    height: 120px;
  }
  .product-card h3 {
    font-size: 0.95rem;
  }
  .product-card p {
    font-size: 0.8rem;
  }
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE CONTAINER & OVERLAY */
.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14,165,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.image-container:hover .overlay {
  opacity: 1;
}

/* PRODUCT TITLE & DESCRIPTION */
.product-card h3 {
  font-size: 1.2rem;
  color: #0e4e96;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 10px 15px;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .hero-inner h1 { font-size: 2rem; }
  .hero-inner p { font-size: 0.95rem; }
  .product-grid { gap: 20px; }
  .image-container img { height: 180px; }
}
/* ===== Industries We Serve ===== */
/* ================================
   INDUSTRIES WE SERVE (FINAL CLEAN)
/* =========================================
   INDUSTRIES SECTION
================================= */

.industries-section {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.industries-section .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #079fa0;
    margin-bottom: 10px;
}

.industries-section .lead {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 40px; /* reduced space */
}

/* GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* bigger card */
    gap: 35px;
    justify-items: center;
}

/* CARD — BIGGER + LESS SPACE */
.industry-card {
    width: 320px !important;       /* Bigger Card */
    height: auto;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
/* Hover */
.industry-card:hover {
    transform: translateY(10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* IMAGE — BIGGER (200px) */
.industry-card .icon img {
    width: 100% !important;        /* FULL card width */
    height: 260px !important;      /* Bigger image */
    object-fit: cover;              /* Proper cropping */
    display: block;
    border-radius: 0;
}


/* Hover zoom */
.industry-card:hover .icon img {
    transform: scale(1.08);
}

/* TITLE */
.industry-title {
    margin-top: 10px;            /* reduced gap */
    font-size: 1.05rem;
    font-weight: 700;
    color: #003d9b;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .industry-card {
        width: 230px !important;
        height: 280px !important;
    }
    .industry-card .icon img {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .industry-card {
        width: 180px !important;
        height: 230px !important;
    }
    .industry-card .icon img {
        width: 120px !important;
        height: 120px !important;
    }
    .industry-title {
        font-size: 0.85rem;
    }
}



/* Optional responsive container and center utility */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

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

/* PRODUCT DETAIL PAGE */
.product-detail {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.product-detail .product-image {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.product-detail .product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-detail .product-image img:hover {
  transform: scale(1.03);
}

.product-detail .product-detail-content {
  max-width: 800px;
  text-align: left;
}

.product-detail .product-detail-content h2 {
  font-size: 2.2rem;
  color: #0e3f84;
  margin-bottom: 20px;
}

.product-detail .product-detail-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-detail .product-detail-content h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #0ea5ff;
}

.product-detail .product-detail-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.product-detail .product-detail-content ul li {
  margin-bottom: 8px;
  color: #444;
}

/* BUTTON */
.product-detail .btn.secondary {
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  color: #0ea5ff;
  border: 2px solid #0ea5ff;
  transition: all 0.2s ease;
}

.product-detail .btn.secondary:hover {
  background: #0ea5ff;
  color: #fff;
}

/* RESPONSIVE */
@media (min-width: 900px) {
  .product-detail {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  .product-detail .product-image {
    flex: 1;
  }
  .product-detail .product-detail-content {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .product-detail {
    padding: 40px 15px;
    gap: 30px;
  }
  .product-detail .product-detail-content h2 {
    font-size: 1.8rem;
  }
  .product-detail .product-detail-content h3 {
    font-size: 1.1rem;
  }
}          

/* ======================================================
   CUSTOM HERO TEXT BLUE + UNDERLINE WHITE  (ADDED)
====================================================== */

/* 🔵 HERO TEXT BLUE */
.hero-section h1,
.hero-section h1 span,
.hero-section h2,
.hero-section p,
.hero-inner h1,
.hero-inner h1 span,
.hero-inner p {
    color: #00a8ff !important;
       /* bright blue */
}
.hero-inner p {
    color: #000000 !important;
}



/* 🔵 HERO BUTTONS TEXT BLUE (secondary button) */
.hero-section .btn.secondary {
    color: #079fa0 !important;
   
}

/* hover */
.hero-section .btn.secondary:hover {
   
    color: #000 !important;
}

/* 🔵 Primary button – keep white text */
.hero-section .btn.primary {
    color: #ffffff !important;
}

/* ⚪ WHITE UNDERLINE FOR LINKS */
.hero-section a {
    color: #00a8ff !important;
    text-decoration: none;
    border-bottom: 2px solid #ffffff !important; /* underline white */
    padding-bottom: 3px;
}

/* Hover Link */
.hero-section a:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff !important; /* keep underline white */
}

/* Why choose us → Logo Green */
.choose-title {
    color: #007f4f;      /* Logo Green */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Excellence in silicone → Black */
.choose-subtitle {
    color: #000000;      /* Pure Black */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
}
s-card {
    background:#ffffff;
    border-radius:12px; 
    padding:30px; 
    flex:1; 
    min-width:300px;
    border:1px solid #e5e5e5;
}

/* FORCE OVERRIDE */
.contact-addresses {
    background:#ffffff !important;
    color:#000 !important;
    padding:60px 20px !important;
}

.address-merge-box {
    max-width:1200px;
    margin:auto;
    background:#fff !important;
    border:1px solid #e5e5e5 !important;
    border-radius:14px;
    padding:40px !important;
    display:flex;
    gap:40px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08) !important;
}

.address-column { width:50%; }

.address-column h3 {
    color:#075192 !important;
}

.address-column p {
    color:#333 !important;
}

.address-column i {
    color:#075192 !important;
}

@media (max-width:768px){
    .address-merge-box { flex-direction:column; }
    .address-column { width:100%; }
}

/* Hero Section Base */
.hero-section {
  background: #ffffff !important;  /* PURE WHITE BG */
  position: relative;
  overflow: hidden;
}

/* Particles behind everything */
#particles-js, 
#dotsCanvas {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Dots canvas overlay */
#particles-js,
#dotsCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Content */
.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 120px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
   margin-top:-30px;
  background: #114fb5;   /* Blue color */
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}


.pill-btn:hover {
  background: #0d3f91;
}

/* Arrow */
.pill-btn span {
  font-size: 18px;
  transition: .3s;
}

.pill-btn:hover span {
  transform: translateX(3px);
}


.gallery-9{
  max-width:1300px;
  margin:40px auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.gallery-9 .card{
  width:100%;
  height:100%;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #ddd;
}

.gallery-9 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Responsive */
@media(max-width:900px){
  .gallery-9{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .gallery-9{
    grid-template-columns:1fr;
  }
}


/* ===== MOBILE LOOK SAME AS INDUSTRY CARDS ===== */
@media (max-width: 768px){

  .cards-row{
    flex-direction:column;
    gap:18px;
  }

  .card{
    width:100%;
    height:250px;
    border-radius:12px;
    overflow:hidden;
    position:relative;
  }

  .card img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /* जर caption टेक्स्ट असेल तर खाली असा दिसेल */
  .card-title{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#ffffff;
    color:#003a7a;
    font-weight:600;
    padding:10px 15px;
    font-size:16px;
  }
}

.core-title{
  max-width:1200px;
  margin:40px auto 8px auto;
  text-align:center;
  font-size:2.5rem;
  font-weight:700;
  color:#079fa0;   /* <-- तुमचा logo green color असेल तर इथे बदलू शकतो */
}

.core-subline{
  max-width:1200px;
  margin:0 auto 25px auto;
  text-align:center;
  color:#000;
  font-size:16px;
  line-height:1.4;
}


.cards-row {
  max-width:1200px;
  margin:40px auto;
  display:flex;
  gap:25px;
  justify-content:space-between;
}

.section-title{
  max-width:1200px;
  margin:40px auto 10px auto;
  text-align:center;
  font-size:28px;
  font-weight:700;
}

.section-subline{
  max-width:1200px;
  margin:-10px auto 45px auto;
  text-align:center;
  color:#000000;
  padding:10px 15px;
  font-size:16px;
  border-radius:6px;
}

.card {
  width:32%;
  height:350px;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #ddd;
  background:#fff;
}

.card img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* ================= ONLY MOBILE FIX (Desktop Safe) ================= */
@media (max-width: 768px){

  .products-section .cards-row{
    width:95%;
    margin:auto;
    flex-direction:column;
    gap:18px;
  }

  .products-section .card{
    width:100%;
    height:170px;
    border-radius:12px;
    overflow:hidden;
  }

  .products-section .card img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }
}




.section-title{
  max-width:1200px;
  margin:40px auto 10px auto;
  text-align:center;
  font-size:28px;
  font-weight:700;
}

.section-subline{
  max-width:1200px;
  margin:-5px auto 25px auto;
  text-align:center;
  color:#000;
  font-size:16px;
}

.cards-row {
  max-width:1200px;
  margin:40px auto;
  display:flex;
  gap:25px;
  justify-content:space-between;
}

.card {
  width:32%;
  height:350px;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #ddd;
  background:#fff;
}

.card img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* ===== ONLY BLOG MOBILE FIX (Desktop Safe) ===== */
/* ===== OUR BLOG MOBILE PERFECT FIX (Desktop SAFE) ===== */
/* ===== BLOG MOBILE FULL IMAGE (NO CUT) ===== */
@media (max-width: 768px){

  .blog-section .cards-row{
    width:95%;
    margin:auto;
    flex-direction:column;
    gap:18px;
  }

  .blog-section .card{
    width:100%;
    height:250px;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
    border:1px solid #ddd;
  }

  .blog-section .card img{
    width:100%;
    height:100%;
    object-fit:contain;    /* 👈 FULL IMAGE – NO CROP */
    object-position:center;
  }
}





.core-row{
  max-width:1200px;
  margin:25px auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.core-card{
  width:24%;
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  overflow:hidden;
  text-align:center;
  padding-bottom:15px;
  transition:0.3s;
}

/* Image */
.core-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

/* Heading */
.core-card h3{
  color:#007b83;
  font-size:18px;
  margin:12px 0 6px 0;
}

/* Text */
.core-card p{
  font-size:14px;
  color:#333;
  padding:0 12px;
  line-height:1.5;
}

/* Hover Effect */
.core-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
@media(max-width:768px){
  .core-row{
    flex-direction:column;
    width:95%;
  }

  .core-card{
    width:100%;
  }
}

.card{
  width:100%;
  height:260px;        /* proper viewing height */
  border-radius:15px;
  overflow:hidden;
}

.card img{
  width:100%;
  height:100%;
  object-fit:cover;     /* proper crop */
  object-position:center;
  display:block;
}

.image-card{
  width:100%;
  aspect-ratio:4/3;      /* 1200x900 ratio maintain */
  border-radius:15px;
  overflow:hidden;
}

/* Image Styling */
.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;       /* fit neat without stretch */
  object-position:center;
  display:block;
}

/* Responsive (Mobile specific tuning) */
@media(max-width:768px){

  .cards-row{
    flex-wrap:wrap !important;
    justify-content:flex-start !important;   /* 👈 LEFT ALIGN */
  }

  .image-card{
    width:100%;
    max-width:none;
  }
}


.cards-row{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:nowrap;    /* ❗ Cards ekach row madhe lock */
}


.image-card{
  width:350px;
  height:260px;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  background:#fff;
  box-shadow:0 4px 20px #0000001a;
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Bottom Label */
.bottom-text{
  position:absolute;
  left:12px;
  bottom:12px;
  background:#ffffff;
  padding:6px 16px;
  font-size:15px;
  font-weight:600;
  color:#0a2f6b;
  border-radius:6px;
  border-bottom:3px solid #0a2f6b;
}


.blog-images{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:25px;
}

.blog-images img{
  width:380px;        /* image chi actual width approx */
  height:380px;        /* auto rakhlay mhanje crop honar nahi */
  border-radius:12px;
  display:block;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


.hero-section{
  position: relative;
  width: 100%;
  min-height: 100vh;
 
}

/* ===== HERO CONTENT SLIGHT LEFT SHIFT (DESKTOP ONLY) ===== */
@media (min-width:1024px){
  .hero-inner{
    transform: translateX(-80px);  /* 👈 evdach left */
  }
}
@media (min-width:1024px){
  .hero-inner{
    transform: translateX(-80px);
  }
}
#particles-js,
#dotsCanvas,
canvas,
#particles-js canvas{
  background: transparent !important;
}

#heroCanvas{
  display:none;
}

.hero-inner{
  position: relative;
  z-index: 3;
}


.hero-stats{
  max-width: 850px;
  margin: 25px auto 0;
  padding: 14px 30px;
  border-radius: 14px;

  background: rgba(255,255,255,0.32);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);

  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:20px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  position:relative;
  z-index:5;
}
.hero-stats{
  background: #fff !important;   /* जास्त visible */
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
}

.hero-stats .stat{
  color:#003b4f !important;     /* Dark text */
  font-weight:700 !important;
}

.hero-stats i{
  color:#007b8f !important;     /* Dark teal icon */
}


.icon-box{
  background: transparent !important; /* circle bg remove */
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* जर image गोल केली असेल तर */
.icon-box img{
  border-radius: 0 !important;   /* make normal shape */
}



/* ====== UNIVERSAL CARD HOVER ====== */
.icon-box,
.core-card,
.image-card,
.glass-card {
  transition: .4s ease-in-out;
}

/* Hover Effect */
.icon-box:hover,
.core-card:hover,
.image-card:hover,
.glass-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Product Image Smooth Hover */
.image-card img{
  transition: .4s;
}
.image-card:hover img{
  transform: scale(1.08);
}

/* Glass Card Extra Shine */
.glass-card:hover{
  background: rgba(255,255,255,0.9);
}

/* Core Strength Cards Hover */
.core-card img{
  transition: .4s;
}
.core-card:hover img{
  transform: scale(1.05);
}

/* Stats Icons Animation */
.icon-box img{
  transition: .4s;
}
.icon-box:hover img{
  transform: scale(1.1);
}


.hero-glass-box{
  width: 95%;
  max-width: 1100px;
  margin: 10px auto 25px;

  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 22px;
  padding: 35px 40px;

  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 30px 50px rgba(0,0,0,0.15);

  text-align:center;
  position: relative;
  z-index: 50;
}



/* Smooth zoom hover for all images */
.gallery-9 img,
.core-card img,
.image-card img,
.blog-images img {
  transition: .4s ease;
  cursor: pointer;
}

/* On Hover Zoom */
.gallery-9 img:hover,
.core-card img:hover,
.image-card img:hover,
.blog-images img:hover {
  transform: scale(1.08);
}


/* ===== Overall Section Gap कमी ===== */
section{
  margin-bottom:40px !important;
}

/* Industries gallery gap कमी */
.gallery-9{
  gap:10px !important;
}

/* Core Strength gap कमी */
.core-row{
  gap:15px !important;
}

/* Product cards gap कमी */
.cards-row{
  gap:18px !important;
}

/* Blog images gap कमी */
.blog-images{
  gap:15px !important;
}

/* Top & Bottom padding कमी */
.page-section,
.products-section,
.blog-section,
.core-strength-section{
  padding-top:40px !important;
  padding-bottom:40px !important;
}

/* Icon round stats मधला spacing कमी */
.icon-box{
  margin-bottom:6px !important;
}


.stats-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:25px;
  text-align:center;
}

/* BIGGER CARD */
.stat-card{
  flex:1;
  min-width:260px;
  background:#fff;
  border-radius:14px;
  padding:35px 20px;
  border:1px solid #e6e6e6;
  transition:.35s;
}

/* BIGGER IMAGE */
.stat-card img{
  height:200px;   /* 120 → 150 (jasta pahije tar 170/180 kar) */
  margin-bottom:18px;
}

/* BIGGER TEXT */
.stat-card h3{
  color:#079fa0;
  font-size:30px;
  font-weight:700;
  margin-bottom:4px;
}

.stat-card p{
  font-size:15px;
  color:#333;
}

/* Hover Effect strong */
.stat-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}

/* WHY CHOOSE US SECTION CENTER FIX */
#why-us{
  text-align:center;
}

/* title & subtitle center */
.why-title,
.why-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

/* CARDS PERFECT CENTER */
.glass-grid{
  display:flex;
  justify-content:center;   /* CENTER */
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
}

/* individual card fix */
.glass-card{
  text-align:center;
  margin:auto;
}

.product-btn-box{
  margin-bottom: 10px !important;
}


#why-us{
  margin-top: 20px !important;
}






/* ================= PREMIUM INDUSTRIES ================= */

.industries-section{
  background:#079fa0;   /* Logo color */
  padding:80px 30px;
  border-radius:28px;
  margin-top:50px;
  box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

/* Title */
.industries-section .section-title{
  color:#ffffff;   /* dark text for contrast */
  font-size:36px;
  font-weight:800;
}

/* Subtitle */
.industries-section .lead{
  color:#ffffff;
  font-size:16px;
}

/* Images */
.gallery-9 img{
  border-radius:22px;
  box-shadow:0 18px 40px rgba(0,0,0,0.5);
  transition:0.4s ease;
}

.gallery-9 img:hover{
  transform:translateY(-6px) scale(1.05);
  box-shadow:0 25px 55px rgba(0,0,0,0.6);
}

/* 📱 MOBILE FIX */
@media(max-width:768px){

  .industries-section{
    background:#079fa0; /* same logo color */
    padding:55px 18px;
    border-radius:18px;
  }

  .industries-section .section-title{
    font-size:28px;
  }

  .industries-section .lead{
    font-size:15px;
    color:#004a55;
  }
}
/* ===== FULL WIDTH BACKGROUND – LAYOUT SAME ===== */

.industries-section{
  position:relative;
  z-index:1;
}

/* Fake full screen background */
.industries-section::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100vw;          /* FULL SCREEN */
  height:100%;
  background:#079fa0;  /* तुझा color */
  z-index:-1;
}
/* ===== MOBILE BACKGROUND FORCE FIX ===== */






/* ========= PRODUCTS FULL WIDTH (DESKTOP + MOBILE) ========= */

.products-section{
  background:#079fa0;   /* requested color */
  padding:80px 30px;
  position:relative;

  width:100vw;
  margin-left:calc(-50vw + 50%);
  margin-right:calc(-50vw + 50%);
}

/* Title */
.products-section .section-title{
  color:#ffffff;   /* white looks best on this color */
  font-size:36px;
  font-weight:800;
}

/* Subline */
.products-section .section-subline{
  color:#e6ffff;
  font-size:16px;
}

/* 📱 MOBILE FIX */
@media(max-width:768px){

  .products-section{
    padding:55px 18px;
  }

  .products-section .section-title{
    font-size:28px;
  }

  .products-section .section-subline{
    font-size:15px;
  }
}




/* ========= BLOG FULL WIDTH BACKGROUND ========= */
/* ===== BLOG GRID FIX ===== */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop = 3 cards */
  gap:20px; /* space कमी */
}

/* CARD SIZE कमी */
.blog-card{
  max-width:100%;
  height:auto;
}

/* Image size कमी */
.blog-card img{
  height:180px;   /* आधी 230px होतं */
  object-fit:contain;
}

/* Tablet */
@media(max-width:992px){
  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-card img{
    height:160px;
  }
}






/* ===== FOOTER FORCE COLOR FIX ===== */

.footer{
  background:#079fa0 !important;
}

/* TEXT FORCE */
.footer-company-text,
.footer-menu a,
.footer-extra a,
.address-block a,
.footer-bottom{
  color:#ffffff !important;
}

/* HEADINGS FORCE */
.footer-menu h3,
.footer-extra h3,
.address-block h4{
  color:#ffffff !important;
}

/* ICONS FORCE */
.footer .icon{
  color:#ffffff !important;
}

/* BUTTON FORCE */
.footer .footer-btn{
  background:#ffffff !important;
  color:#079fa0 !important;
  border:2px solid #ffffff !important;
}

/* HOVER */
.footer-menu a:hover,
.footer-extra a:hover,
.addr-line:hover a{
  color:#e8fefe !important;
}

/* BOTTOM BORDER */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.4) !important;
}
/* ===== FOOTER HOVER TEXT BLACK ===== */

.footer-menu a:hover,
.footer-extra a:hover,
.addr-line:hover a,
.footer-bottom a:hover{
  color:#000000 !important;   /* BLACK on hover */
  text-decoration:underline;
}
/* ===== FORCE BOTH ADDRESS HEADINGS WHITE ===== */

.address-block h4{
  color:#ffffff !important;
}

/* Names (Mr. Rohit / Mr. Abhijit) */
.address-block strong{
  color:#ffffff !important;
}
/* ===== FIX MARKUP INFOSYSTEM VISIBILITY ===== */

.footer-bottom a{
  color:#ffffff !important;   /* Always visible */
  font-weight:600;
  text-decoration:none;
}

/* Hover effect (optional) */
.footer-bottom a:hover{
  color:#000000 !important;   /* hover ला black */
  text-decoration:underline;
}


/* ===== WHY CHOOSE US CARD TEXT COLOR ===== */

.glass-card h3{
  color:#079fa0 !important;
}

/* Icon color (emoji / font icon) */
.glass-card i{
  color:#079fa0 !important;
}



/* ===== FORCE WHY US COLOR – MOBILE ===== */

@media(max-width:768px){

  .glass-card h3{
    color:#079fa0 !important;
  }

  .glass-card i{
    color:#079fa0 !important;
  }
}





/* 🔥 FORCE SHOW STATS SECTION ON MOBILE */
@media (max-width:768px){

  .stats-section{
    display:block !important;
    margin-top:30px !important;
    padding:40px 20px !important;
    position:relative;
    z-index:20;
  }

  /* Remove negative margin */
  .hero-section.hide-content + .stats-section,
  .hero-section.show-third + .stats-section{
    margin-top:30px !important;
  }

}




/* 🔥 HERO TRANSPARENT BACKGROUND */
.hero-section,
.mobile-first-slide-img,
.mobile-second-slide-img,
.mobile-third-slide-img{
  background: transparent !important;
}

/* 🔥 SAME HERO FOR DESKTOP + MOBILE */
.hero-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent !important;
}

.hero-inner{
  max-width:900px;
  width:100%;
  padding:40px 20px;
  text-align:center;
}

/* MOBILE */
@media(max-width:768px){

  .hero-inner h1{
    font-size:26px;
  }

  .eco-text{
    font-size:30px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    width:100%;
  }
}


/* ================= HERO SAME ON MOBILE ================= */
@media(max-width:768px){

  /* FORCE SHOW HERO */
  .hero-section{
    min-height:100vh !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-top:0 !important;
    background:transparent !important;
  }

  .hero-inner{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    padding:40px 20px !important;
    text-align:center !important;
  }

  /* TEXT SIZE */
  .hero-inner h1{
    font-size:26px !important;
  }

  .eco-text{
    font-size:30px !important;
  }

  /* BUTTON STACK */
  .hero-actions{
    flex-direction:column !important;
    gap:14px;
  }

  .hero-actions a{
    width:100%;
  }

  /* STATS */
  .hero-stats{
    position:static !important;
    transform:none !important;
    flex-direction:column !important;
    height:auto !important;
  }

  /* ❌ MOBILE SLIDE SYSTEM बंद */
  .mobile-first-slide-img,
  .mobile-second-slide-img,
  .mobile-third-slide-img{
    display:none !important;
  }

  .hero-section.hide-content,
  .hero-section.show-third{
    all:unset !important;
  }
}


/* ================= STATS NORMAL TEXT ================= */

.stats-section .icon-box{
  width:260px;   /* फक्त image container मोठा */
  height:260px;
}

.stats-section .icon-box img{
  width:100%;    /* image full size */
  height:100%;
  object-fit:contain;
}

/* Number */
.stats-section h3{
  font-size:48px;
  font-weight:500;   /* 👈 normal (not bold) */
  margin-top:12px;
}

/* Text */
.stats-section p{
  font-size:22px;
  font-weight:400;   /* 👈 normal */
  margin-top:6px;
}
/* 📱 MOBILE – STATS ONE BY ONE */

@media(max-width:768px){

  .stats-section > div{
    flex-direction: column;   /* एकाखाली एक */
    align-items: center;
  }

  .stats-section > div > div{
    width:100%;
  }

}



/* 📱 BLOG MOBILE CENTER FIX */

@media(max-width:768px){

  .blog-section{
    text-align:center;
  }

  .blog-images{
    align-items:center;   /* images center */
  }

  .blog-images img{
    margin:0 auto;        /* perfect center */
  }

  .blog-btn-box{
    justify-content:center;
  }
}



/* 📱 PRODUCTS MOBILE CENTER FIX */

@media(max-width:768px){

  .products-section{
    text-align:center;
  }

  .cards-row{
    align-items:center;
    justify-content:center;
  }

  .image-card{
    margin:0 auto;     /* each card center */
  }

  .image-card img{
    display:block;
    margin:0 auto;     /* image center */
  }

  .product-btn-box{
    justify-content:center;
  }
}


/* 📱 CENTER PRODUCT & BLOG BUTTON (MOBILE) */

@media(max-width:768px){

  .product-btn-box,
  .blog-btn-box{
    display:flex !important;
    justify-content:center !important;
    text-align:center;
  }

  .product-btn-box a,
  .blog-btn-box a{
    margin:0 auto;
  }
}




@media(max-width:768px){

/* HERO height कमी */
.hero-section{
  min-height: auto !important;
  padding: 40px 0 30px !important;
}

/* HERO inner spacing कमी */
.hero-inner{
  padding: 20px 16px !important;
}

/* Buttons वर-खाली gap कमी */
.hero-actions{
  margin-top: 15px !important;
}

/* Stats card वर-खाली gap कमी */
.hero-stats{
  margin-top: 20px !important;
  padding: 14px !important;
}

/* HERO नंतर मोठा space remove */
.stats-section{
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

/* Each stat block spacing कमी */
.stats-section > div{
  gap: 25px !important;
}

/* Icon section वर खाली space कमी */
.icon-box{
  margin-bottom: 10px !important;
}

/* Counter text वर gap कमी */
.stats-section h3{
  margin-top: 8px !important;
  margin-bottom: 5px !important;
}

/* Page bottom मोठा gap remove */
body{
  padding-bottom: 0 !important;
}
}
@media(max-width:768px){

/* HERO top space अजून कमी */
.hero-section{
  padding-top: 15px !important;
}

/* Badge वरचा gap कमी */
.global-badge{
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}

/* Heading वरचा gap कमी */
.hero-inner h1{
  margin-top: 8px !important;
}

/* Header खाली space कमी */
header{
  margin-bottom: 0 !important;
}

/* Hero content वर आण */
.hero-inner{
  padding-top: 10px !important;
}
}


/* DESKTOP CENTER BUTTONS */
@media(min-width:769px){

.blog-btn-box,
.product-btn-box{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:30px;
}

.blog-btn-box a,
.product-btn-box a{
  margin:auto;
}
}










/* ==== FORCE HERO STYLE ==== */

.hero-section{
background:#079fa0 !important;
}

.hero-inner,
.hero-inner h1,
.hero-inner p,
.hero-stats,
.hero-stats .stat{
color:#000000 !important;
}

/* BUTTON FIX */
.hero-actions a{
background:#079fa0 !important;
color:#ffffff !important;
border:none !important;
}

/* HERO PARTICLES */
#heroParticles{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:2;
pointer-events:none;
}

.hero-inner{
position:relative;
z-index:5;
}
/* ===== FORCE HERO BUTTON STYLES ===== */

.hero-actions{
display:flex;
gap:18px;
justify-content:center;
margin-top:30px;
}

.hero-actions a{
min-width:200px;
text-align:center;
padding:14px 32px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:all 0.3s ease;
}

/* PRIMARY BUTTON */
.hero-actions a.btn.primary{
background:#079fa0 !important;
color:#fff !important;
}

/* SECONDARY BUTTON */
.hero-actions a.btn.secondary{
  background:#ffffff !important;
  color:#000000 !important;
  border:2px solid #ffffff !important;
  text-decoration:underline;        /* underline */
  text-decoration-color:#000000;    /* black underline */
}


/* HOVER EFFECT */
.hero-actions a:hover{
transform:translateY(-2px);
box-shadow:0 8px 25px rgba(0,0,0,0.2);
}
/* FIX EcoFriendly Edge */

/* FORCE SHOW EcoFriendly Edge */

.hero-section h1{
color:#ffffff !important;
}

.hero-section h1 .eco-text{
color:#4CAF50 !important;
font-weight:700 !important;

display:inline-block !important;
visibility:visible !important;
opacity:1 !important;

font-size:40px !important;
line-height:1.3 !important;
}






/* HERO WHITE DOTS LAYER */

#heroParticles{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:3;        /* full page dots पेक्षा वर */
pointer-events:none;
}

.hero-section{
position:relative;
background:#079fa0;   /* तुझा hero bg */
}

.hero-inner{
position:relative;
z-index:5;  /* dots पेक्षा वर text */
}



.hero-inner{
 
  padding:40px 30px;
  border-radius:20px;
  max-width:900px;
  margin:auto;
  text-align:center;
  
}
.eco-text{
  color:#079fa0;
  font-weight:700;
}

@media(max-width:768px){

body{
  padding-top:90px;   /* mobile header height */
}

.hero-section{
  min-height:calc(100vh - 90px);
  padding-top:10px;
}

.hero-inner{
  margin-top:10px;
}

}
.btn.primary{
  background:#079fa0;
  color:#ffffff;
  border:none;
}







:root {
  --teal: #0F8B8D;
  --blue: #1F5FBF;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --divider: #E6F0FF;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Inter", sans-serif;
  background: #ffffff;
}

.hero {
  padding: 120px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
 
  border-radius: 18px;
  padding: 80px;
 
}

.hero-badge {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 32px;
  position: relative;
}

.hero-badge::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--teal);
  display: block;
  margin-top: 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.15;
  color:#079fa0;
  margin-bottom: 24px;
}

.hero-content h1 span {
  display: block;
  font-size: 36px;
  color:#22C55E ;
  margin-top: 10px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: linear-gradient(180deg, #1F5FBF, #184E9F);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(31,95,191,0.25);
}

.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  background: transparent;
}

.hero-visual{
  width:100%;
  max-width:450px;
  height:320px;        /* Parent height */
  margin:auto;
}

.molecule-placeholder{
  width:100%;
  height:100%;
  border-radius:16px;

  background:url("../images/moli_img.jpeg"); /* FIXED */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  box-shadow:0 10px 25px rgba(0,0,0,0.18);
}




.hero-trust {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--text-dark);
}

.hero-trust .divider {
  width: 1px;
  height: 16px;
  background: var(--divider);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    padding: 60px 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content h1 span {
    font-size: 28px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .divider {
    display: none;
  }
}



.hero-content h1 span{
  display:block;
  font-size:36px;
  margin-top:10px;
}

.hero-content h1 .eco{
  color:#22C55E;   /* EcoFriendly */
}

.hero-content h1 .edge{
  color:#079fa0;   /* Edge */
}


/* Explore Products */
.hero-actions .btn-outline{
  background:#ffffff;
  color:#079fa0;
  border:2px solid #079fa0;
  text-decoration:none;
}

/* Get in Touch */
.hero-actions .btn-primary{
  background:#ffffff !important;
  color:#000000 !important;
  border:2px solid #ffffff !important;
  text-decoration:underline;
}


.hero-trust{
  background:#ffffff;
  padding:18px 32px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  gap:20px;
  box-shadow:0 6px 20px rgba(0,0,0,0.12);
}

.hero-trust span{
  font-size:14px;
  color:#333;
  font-weight:500;
}

.hero-trust .divider{
  width:2px;
  height:18px;
  background:#079fa0;
}


.hero-badge{
  font-size:26px;   /* Desktop size */
  font-weight:700;
}

/* Mobile view */
@media(max-width:768px){
  .hero-badge{
    font-size:20px; /* Mobile size */
  }
}










.glass-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:25px;
}

.glass-card{
  height:220px; /* same size */
  background:#fff;
  border-radius:16px;
  text-align:center;
  padding:25px 15px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.glass-card img{
  width:90px;   /* मोठा logo */
  height:90px;
  margin-bottom:15px;
}

.glass-card h3{
  color: #000 !important; /* force black */
}









.single-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}
.hero-badge {
  display: inline-block;
  position: relative;
  font-size: 36px;   /* text मोठा */
  font-weight: 600;
  color: #008b8b;
}

.hero-badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;      /* underline पातळ */
  background-color: #008b8b;
}
.btn-primary {
  background: transparent !important;
  border: none;
  box-shadow: none;
  color: #008b8b;
  text-decoration: underline; /* underline ठेवायची असेल तर */
}





@media(max-width:768px){

  .hero{
    padding-top:20px !important; /* आधी 80-100 असेल */
    margin-top:0 !important;
  }

  header{
    margin-bottom:0 !important;
  }

  .hero-badge{
    margin-top:10px;
  }

}


@media(max-width:768px){

  .hero-trust{
    margin-top:30px;
    margin-left:auto;
    margin-right:auto;
    max-width:85%;
    text-align:center;

    display:flex;
    flex-direction:column;   /* vertical stack */
    gap:12px;
    align-items:center;
  }

  .hero-trust .divider{
    display:none; /* | hide in mobile */
  }

}




