/* ------------------------------------------------------------
   1. VARIABLES & RESET
------------------------------------------------------------ */
:root {
  /* Theme Colors - Dark (Default) */
  --bg-dark: #0b1c2c;
  --bg-card: #152a3c;
  --text-color: #e0e0e0;
  --text-light: #b0b0b0;
  --text-heading: #ffffff;
  --bg-alternate: #0d2338;
  --border-color: rgba(255, 255, 255, 0.1);
  --header-glass: rgba(255, 255, 255, 0.05);
  --dropdown-bg: rgba(21, 42, 60, 0.95);
  --body-bg: #0b1c2c;
  --nav-text: #e0e0e0;

  /* Branding Colors */
  --primary-color: #0191a4;
  --primary-dark: #007a8a;
  --secondary-color: #002d57;

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --transition: all 0.3s ease-in-out;
}

.c-button {
  border-radius: 50px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg);
  overflow-x: hidden;
  transition: var(--theme-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 1rem;
  transition: var(--theme-transition);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------------------------------------
   2. UTILITY CLASSES
------------------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ------------------------------------------------------------
   3. TOP BAR
------------------------------------------------------------ */
.top-bar {
  background-color: transparent;
  padding-top: 15px;
  color: var(--white);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  /* Align social icons to right */
  align-items: center;
}

.top-socials {
  display: flex;
  gap: 15px;
}

.top-socials a {
  /* Force white icons on dark hero background */
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-socials a:hover {
  background: var(--primary-color);
}

/* ------------------------------------------------------------
   4. HEADER & NAVIGATION
------------------------------------------------------------ */
#main-header {
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Absolute top priority */
  padding: 10px 0;
  transition: all 0.4s ease;
}

.header-container {
  /* Glass Effect Refinement - Constant dark style */
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50px;
  /* Pill Shape */
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  margin-top: 10px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 9999;
  /* Ensure container is also on top */
}

.sticky .header-container {
  margin-top: 10px;
  /* Keep margin same as initial */
  border-radius: 50px;
  /* Keep pill shape */
  background: rgba(255, 255, 255, 0.1) !important;
}

#main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Header Right Area */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff !important;
  /* Constant light color for dark header */
  padding: 10px 0;
  display: block;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-color);
}

/* Dropdown Menu */
.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(21, 42, 60, 0.95) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 3px solid var(--primary-color);
  white-space: nowrap;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 10px 0;
  border-radius: 0 0 10px 10px;
  pointer-events: none;
  /* Avoid blocking clicks when hidden */
}

/* Visibility handled via .active class toggled by JS */
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  padding: 12px 20px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 15px;
  color: #e0e0e0 !important;
  /* Constant light color */
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: rgba(1, 145, 164, 0.05);
  color: var(--primary-color);
  padding-left: 25px;
  /* Slide effect */
}

/* Dropdown Hover for Desktop */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.dropdown-menu i {
  width: 20px;
  text-align: center;
  color: var(--primary-color);
}

/* Header CTA */
.header-cta {
  display: block;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 26px;
  /* Slightly larger */
  cursor: pointer;
  color: #ffffff !important;
  /* Force visibility on dark header */
  transition: var(--transition);
}

.mobile-toggle:hover {
  color: var(--primary-color);
}

/* ------------------------------------------------------------
   5. HERO SECTION
------------------------------------------------------------ */
/* Hero & Header Unified Styles */
/* Hero & Header Unified Styles */
.hero-header-wrapper {
  position: relative;
  background-image: url('../images/hero_section_BG.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  z-index: 1001;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay for readability */
  z-index: 1;
  pointer-events: none;
  /* Allow clicks to pass through to text/buttons */
}

.hero-section {
  position: relative;
  padding: 120px 0 80px;
  background: transparent;
  overflow: hidden;
  z-index: 2;
}

.hero-slide .hero-container {
  display: flex !important;
  /* Slick sets display block, we force flex */
  align-items: center;
  gap: 50px;
  padding: 20px 0;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 5;
  user-select: text !important;
  -webkit-user-select: text !important;
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content h4 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff !important;
  /* Force white for dark BG */
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95) !important;
  /* Force light text */
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-media img {
  max-height: 650px;
  /* Increased size */
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  /* Add subtle shadow for depth */
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ------------------------------------------------------------
   7. MOBILE MENU SIDEBAR
------------------------------------------------------------ */
.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgba(11, 28, 44, 0.95);
  /* Constant dark glassy sidebar */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  /* Above everything including header */
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  padding: 40px 30px;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-sidebar.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
}

.close-menu:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-logo {
  margin-bottom: 30px;
  display: block;
  background: transparent !important;
  /* Ensure no white box */
  padding: 0;
  box-shadow: none;
}

.mobile-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.mobile-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}

.mobile-nav-list a {
  display: block;
  padding: 15px 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.mobile-nav-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.mobile-nav-list .has-dropdown>a i {
  display: none;
  /* Hide redundant desktop chevron on mobile */
}

.mobile-nav-list .submenu-toggle {
  position: absolute;
  top: 15%;
  right: 5px;
  /* Moved slightly from the edge */
  transform: translateY(-50%);
  width: 38px;
  /* Slightly smaller and more elegant */
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 10;
  transition: var(--transition);
}

.mobile-nav-list .submenu-toggle i {
  font-size: 14px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.mobile-nav-list .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(11, 28, 44, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  z-index: 100;
  border-radius: 0 0 8px 8px;

  /* Premium Animation State (Hidden) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
  pointer-events: none;
  /* CRITICAL: Prevent blocking other menu items */
}

.mobile-nav-list .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-list .dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.no-scroll {
  overflow: hidden;
}

/* ------------------------------------------------------------
   8. SERVICES SECTION
------------------------------------------------------------ */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-alternate);
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-header h4 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(1, 145, 164, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

.service-card {
  background: var(--bg-card);
  padding: 120px 30px 40px;
  /* Increased top padding for icon */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  transform: scale(0.8);
}

.service-card:hover::before {
  opacity: 0.05;
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.icon-box {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: var(--bg-alternate);
  color: var(--primary-color);
  font-size: 40px;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  left: 30px;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .icon-box {
  background: var(--primary-color);
  color: white;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(1, 145, 164, 0.4);
}

.service-card h3,
.service-card p,
.service-card .service-link {
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
  transform: translateY(-5px);
  opacity: 1;
  visibility: visible;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-link {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--primary-color);
  gap: 12px;
  /* slide arrow */
}

/* ------------------------------------------------------------
   9. ABOUT SECTION
------------------------------------------------------------ */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Counter Boxes Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  display: block;
}

.stat-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-box:hover .stat-text {
  color: rgba(255, 255, 255, 0.8);
}

.image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 140px;
}

.experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 600;
}

.about-content h4 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
  background: rgba(1, 145, 164, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 16px;
}

.about-features {
  margin-bottom: 35px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-color);
}

.about-features i {
  color: var(--primary-color);
}

/* ------------------------------------------------------------
   10. WORKS / PORTFOLIO SECTION
------------------------------------------------------------ */
.works-section {
  padding: 100px 0;
  background-color: var(--bg-alternate);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: var(--bg-card);
  transition: var(--transition);
}

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

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

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

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 145, 164, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.work-card:hover .work-overlay {
  opacity: 1;
  visibility: visible;
}

.view-project {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.view-project:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.work-info {
  padding: 20px;
}

.work-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.work-info span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

/* ------------------------------------------------------------
   11. REVIEWS / TESTIMONIALS SECTION
------------------------------------------------------------ */
.review-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.review-slider {
  max-width: 1000px;
  margin: 0 auto;
}

/* Ensure equal height for flex items in slick */
.review-slider .slick-track {
  display: flex !important;
}

.review-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
  justify-content: center;
}

.review-slider .slick-slide>div {
  display: flex;
  width: 100%;
}

.review-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--theme-transition);
  height: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.client-quote i {
  font-size: 40px;
  color: rgba(1, 145, 164, 0.2);
  margin-bottom: 20px;
  display: block;
}

.client-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 30px;
  flex-grow: 1;
  /* Push client-info to the bottom */
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  border: 3px solid var(--primary-color);
}

.client-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-heading);
  transition: var(--theme-transition);
}

.client-info span {
  font-size: 14px;
  color: var(--text-light);
}

/* Slick Dots Custom for Review */
.review-section .slick-dots li button:before {
  font-size: 12px;
  color: var(--primary-color);
}

/* ------------------------------------------------------------
   12. TEAMS SECTION
------------------------------------------------------------ */
.teams-section {
  padding: 100px 0;
  background-color: var(--bg-alternate);
}

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

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-socials {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(21, 42, 60, 0.95);
  /* Dark background for socials */
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: var(--transition);
}

.team-card:hover .team-socials {
  bottom: 0;
}

.team-socials a {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

/* ------------------------------------------------------------
   14. PROJECT GRID LAYOUT (Replaces Slider)
------------------------------------------------------------ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.project-item.hidden {
  display: none;
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.load-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  border: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 14px;
  transition: var(--transition);
}

.load-more-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.team-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info span {
  color: var(--text-light);
  font-size: 14px;
}

/* ------------------------------------------------------------
   13. CONTACT SECTION
------------------------------------------------------------ */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: var(--bg-card);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: var(--theme-transition);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(1, 145, 164, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.info-text h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-heading);
  transition: var(--theme-transition);
}

.info-text p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-family: inherit;
  font-size: 15px;
  color: #000;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 145, 164, 0.1);
}

.contact-form button {
  cursor: pointer;
  border: none;
}

/* ------------------------------------------------------------
   14. FOOTER
------------------------------------------------------------ */
.main-footer {
  background-color: var(--bg-alternate);
  /* Deep Navy Background */
  color: var(--text-color);
  padding-top: 80px;
  transition: var(--theme-transition);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  /* Consistent logo height */
  /* Removed filter manually to allow SVG colors to shine */
}

.footer-col h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary-color);
}

.newsletter-form {
  position: relative;
  margin-top: 20px;
}

.newsletter-form input {
  width: 100%;
  padding: 15px;
  padding-right: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 5px;
}

.newsletter-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--white);
  color: var(--primary-color);
}

.footer-bottom {
  background-color: var(--bg-dark);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
}

/* ------------------------------------------------------------
   INNER PAGE STYLES (Services)
------------------------------------------------------------ */
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(rgba(11, 28, 44, 0.8), rgba(11, 28, 44, 0.8)),
    url('../assets/images/hero_section_BG.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: #fff;
}

.breadcrumb i {
  font-size: 10px;
  opacity: 0.7;
}

.service-detail-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.detail-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Branded Glass Boxes - Stacked */
.yellow-glass-box,
.red-glass-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.yellow-glass-box {
  border-left: 1px solid rgba(1, 145, 164, 0.3);
  box-shadow: inset 0 0 20px rgba(1, 145, 164, 0.05);
}

.red-glass-box {
  border-right: 1px solid rgba(1, 145, 164, 0.3);
  box-shadow: inset 0 0 20px rgba(1, 145, 164, 0.05);
}

/* Vertical Accent Bars (matching reference image) */
.yellow-glass-box::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 3px;
  height: 120px;
  background: var(--primary-dark);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 20px rgba(0, 122, 138, 0.4);
}

.red-glass-box::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 0;
  width: 3px;
  height: 120px;
  background: var(--primary-color);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 0 20px rgba(1, 145, 164, 0.4);
}

.detail-content h4 {
  color: var(--primary-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}

.detail-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.detail-content p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-list li {
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 18px;
}


.feature-list.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .feature-list.feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Logo Accent for Buttons */
.btn-primary,
.btn-visit {
  background: var(--primary-color) !important;
  color: #fff !important;
  border: none;
}

.btn-primary:hover,
.btn-visit:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(1, 145, 164, 0.3);
}

.service-slider-wrapper {
  width: 100%;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  height: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.card-image-box {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.tech-tag {
  background: rgba(1, 145, 164, 0.1);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(1, 145, 164, 0.2);
}

.purpose-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-visit {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  align-self: flex-start;
}

.service-feature-slider .slick-dots {
  bottom: -40px;
}

.service-feature-slider .slick-dots li button:before {
  color: var(--primary-color);
  opacity: 0.25;
}

.service-feature-slider .slick-dots li.slick-active button:before {
  color: var(--primary-color);
  opacity: 1;
}

/* ------------------------------------------------------------
   10. SCROLL TO TOP BUTTON
------------------------------------------------------------ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(145, 1, 164, 0.4);
}

/* ------------------------------------------------------------
   11. WHATSAPP CHAT BUTTON
------------------------------------------------------------ */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
}

.whatsapp-chat {
  width: 100%;
  height: 100%;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}

.whatsapp-chat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  background-color: #20BA5A;
}

.close-chat {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #ff4d4d;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  border: 2px solid #fff;
}

.whatsapp-container:hover .close-chat {
  opacity: 1;
  visibility: visible;
}

.close-chat:hover {
  background: #ff0000;
  transform: scale(1.1);
}

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

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ------------------------------------------------------------
   12. SOCIAL SIDEBAR
------------------------------------------------------------ */
.social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 5px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.social-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-sidebar ul li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.social-sidebar ul li a {
  color: #fff;
  font-size: 18px;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-sidebar ul li:hover {
  transform: translateX(-5px);
}

.social-sidebar ul li i {
  color: #fff;
  transition: all 0.3s ease;
}

/* Colors specifically on hover */
.social-sidebar ul li.copy-link:hover {
  background: #6c757d;
}

.social-sidebar ul li.facebook-share:hover {
  background: #1877F2;
}

.social-sidebar ul li.instagram-share:hover {
  background: #E4405F;
}

.social-sidebar ul li.twitter-share:hover {
  background: #000000;
}

.social-sidebar ul li.linkedin-share:hover {
  background: #0A66C2;
}

.social-sidebar ul li.tiktok-share:hover {
  background: #000000;
}

.social-sidebar ul li.whatsapp-share:hover {
  background: #25D366;
}

/* Tooltip on hover */
.social-sidebar ul li::after {
  content: attr(title);
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.social-sidebar ul li:hover::after {
  opacity: 1;
  visibility: visible;
  right: 60px;
}

/* ------------------------------------------------------------
   13. COPY NOTIFICATION
------------------------------------------------------------ */
.copy-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(200%);
  /* Start hidden off-screen */
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.copy-notification.show {
  transform: translateX(0);
  /* Slide in */
}

.copy-notification i {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
  border-radius: 50%;
  font-size: 12px;
}

/* ------------------------------------------------------------
   17. REVIEW GRID LAYOUT
------------------------------------------------------------ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

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

.review-slider {
  position: relative;
  padding: 0 10px;
}

.review-slider .review-card {
  margin: 15px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-arrow i {
  font-size: 24px;
}

.slide-arrow:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(1, 145, 164, 0.4);
  transform: translateY(-50%) scale(1.2);
}

.slick-prev.slide-arrow {
  left: -20px;
}

.slick-next.slide-arrow {
  right: -20px;
}

@media (max-width: 1400px) {
  .slick-prev.slide-arrow {
    left: 0;
  }

  .slick-next.slide-arrow {
    right: 0;
  }
}

@media (max-width: 1024px) {
  .slide-arrow {
    display: none !important;
  }
}