/* ====== Decon Theme ====== */
:root{
  --bg: #0B1F2B;            /* page background */
  --card: #122B3A;          /* cards/sections */
  --card-2: #0E2431;        /* darker card */
  --text: #DDE8EF;          /* body text */
  --heading: #FFFFFF;       /* headings */
  --accent: #71D0FF;        /* cyan accent */
  --accent-2:#9FE870;       /* soft green for outlines */
  --chip: #1B3A4B;          /* badge/bg chips */
}

html, body{
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

.text-body{ color: var(--text); }

/* Navbar */
/* Navbar */
/* Navbar - Updated logo + text */
/* ===== Navbar Styling ===== */
.decon-nav {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.6rem 2rem; /* adds slight spacing top and bottom */
}

.decon-nav .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.decon-nav .logo-img {
  height: 45px;
  width: auto;
  margin-right: 8px;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b1f2b;
  letter-spacing: 0.5px;
}

.decon-nav .navbar-collapse {
  justify-content: flex-end !important; /* pushes nav links to right edge */
}

.decon-nav .nav-link {
  color: #0b1f2b;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  top: 9px; /* lifts links slightly upward */
}

.decon-nav .nav-link:hover,
.decon-nav .nav-link:focus {
  color: #0056b3;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.nav-link.active {
  color: #0077cc;
  font-weight: 600;
}
/* NAVBAR must allow overflow so dropdowns won't be clipped */
.navbar {
  overflow: visible;
  z-index: 1100; /* ensure navbar above other page elements */
}
.navbar,
.dropdown-menu {
  overflow: visible !important;
}

/* ===== DROPDOWN STYLING ===== */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu.services-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: block; /* Changed from none to block */
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.nav-item.dropdown:hover .dropdown-menu.services-dropdown,
.nav-item.dropdown.show .dropdown-menu.services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu.services-dropdown {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

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

/* Submenu styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  min-width: 250px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-submenu:hover > .submenu-menu {
  display: block;
  animation: slideIn 0.2s ease-in-out;
}

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

/* Dropdown items */
.dropdown-item {
  padding: 8px 20px;
  color: #333;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-item:hover, 
.dropdown-item:focus {
  background: #f8f9fa;
  color: #0d6efd;
}

.dropdown-item .bi-chevron-right {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-menu {
    position: static !important;
    border: none;
    box-shadow: none;
    padding-left: 15px;
  }
  
  .dropdown-submenu > .submenu-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
  
  .dropdown-item {
    padding: 8px 10px;
  }
}

.nav-item.dropdown.show .dropdown-menu.services-dropdown {
  opacity: 1;
  pointer-events: auto;
  left: 0;
transform: none;

}

/* FINAL SUBMENU CSS */
.dropdown-submenu {
  position: relative;
}

.submenu-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  min-width: 240px;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  display: none;
  z-index: 3000;
}

.dropdown-submenu:hover > .submenu-menu {
  display: block;
}

@media (max-width: 992px) {
  .submenu-menu {
    left: 0;
    top: 100%;
  }
}


.pt-6{ padding-top: 6.5rem; }

/* ======= HERO SECTION (Full Front Page - Keep Original Design) ======= */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Full screen height */
  overflow: hidden;
  margin-top: 70px; /* below navbar */
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05) saturate(1.05);
}


/* Overlay layer */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Keep your existing white angular box exactly as it was */
.hero-text-box {
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 60px 10px 25px;
  max-width: 560px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  color: #0b1f2b;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text inside hero box */
.hero-text-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1f2b;
  margin-bottom: 6px;
  line-height: 1.1;
}

.hero-text-box p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b1f2b;
  margin: 0;
  line-height: 1.5;
}

/* Optional subtle fade at bottom for smooth transition */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(11,31,43,0), #0b1f2b 100%);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .hero-text-box {
    padding: 25px;
    max-width: 85%;
    background: rgba(255, 255, 255, 0.92);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  }

  .hero-text-box h2 {
    font-size: 1.8rem;
  }

  .hero-text-box p {
    font-size: 1rem;
  }
}


/* ===== ABOUT US SECTION ===== */
#about {
  margin-top: 0;
  padding-top: 4rem;
}

.about-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.section-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Main rectangle box */
.about-box {
  background: #122b3a;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Text Box */
.about-text-box {
  flex: 1 1 55%;
  color: #dde8ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.btn-learn {
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-learn:hover {
  background-color: #5cbfe8;
  color: #052533;
}

/* Image Box */
.about-image-box {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
}

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

  .about-text-box {
    flex: 1 1 100%;
    align-items: center;
  }

  .about-img {
    max-width: 80%;
    margin-top: 1rem;
  }

  .btn-learn {
    align-self: center;
  }
}

/* ===== OUR SERVICES SECTION ===== */
/* ===== OUR SERVICES SECTION ===== */
.services-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.services-section .section-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Service Card */
.service-card {
  background: #122b3a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Placeholder for service images */
.service-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #0e2431;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  margin-bottom: 0.8rem;
}

/* Text */
.service-card h6 {
  color: #dde8ef;
  font-weight: 600;
  font-size: 1rem;
}

/* Button */
.btn-view {
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background-color: #5cbfe8;
  color: #052533;
}


.service-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
  background-color: #0e2431;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}
/* Change this: */
.service-hidden {
    display: none;
}

/* To this: */
.row .col-6.col-md-3.service-hidden {
    display: none !important;
}

/* And update the appear animation to be equally specific */
.row .col-6.col-md-3.service-appear {
    display: block !important;
    opacity: 0;
    transform: translateY(20px);
    animation: serviceFadeIn 0.4s ease forwards;
}

@keyframes serviceFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.service-link:hover {
  text-decoration: none !important;
  color: inherit !important;
}


/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* Responsive layout */
@media (max-width: 768px) {
  .service-card {
    padding: 0.8rem;
  }

  .service-card h6 {
    font-size: 0.95rem;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
  background-color: #0b1f2b; /* same as services */
  color: #dde8ef;
}

.why-section .section-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Card Style */
.why-card {
  background: #122b3a; /* matches service card color */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Image inside cards */
.why-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.why-card:hover .why-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Text */
.why-card h6 {
  color: #dde8ef;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .why-card {
    padding: 0.8rem;
  }

  .why-img {
    height: 150px;
  }

  .why-card h6 {
    font-size: 0.95rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }
}
/* ===== JOIN OUR TEAM SECTION ===== */
.careers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.career-box {
  background: #122b3a;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 700px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* Text Styling */
.career-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
  color: #dde8ef;
}

.career-box .highlight {
  color: #71d0ff;
  font-weight: 600;
}

/* Career Button */
.btn-career {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.btn-career:hover {
  background-color: #5cbfe8;
  color: #031a23;
  transform: scale(1.03);
}

/* Responsive design */
@media (max-width: 768px) {
  .career-box {
    padding: 1.5rem;
  }

  .career-box p {
    font-size: 0.95rem;
  }

  .btn-career {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}
/* ===== BLOG SECTION ===== */
.blogs-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.blog-card {
  background: #122b3a;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

/* Blog Image */
.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid rgba(113, 208, 255, 0.5);
  transition: filter 0.3s ease;
}

.blog-card:hover .blog-img {
  filter: brightness(1.1);
}

/* Blog Content */
.blog-content {
  padding: 1.2rem;
}

.blog-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.blog-text {
  font-size: 0.95rem;
  color: #dde8ef;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Read More Button */
.btn-read {
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read:hover {
  background-color: #5cbfe8;
  color: #031a23;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-img {
    height: 180px;
  }
  .blog-title {
    font-size: 1rem;
  }
  .blog-text {
    font-size: 0.9rem;
  }
}
/* ===== OUR CUSTOMERS SECTION ===== */
.customers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.customers-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

/* Category Headings */
.customer-heading {
  display: inline-block;
  background-color: #1b3a4b;
  color: #71d0ff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 25px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(113, 208, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-heading:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(113, 208, 255, 0.6);
}

/* Logo Section */
.customer-logos img {
  width: 110px;
  height: auto;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.customer-logos img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .customer-logos img {
    width: 90px;
  }
  .customer-heading {
    font-size: 1rem;
  }
}
.fade-in-up.visible {
  animation: fadeInUp 1s ease forwards;
}
/* ===== OUR CUSTOMERS SECTION ===== */
.customers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
  text-align: center;
}

.customers-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

/* Category Heading */
.customer-heading {
  display: inline-block;
  background-color: #1b3a4b;
  color: #71d0ff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 25px;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* White Box for Logos */
.white-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Carousel Container */
.logo-carousel {
  position: relative;
  width: 100%;
}

/* Logo Row (Single Line Scroll) */
.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll-horizontal 25s linear infinite;
  width: max-content;
}

.logo-track img {
  width: 130px;
  height: auto;
  filter: brightness(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Animation for Continuous Scroll */
@keyframes scroll-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 90px;
  }
  .customer-heading {
    font-size: 1rem;
  }
}
/* ===== OUR CUSTOMERS SECTION (Both Boxes Scroll Same Direction) ===== */
.customers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
  text-align: left;
}

.customers-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

/* White curved boxes */
.customer-box {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  margin-bottom: 40px;
  width: 85%;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 5%; /* aligned slightly from left */
}

.customer-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

/* Logo container */
.logo-scroll {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

/* Logo track (logos arranged inline) */
.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scrollLeft 35s linear infinite;
}

.logo-track img {
  height: 65px;
  width: auto;
  filter: grayscale(30%) brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.1);
}

/* Smooth continuous leftward scrolling */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Apply same scroll to both boxes */
.left-scroll .logo-track,
.right-scroll .logo-track {
  animation: scrollLeft 35s linear infinite;
}

/* Pause animation on hover */
.customer-box:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .customers-section .container {
    align-items: center;
  }

  .customer-box {
    width: 95%;
    margin-left: 0;
  }

  .logo-track img {
    height: 50px;
    gap: 40px;
  }
}

/* ===== FOOTER (Himavat-style compact layout) ===== */
.footer-section {
  background:
    linear-gradient(
      rgba(11, 31, 43, 0.65),
      rgba(11, 31, 43, 0.75)
    ),
    url('/narender/deconglobalsolutions/assets/images2/new/footer.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.footer-overlay {
    padding: 35px 0 20px;
}

/* Titles */

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #71d0ff;
    margin-bottom: 8px;
}
/* Text */
.footer-text {
  font-size: 0.9rem;
  color: #e6f1f8;
  line-height: 1.4;
}

.footer-link {
  color: #cfe7f4;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #71d0ff;
  text-decoration: underline;
}

/* Viewer Guides */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* Social Icons */
.social-icons {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #71d0ff;
  color: #0b1f2b;
  transform: translateY(-2px);
}

/* Divider and Copy */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-copy {
  font-size: 0.8rem;
  color: #d6e8f2;
  opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links {
    text-align: center;
  }
}
/* ===== GLOBAL SPACING OPTIMIZATION (No Design Change) ===== */

/* Reduce section top & bottom padding for more compact look */
section {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Reduce margin under section titles */
.section-title {
  margin-bottom: 1.5rem !important;
}

/* Compact the "Our Customers" boxes spacing */
.customer-box {
  margin-bottom: 25px !important;
  padding: 20px 10px !important;
}

/* Reduce space under headings in footer */
.footer-section .row {
  margin-bottom: 10px !important;
}

/* Compact About, Services, Why Choose, Careers, Blogs sections */
.about-box,
.career-box,
.blog-card,
.why-card,
.service-card {
  margin-bottom: 15px !important;
}

/* Compact footer padding overall */
.footer-overlay {
  padding: 25px 0 15px !important;
}

/* Remove large gaps between sections that come from Bootstrap py-5 */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Reduce gap between blog cards and other grid elements */
.row.g-4 {
  --bs-gutter-y: 1.5rem;
  --bs-gutter-x: 1.5rem;
}

/* Compact "View all Services" button area */
#services .text-center.mt-4 {
  margin-top: 1.5rem !important;
}

/* Keep mobile padding proportional */
@media (max-width: 768px) {
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
/* ===== CONTACT HEADER ===== */

.page-banner {
  margin-top: 75px;
  height: 14vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTACT HEADER (MATCH OTHER PAGES) ===== */
/* ===== CONTACT HEADER (MATCH OTHER PAGES) ===== */
.contact-header {
  margin-top: 75px; /* same as page-banner */
  height: 14vh;     /* SAME HEIGHT */
  background: #1A3A4E; /* flat color like others */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.contact-content {
  color: #fff;
  max-width: 700px;
}

.contact-content h1 {
  font-size: 1.6rem; /* was 2.6rem */
  font-weight: 700;
}

.contact-content p {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ===== CONTACT BOX ===== */
.contact-box {
  background: #122b3a;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* ===== INPUTS (DARK THEME) ===== */
.contact-input {
  background-color: #0e2431;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.contact-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-input:focus {
  background-color: #0e2431;
  border-color: #71d0ff;
  box-shadow: none;
  color: #fff;
}

/* ===== BUTTON ===== */
.btn-primary {
  background-color: #71d0ff;
  border: none;
  color: #0b1f2b;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #5cbfe8;
}


.page-banner {
      background: #1A3A4E;
      text-align: center;
      margin-top: 75px;
      height: 14vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .page-banner h1 {
      color: white;
      font-size: 26px;
      font-weight: 700;
      margin: 0;
    }

    /* CONTENT BOX */
    .content-box {
      background: #122b3a;
      border-radius: 12px;
      padding: 35px 40px;
      border: 1px solid rgba(113, 208, 255, 0.25);
      color: #d8e9f6;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      margin-bottom: 40px;
    }

    .content-box h2 {
      color: #71D0FF;
      font-size: 30px;
      margin-bottom: 20px;
    }

    .product-img {
      width: 100%;
      max-height: 320px;
      object-fit: contain;
      border-radius: 14px;
    }

    .para {
      font-size: 18px;
      line-height: 1.6;
      color: #d8e9f6;
    }

    /* SERVICES ICON ROW */
    .service-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px;
      font-size: 18px;
    }
    .service-item i {
      color: #71D0FF;
      font-size: 26px;
      margin-right: 12px;
      margin-top: 4px;
    }

    /* ADVANTAGES */
    .adv-box ul {
      list-style: none;
      padding-left: 0;
    }
    .adv-box li {
      padding: 8px 0;
      font-size: 18px;
      line-height: 1.6;
      color: #d8e9f6;
    }
    .adv-box i {
      color: #71D0FF;
      margin-right: 8px;
      font-size: 20px;
    }


/* -------- Footer (Inner Pages) -------- */
.inner-footer {
    text-align: center;
    color: #dde8ef;
    padding: 12px 0;
    border-top: 1px solid rgba(113, 208, 255, 0.35);
    background-color: rgba(11, 31, 43, 0.95);
    font-size: 0.85rem;
}

/* ===============================
   RESPONSIVE FIXES
   =============================== */
@media (max-width: 768px) {

    .page-banner {
        min-height: 90px;
        padding: 15px;
    }

    .page-banner h1 {
        font-size: 1.4rem;
    }

    .content-box {
        padding: 25px 20px;
    }

    .product-img {
        margin-bottom: 20px;
        max-height: 240px;
    }

    .content-box h2 {
        font-size: 1.35rem;
    }

    .service-item,
    .adv-box li {
        font-size: 0.95rem;
    }
}
