/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "roboto", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --light-lavender: #b9b9dc;
  --light-blue: #d6eef6;
  --dark-blue: #041938;
  --text-color: #333;
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(92, 95, 141, 0.37);
  --mobile-nav-bg: rgba(255, 255, 255, 0.9);
  --cta-color: #000916;
  --cta-hover-color: #9dd8df;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(135deg, var(--light-lavender), var(--light-blue));
  background-attachment: fixed;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Effect */
.glassmorphism-card,
.glassmorphism-section,
.glassmorphism-header,
.mobile-nav-overlay {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  box-shadow: var(--glass-shadow);
}

.glassmorphism-header {
  border-radius: 0;
}

/* Header Styles */
.glassmorphism-header {
  padding: 10px 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glassmorphism-header .container-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 700;
}

.logo-text-main {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-blue);
}

.logo-text p {
  font-size: 0.8rem;
  margin: 0;
  color: #666;
}

.header-right {
  display: flex;
  align-items: center;
}

.contact-info {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.contact-info a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--text-color);
}

.contact-info span {
  margin: 0 10px;
  color: #999;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-color);
}

/* Hamburger Menu */
.hamburger-menu {
  font-size: 1.8rem;
  color: var(--dark-blue);
  cursor: pointer;
  display: none;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(1, 65, 97);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  border: none;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.close-btn {
  font-size: 1rem;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  border: none;
  background: transparent;
  align-self: self-end;
}

.close-btn img {
  height: 20px;
  width: 20px;
}

.mobile-nav-links {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.221);
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--text-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  right: 0;
  min-width: 180px;
  background: rgb(227, 227, 227);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  z-index: 2000;
}

.dropdown-menu.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(156, 211, 235, 0.893);
  color: var(--text-color);
  border-radius: 6px;
}

/* Hero Section ==========================================================*/
/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* =========================
   BACKGROUND SLIDES
========================= */

.slide-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide-background.active {
  opacity: 1;
}

/* =========================
   OVERLAY (TEXT VISIBILITY FIX)
========================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: 2;
}

/* =========================
   SLIDER CONTENT
========================= */

.hero-content {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================
   SLIDE
========================= */

.slide-content {
  flex: 0 0 100%;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #1a1a1a;
}

/* =========================
   TEXT STYLES
========================= */

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 650px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */

.cta-button,
.cta-button-2nd {
  background-color: var(--cta-color, #15386c);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: 2;
}
.hero-content-slider-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.slide-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.cta-button,
.cta-button-2nd {
  background: #15386c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.cta-button:hover,
.cta-button-2nd:hover {
  background: #1d6c8e;
  transform: translateY(-2px);
}

.hero-description {
  max-width: 650px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.cta-button:hover,
.cta-button-2nd:hover {
  background-color: var(--cta-hover-color, #1d6c8e);
  transform: translateY(-2px);
}

.cta-button-2nd {
  margin-top: 20px;
  font-size: 1rem;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero-section {
    padding: 10px;
  }

  .hero-content-slider-wrapper {
    height: auto;
    height: 400px;
    border-radius: 16px;
  }

  .slide-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .cta-button,
  .cta-button-2nd {
    width: 100%;
    max-width: 280px;
    padding: 14px 0;
    font-size: 0.95rem;
  }

  /* Stronger overlay for mobile readability */
  .hero-section::before {
    background: rgba(255, 255, 255, 0.75);
  }

  /* Existing layout fixes */
  .why-amplutech-grid {
    flex-direction: column;
  }

  .industry-item {
    width: 100%;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-slider {
    height: auto;
  }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-content-slider-wrapper {
    min-height: 380px;
  }
}

/* Sections===================================================================== */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: rgb(9, 9, 91);
}

/* Why Amplutech */
.why-amplutech-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.feature-card {
  padding: 20px;
  border-radius: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  flex: 1;
}

.feature-card p {
  font-size: 16px;
  font-weight: 500;
}

.feature-icon {
  height: auto;
  margin-bottom: 15px;
  width: 100%;
}

/* Services Slider */
.image-slider {
  width: auto;
  height: 580px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.image-slider img {
  transition: opacity 1s ease-in-out;
  opacity: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.premium-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #00e5ff, #7a5cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fade {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 1;
  }
}

/* Technologies */
.tech-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tech-description {
  text-align: center;
  max-width: 800px;
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.tech-slider-wrapper {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  box-shadow: var(--glass-shadow);
  width: 90vw;
  background-color: #ffffff;
}

.tech-slider-track {
  display: inline-flex;
  animation: slide-left 35s linear infinite;
}

@keyframes slide-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-logo-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 40px;
  width: 60px;
  flex-shrink: 0;
}

.tech-logo-slide img {
  max-width: 70px;
  max-height: 50px;
  object-fit: contain;
}

.tech-logo-slide:hover img {
  filter: none;
  opacity: 1;
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.industry-item {
  width: 28%;
  min-width: 180px;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px 0px;
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
}

.industry-item img {
  height: 100px;
  width: auto;
  max-width: 90%;
}

.industry-item p {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-top: 10px;
}

.industry-btn {
  padding: 5px;
  border-radius: 5px;
  background-color: #555875c8;
  color: whitesmoke;
  margin-top: 10px;
  border: 1px solid rgb(128, 128, 128);
  cursor: pointer;
}

.text-center {
  text-align: center;
  padding: 20px 0;
}

/* Industry Popup */
.industry-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease-in-out;
}

.industry-popup-overlay.active {
  display: flex;
}

.industry-popup-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 750px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: popupScale 0.3s ease-in-out;
}

.industry-popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industry-popup-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-height: 60vh;
  overflow-y: auto;
}

.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

@keyframes popupScale {
  from {
    transform: scale(0.9);
    opacity: 0.8;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Countries Section */
.countries-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  color: var(--dark-blue);
  text-align: center;
}

.countries-overlay {
  background-image: url("../assets/world-map-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
  filter: brightness(1.1) contrast(1.1) saturate(1.3);
}

.countries-section .section-title {
  position: relative;
  z-index: 2;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.country-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 6px;
  padding: 10px;
  width: 160px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.country-card img {
  width: 65px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 12px;
}

.country-card p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #0b1830;
}

/* Partners & Clients */
.partners-clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.partners-clients-grid h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.logos-container img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logos-container img:hover {
  filter: none;
  opacity: 1;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form-section .glassmorphism-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-form-section label {
  margin-bottom: 5px;
  color: var(--dark-blue);
  font-weight: 600;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  color: var(--text-color);
}

/* Footer Styles */

/* Floating Contact Buttons */
.floating-contact-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-button {
  background-color: #25d366;
}

.email-button {
  background-color: var(--dark-blue);
}

.contact-button img {
  height: 50px;
  width: auto;
}

/* SEO Sub Content */
.seo-sub-content {
  margin-bottom: 25px;
  padding: 8px 10px;
  border-left: 5px solid #007bff;
  background-color: rgba(248, 249, 250, 0.9);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.seo-sub-content h3 {
  font-size: 1.35em;
  color: #343a40;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.seo-sub-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .logo-img {
    height: 35px;
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.6rem;
  }

  .glassmorphism-header {
    padding: 10px;
  }

  .dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .industry-item {
    width: 100%;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-text h1 {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------- */
/* ABOUT PAGE STYLES */
/* ------------------------------------------- */

.about-overview p,
.global-presence p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.about-overview strong,
.about-overview b {
  color: #007bff;
}

.mission-vision .container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.mission,
.vision {
  flex: 1;
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  min-width: 300px;
}

.mission h2,
.vision h2 {
  font-size: 1.8em;
  margin-top: 0;
  text-align: left;
  color: var(--dark-blue);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.value-item {
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
  color: #28a745;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.expertise-list li {
  padding: 15px 0;
  border-bottom: 1px dashed rgba(44, 62, 80, 0.2);
  font-size: 1.1em;
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-list b {
  color: #007bff;
}

.cta-section {
  text-align: center;
  padding: 50px 15px;
}

.cta-btn {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

/* ------------------------------------------- */
/* SERVICES PAGE STYLES */
/* ------------------------------------------- */

.intro-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 20px;
  color: #fff;
  background: linear-gradient(
      135deg,
      rgba(0, 123, 255, 0.8),
      rgba(40, 167, 70, 0.8)
    ),
    url("../assets/service-bg.png") center/cover no-repeat;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin-bottom: 40px;
}

.intro-div h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.3em;
  max-width: 850px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h2 {
  font-size: 1.8em;
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 15px;
}

.service-card .read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
}

.services-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px auto;
  max-width: 800px;
  text-align: left;
}

.services-section ul li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
  padding-left: 30px;
  position: relative;
  background-color: white;
  padding: 10px 10px 10px 30px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.services-section ul li::before {
  content: "★";
  color: #ffd700;
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.cta-text {
  margin-top: 50px;
  padding: 30px;
  background-color: #e9f7ff;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15em;
  color: var(--dark-blue);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------- */
/* CONTACT PAGE STYLES */
/* ------------------------------------------- */

.contact-hero {
  padding: 100px 15px 80px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  background: linear-gradient(
      135deg,
      rgba(158, 195, 234, 0.8),
      rgba(155, 209, 168, 0.6)
    ),
    url("../assets/contact.png") center/cover no-repeat;
  border-radius: 10px;
}

.contact-hero h1 {
  font-size: 3.2em;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-weight: 700;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-details h2,
.contact-form h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 25px;
  color: var(--dark-blue);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #333;
}

.contact-list strong {
  color: #007bff;
}

.contact-form form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.map-section iframe {
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

.cta-bottom {
  text-align: center;
  background: #e9f7ff;
  padding: 50px 15px;
  border-radius: 10px;
  margin-top: 40px;
}

/* ------------------------------------------- */
/* INDUSTRIES PAGE STYLES */
/* ------------------------------------------- */

.industry-list,
.why-choose-us {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.industry-list ul,
.why-choose-us ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.industry-list li,
.why-choose-us li {
  font-size: 1.05em;
  padding: 18px;
  background-color: #e9f7ff;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  color: #444;
}

.why-choose-us li {
  border-left: 5px solid #28a745;
  background-color: #eaf8ed;
}

/* Responsive Adjustments for Inner Pages */
@media (max-width: 768px) {
  .mission-vision .container,
  .grid-2 {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .intro-div h1,
  .contact-hero h1 {
    font-size: 2.2em;
  }

  .intro-text,
  .subtitle {
    font-size: 1em;
  }

  .service-card,
  .contact-form form {
    padding: 20px;
  }
}

/* Services ---------------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  padding: 25px;
  text-align: center;
}

.service-card p {
  font-size: 16px;
  font-weight: 500;
}

.service-card h3 {
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.service-card img {
  width: 200px;
}

/* ================================
   FOOTER (Glassmorphism Style)
================================ */
.glassmorphism-footer {
  background: rgba(255, 255, 255, 0.253);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--dark-blue);
  padding: 50px 20px 20px 20px;
  font-family: "Poppins", sans-serif;
}

/* ================================
   FOOTER CONTENT LAYOUT
================================ */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   COMPANY INFO SECTION
================================ */
.footer-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.footer-info p {
  margin: 4px 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
}

.footer-info .social-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-info .social-links a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(10%) sepia(80%) saturate(450%)
    hue-rotate(190deg) brightness(85%) contrast(90%);
}

.footer-info .social-links a:hover img {
  transform: scale(1.15);
  filter: brightness(1.2) saturate(150%);
}

/* ================================
   OFFICE ADDRESS SECTION
================================ */
.footer-address h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-weight: 600;
}

.footer-address p {
  margin: 5px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
}

.footer-address strong {
  color: var(--dark-blue);
}

/* ================================
   LINKS SECTION
================================ */
.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  /* color: var(--dark-blue); */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
  color: rgb(25, 23, 23);
}

.footer-links a:hover {
  /* color: var(--text-color); */
  transform: translateX(4px);
  color: rgb(25, 23, 23);
}

/* ================================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
}

.footer-bottom p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

h4 {
  margin-top: 20px;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .glassmorphism-footer {
    padding: 40px 15px 15px 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-info h3 {
    font-size: 1.3rem;
  }

  .footer-address h4 {
    font-size: 1.1rem;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-info .social-links {
    gap: 12px;
  }

  .footer-info .social-links a img {
    width: 24px;
    height: 24px;
  }
}

/* ================================
   OPTIONAL DARK MODE SUPPORT
================================ */
@media (prefers-color-scheme: dark) {
  .glassmorphism-footer {
    background: rgba(20, 20, 20, 0.35);
    color: #f1f1f1;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-info p,
  .footer-address p,
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-links a {
    color: #070f2b;
  }

  .footer-links a:hover {
    color: #1e5762;
  }

  .footer-info .social-links a img {
    filter: brightness(0) invert(1);
  }
}
