/* Global Root */

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

:root {
  --primary-blue: #149cea;
  --dark-blue: #0d76b6;
  --deep-blue: #0a5c89;
  --accent-cyan: #00d4ff;
  --navy: #0a1929;
  --dark-navy: #050d18;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--dark-navy);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}


/* Navbar */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(5, 13, 24, 0.95), rgba(10, 25, 41, 0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 156, 234, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 10px 40px rgba(20, 156, 234, 0.15);
}

/* Accent line */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #149cea 20%,
    #00d4ff 50%,
    #149cea 80%,
    transparent
  );
  opacity: 0.6;
}

/* Layout: logo left, menu right */
.nav-container {
  width: 100%;
  max-width: none;      
  margin: 0;           
  padding: 0 40px;     
  display: flex;
  align-items: center;
  justify-content: space-between; 
  height: 75px;
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-image {
  height: 70px;   
  width: auto;
  display: block;
  filter: brightness(1.7);
}

/* Main menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav items & links */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #00d4ff;
}

/* Underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #149cea, #00d4ff);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown arrow */
.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

.nav-item.dropdown.open .dropdown-arrow,
.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu  */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  padding: 8px 0;
  background: rgba(5, 13, 24, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(20, 156, 234, 0.3);
  box-shadow: 0 20px 60px rgba(20, 156, 234, 0.2);
  list-style: none;
  display: block;              
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1100;
}

/* Show dropdown when open or hovered */
.nav-item.dropdown.open .dropdown-menu,
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-link {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  border-left-color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding-left: 22px;
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive  */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }

  .nav-link {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 24px;
    height: 65px;
  }

  .nav-logo-image {
    height: 45px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 13, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom: 1px solid rgba(20, 156, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.mobile-open {
    max-height: calc(100vh - 65px);
    opacity: 1;
    overflow-y: auto;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
  }

  .nav-link::after {
    display: none;
  }

  /* Mobile dropdown: stacked */
  .dropdown-menu {
    position: static;
    margin-top: 4px;
    border-radius: 10px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}

/* Hero Section */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 100px 100px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}

.hero-bg-gradient {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(
    circle,
    rgba(20, 156, 234, 0.25) 0%,
    rgba(20, 156, 234, 0.1) 30%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
  filter: blur(60px);
  z-index: 1;
}

.hero-bg-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
  filter: blur(80px);
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-80px, 60px) scale(1.1);
  }
}

.hero-container {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(20, 156, 234, 0.08);
  border: 1px solid rgba(20, 156, 234, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: 82px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -3px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent-cyan) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

.hero-description {
  font-size: 21px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 52px;
  max-width: 700px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(20, 156, 234, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(20, 156, 234, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  background: rgba(20, 156, 234, 0.1);
  transform: translateY(-3px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Section Layout */

.about-section,
.bits-section,
.sectors-section,
.projects-section,
.partners-section,
.stats-section,
.cta-section,
.calendar-section {
  padding: 160px 100px;
  position: relative;
}

.section-container {
  max-width: 1800px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.section-title {
  font-size: 62px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.section-description {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Services */


.services-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.service-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 450px; 
}

/* Card Content */
.service-image-content {
  position: relative;
  background: #0a1929;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%; 
  overflow: hidden;
  background: linear-gradient(180deg, #0a1929 0%, #050d18 100%);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image.fallback-image {
  object-fit: contain;      
  padding: 24px;            
  background-color: #020617; 
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.service-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
}

.service-overlay-content .service-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.2;
}

.service-overlay-content .service-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.service-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  border: 2px solid;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

/* Scan line effect */
.service-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  transition: top 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Border glow animation */
.service-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  transition: opacity 0.5s ease;
  z-index: 0;
  animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .services-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-image-card {
    height: 400px;
  }
}

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

  .service-image-card {
    height: 350px;
  }

  .service-overlay-content {
    padding: 24px;
  }

  .service-overlay-content .service-title {
    font-size: 22px;
  }

  .service-overlay-content .service-description {
    font-size: 14px;
  }

  .service-number-badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* BITS Section */

.bits-section {
  background: linear-gradient(
    180deg,
    rgba(20, 156, 234, 0.03) 0%,
    transparent 100%
  );
  border-top: 1px solid rgba(20, 156, 234, 0.1);
}

.bits-pie-container {
  max-width: 800px;
  margin: 80px auto 100px;
  text-align: center;
}

.bits-pie-container img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bits-what,
.bits-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 100px;
  align-items: center;
}

.bits-what:last-child,
.bits-why:last-child,
.bits-how:last-child {
  margin-bottom: 0;
}

.bits-what-content h3 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: white;
}

.bits-highlight {
  color: var(--primary-blue);
}

.bits-what-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.bits-features-list {
  display: grid;
  gap: 32px;
}

.bits-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bits-feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(20, 156, 234, 0.3);
  transform: translateX(8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(20, 156, 234, 0.15);
  border: 1px solid rgba(20, 156, 234, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.bits-diagram {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.diagram-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 48px;
  text-align: center;
}

.rotating-circle {
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(20, 156, 234, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-text {
  font-size: 56px;
  font-weight: 900;
  color: rgba(20, 156, 234, 0.3);
  letter-spacing: -2px;
}

.bits-content h3 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--primary-blue);
  letter-spacing: -1px;
}

.bits-content p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {

  .bits-diagram {
    padding: 40px 10px !important;
    min-height: auto !important;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; 
    transform: translateX(-15px);
  }

  .rotating-circle {
    width: 220px !important;
    height: 220px !important;
    border-width: 1px !important; 
  }

  .circle-text {
    font-size: 42px !important;
  }
  
  .bits-section {
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
  }
}

/* BITS HOW LAYOUT */

.bits-how {
  padding: 160px 100px;
  position: relative;
}

.bits-how-container {
  max-width: 1800px;
  margin: 0 auto;
  background: rgba(10, 25, 41, 0.6);
  border: 1px solid rgba(20, 156, 234, 0.2);
  border-radius: 24px;
  padding: 80px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}

/* Header */
.bits-how-header {
  border-bottom: 3px solid #149cea;
  padding-bottom: 40px;
  margin-bottom: 80px;
}

.bits-how-title {
  font-size: 62px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.bits-how-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 400;
}

/* Sections */
.bits-how-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(20, 156, 234, 0.15);
  align-items: center;
}

.bits-how-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Text content */
.bits-how-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bits-how-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: #149cea;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.bits-how-text p {
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

.bits-how-text strong {
  color: #00d4ff;
  font-weight: 700;
}

/* Video container */
.bits-how-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(20, 156, 234, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  aspect-ratio: 16 / 9; 
}

.bits-how-video:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 25px 80px rgba(20, 156, 234, 0.3);
  transform: translateY(-5px);
}

.bits-how-video video {
  width: 100%;
  height: 100%;       
  display: block;
  object-fit: cover;   
}


/* Responsive  */
@media (max-width: 1400px) {
  .bits-how {
    padding: 120px 60px;
  }

  .bits-how-container {
    padding: 60px;
  }

  .bits-how-title {
    font-size: 52px;
  }
}

@media (max-width: 1024px) {
  .bits-how-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bits-how-title {
    font-size: 48px;
  }

  .bits-how-text h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .bits-how {
    padding: 100px 24px;
  }

  .bits-how-container {
    padding: 40px;
  }

  .bits-how-header {
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .bits-how-title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .bits-how-subtitle {
    font-size: 16px;
  }

  .bits-how-section {
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .bits-how-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .bits-how-text p {
    font-size: 16px;
    line-height: 1.8;
  }
}


.bits-video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.bits-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Section */

.stats-section {
  padding: 120px 100px;
  background: linear-gradient(
    135deg,
    rgba(20, 156, 234, 0.05) 0%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle top border */
.stats-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 156, 234, 0.5),
    transparent
  );
}

/* Bottom border */
.stats-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 156, 234, 0.5),
    transparent
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Divider line between items */
.stat-item::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(20, 156, 234, 0.3),
    transparent
  );
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 0px rgba(20, 156, 234, 0));
  animation: subtleGlow 3s ease-in-out infinite;
}

/* Subtle glow pulse  */
@keyframes subtleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(20, 156, 234, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(20, 156, 234, 0.5));
  }
}

/* Stagger the glow animation for each stat */
.stat-item:nth-child(1) .stat-number {
  animation-delay: 0s;
}

.stat-item:nth-child(2) .stat-number {
  animation-delay: 0.75s;
}

.stat-item:nth-child(3) .stat-number {
  animation-delay: 1.5s;
}

.stat-item:nth-child(4) .stat-number {
  animation-delay: 2.25s;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Very subtle hover effect  */
.stat-item:hover .stat-number {
  animation: subtleGlowHover 1.5s ease-in-out infinite;
}

@keyframes subtleGlowHover {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(20, 156, 234, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(20, 156, 234, 0.6));
  }
}

.stat-item:hover .stat-label {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-item:nth-child(2)::after {
    display: block;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 100px 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* Projects Section */

.projects-carousel-wrapper {
  margin-top: 80px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px;
}

.projects-carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}

.projects-carousel-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.projects-carousel-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 10px;
}

.projects-carousel {
  display: flex;
  gap: 40px;
  width: max-content;
}

.project-card {
  width: 500px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(20, 156, 234, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.project-video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.project-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-details {
  padding: 32px;
}

.project-details-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.project-details-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #149cea, #00d4ff);
  transition: width 0.4s ease;
}

.project-details-link:hover::after {
  width: 100%;
}

.project-details h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.project-details p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Sectors section  */

   .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 80px;
  }
  
  .sector-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
  }
  
  .sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(20, 156, 234, 0.3);
    border-color: rgba(20, 156, 234, 0.4);
  }
  
  /* Background Image */
  .sector-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .sector-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transition: transform 0.6s ease;
  }
  
  .sector-card:hover .sector-image {
    transform: scale(1.08);
  }
  
  /* Dark Overlay */
  .sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
  }
  
  /* Title Section */
  .sector-header {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    z-index: 2;
  }
  
  .sector-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
  }
  
  .sector-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #149cea, #00d4ff);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(20, 156, 234, 0.6);
    transition: width 0.4s ease;
  }
  
  .sector-card:hover .sector-accent-line {
    width: 100px;
  }
  
  /* Glass Sliding Panel */
  .sector-details-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    background: linear-gradient(
      180deg, 
      rgba(5, 13, 24, 0.4) 0%,
      rgba(5, 13, 24, 0.95) 40%,
      rgba(5, 13, 24, 0.98) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(20, 156, 234, 0.4);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
  }
  
  .sector-card.hovered .sector-details-panel,
  .sector-card:hover .sector-details-panel {
    transform: translateY(0);   
  }
  
  /* Panel Title */
  .sector-details-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
  }
  
  .sector-details-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #149cea, #00d4ff);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(20, 156, 234, 0.6);
  }
  
  /* Description Text */
  .sector-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 400;
  }
  
  /* Bullet Points List */
  .sector-bullets {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
    display: grid;
    gap: 10px;
  }
  
  .sector-bullets li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
  }
  
  .sector-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
    font-size: 16px;
  }
  
  /* Service Tags */
  .sector-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .service-tag {
    padding: 6px 14px;
    background: rgba(20, 156, 234, 0.15);
    border: 1px solid rgba(20, 156, 234, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .service-tag:hover {
    background: rgba(20, 156, 234, 0.25);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 156, 234, 0.3);
  }
  
  /* View Details Button */
  .sector-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #149cea, #0d76b6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(20, 156, 234, 0.4);
    position: relative;
    overflow: hidden;
  }
  
  .sector-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .sector-btn:hover::before {
    left: 100%;
  }
  
  .sector-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(20, 156, 234, 0.6);
    background: linear-gradient(135deg, #1aa3f5, #1589d1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .sector-card {
      height: 380px;
    }
  
    .sector-header {
      top: 24px;
      left: 24px;
      right: 24px;
    }
  
    .sector-title {
      font-size: 26px;
    }
  
    .sector-details-panel {
      padding: 24px;
    }
  
    .sector-details-title {
      font-size: 20px;
    }
  
    .sector-description,
    .sector-bullets li {
      font-size: 14px;
    }
  }

/* Partners Carousel Section */
.partners-carousel-section {
  padding: 160px 100px;
  background: linear-gradient(
    180deg,
    rgba(20, 156, 234, 0.02) 0%,
    transparent 100%
  );
  border-top: 1px solid rgba(20, 156, 234, 0.1);
  position: relative; 
}

/* 1. Carousel Track */
.infinite-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px; 
}

.carousel-status-outside {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 24px;
  background: rgba(10, 25, 41, 0.6);
  border: 1px solid rgba(20, 156, 234, 0.3);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  position: absolute;       
  bottom: 80px;            
  left: 50%;              
  transform: translateX(-50%); 
  z-index: 5;
  margin: 0;
  top: auto;
  right: auto;
}

/* Gradient Overlays */
.carousel-gradient-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(90deg, rgba(10, 25, 41, 0.95) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.carousel-gradient-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(-90deg, rgba(10, 25, 41, 0.95) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Scrolling Track */
.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.carousel-track.paused {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

/* Individual Partner Cards  */
.partner-carousel-card {
  min-width: 280px; 
  height: 160px;     
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #f5f7fa;  
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.partner-carousel-card:hover {
  background: #ffffff; 
  border-color: rgba(20, 156, 234, 0.6);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(20, 156, 234, 0.3);
}

.partner-carousel-logo {
  max-width: 100%;
  max-height: 90px;  
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;  
  transition: transform 0.3s ease;
}

.partner-carousel-card:hover .partner-carousel-logo {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-carousel-section {
    padding: 100px 24px;
  }

  /* Hide indicator on mobile */
  .carousel-status-outside {
    display: none;
  }

  .carousel-gradient-left,
  .carousel-gradient-right {
    width: 80px;
  }

  .partner-carousel-card {
    min-width: 220px;
    height: 130px;
    padding: 24px;
  }

  .partner-carousel-logo {
    max-height: 70px;
  }

  .carousel-track {
    gap: 32px;
    animation: scroll 30s linear infinite;
  }
}

/* CTA Section */

.cta-section {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 80px;
  background: linear-gradient(
    135deg,
    rgba(20, 156, 234, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  border: 1px solid rgba(20, 156, 234, 0.3);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-cyan),
    var(--primary-blue)
  );
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-box h2 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-box p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn-primary {
  margin: 0 auto;
}

/* Calendar Section */

.calendar-section .calendar-placeholder {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 24px;
  border: 1px dashed rgba(20, 156, 234, 0.4);
  background: rgba(5, 13, 24, 0.7);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */

.footer {
  position: relative;
  padding: 120px 100px 60px;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.8) 0%, #000000 100%);
  border-top: 1px solid rgba(20, 156, 234, 0.15);
  overflow: hidden;
}

/* Animation Background Glow */
.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(20, 156, 234, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: footerFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: footerFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes footerFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -40px) scale(1.1);
  }
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 100px;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease;
}

/* Brand Section */
.footer-brand {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.footer-brand h3 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.footer-brand h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  font-size: 16px;
  max-width: 420px;
  margin-top: 32px;
}

/* Footer Columns */
.footer-column {
  animation: fadeInUp 0.8s ease both;
}

.footer-column:nth-child(2) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.4s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.5s;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-blue);
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
  border-radius: 2px;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 6px 0;
  position: relative;
}

.footer-column a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--primary-blue);
  font-weight: 700;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-column a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Glowing Link Effect */
.footer-column a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  transition: width 0.4s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 60px;
  border-top: 1px solid rgba(20, 156, 234, 0.15);
  text-align: center;
  animation: fadeIn 1s ease 1s both;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue),
    transparent
  );
  box-shadow: 0 0 20px rgba(20, 156, 234, 0.6);
  animation: glowPulse 3s ease infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    width: 100px;
  }
  50% {
    opacity: 1;
    width: 200px;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade-in Scroll Effects */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1400px) {
  .hero h1 {
    font-size: 68px;
  }

  .section-title {
    font-size: 52px;
  }
}

@media (max-width: 1200px) {
  .navbar {
    padding: 20px 60px;
  }

  .services-image-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .stat-item::after {
    display: none;
  }

  .bits-what,
  .bits-why,
  .bits-how {
    grid-template-columns: 1fr;
  }

  .project-card {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .about-section,
  .bits-section,
  .sectors-section,
  .projects-section,
  .partners-section,
  .stats-section,
  .cta-section,
  .calendar-section {
    padding: 100px 24px;
  }

  .services-image-grid,
  .sectors-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    width: 340px;
  }

  .bits-pie-container {
    margin: 60px auto 80px;
  }

  .footer {
    padding: 80px 24px 40px;
  }

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

  .footer-brand h3 {
    font-size: 28px;
  }

  .footer-column h4 {
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding-top: 40px;
  }

  .cta-box {
    padding: 60px 40px;
  }

  .cta-box h2 {
    font-size: 36px;
  }

  .cta-box p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

 /* Calendar */
  .calendar-section {
    overflow-x: hidden; 
    padding: 80px 20px;
  }

  .calendar-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .calendar-layout > div, 
  .calendar-layout > section { 
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  /* Contact Button */
  .cta-box {
    padding: 50px 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-box .btn-primary {
    width: auto;
    max-width: 100%;
    padding: 18px 20px; 
    margin: 0 auto;
    font-size: 14px; 
    display: inline-flex;
    justify-content: center;
  }
}

/* Fallback image */

img[src*="BETAFLIX-fallback"], 
.sector-image-img[src*="BETAFLIX-fallback"],
.service-image[src*="BETAFLIX-fallback"] {
  width: auto !important;
  height: auto !important;
  max-width: 200px !important;
  max-height: 150px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}