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

html, body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #222;
}

a {
  text-decoration: none;
  color: #00b0cc;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #fed200;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
/* Header Styles */
header {
  background: linear-gradient(to right, #555, #00b0cc); /* Grey-to-Blue Gradient */
  color: #fff;
  padding: 1.25rem 0;
  position: fixed; /*relative;*/
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .logo {
  display: flex;
  flex-direction: column
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  display: block;
}

header .logo .company-name {
  font-size: 1.8rem; /* Larger font size for company name */
  font-weight: bold;
  position: relative;
  top: 5px;
}

header ul {
  list-style: none; /* Remove bullets */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

header ul li {
  padding-left: 0; /* Ensure no extra spacing */
}


nav .menu-toggle {
  display: none;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav .menu li {
  position: relative
}

nav .menu li a {
  color: #fff;
  font-size: 1.33rem; /* Larger font size */
  text-decoration: none;
}

nav .menu li a:hover {
  text-decoration: underline;
}

nav .menu li:hover .dropdown {
  display: block
}

/* Dropdown Menu */
nav .menu-item {
  position: relative;
}

nav .menu-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0; /* Align dropdown to the right */
  width: 250px; /* Wider dropdown */
  background: #003f66; /* Blue-grey background */
  color: #fff;
  padding: 0.5rem 0;
  border-radius: 5px;
  z-index: 999;
}

nav .menu-item .dropdown li {
  padding: 0.5rem 1rem;
}

nav .menu-item .dropdown li a {
  color: #fff;
  font-size: 1rem; /* Legible font size */
}

nav .menu-item .dropdown li a:hover {
  color: #00b0cc;
}

/* Dropdown Visibility */
nav .menu-item:hover .dropdown {
  display: block;
}


/* Cart Icon */
.cart-icon svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.cart-icon:hover svg {
  fill: #00b0cc;
}


/* Hero Section */
.hero {
  background: url('../images/BG05_v2.svg') no-repeat center center;
  color: #000;
  background-size: 70%;
  background-position: bottom 0px;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  height: 560px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 200, 200, 0.9);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  color: #0080ac;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-list-items a {
    position: relative;
    z-index: 5;
}

.button-primary {
  background: #00b0cc;
  color: #fff;
}

.button-primary:hover {
  background: #007e99;
}

.button-secondary {
  background: #fed200;
  color: #000;
}

.button-secondary:hover {
  background: #e50106;
}

  
/* Power Section */
.power-section {
  background: url('../images/BG04.svg') no-repeat center center;
  color: #fff;
  background-size: 125%;
  background-position: center 0px;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  height: auto;
}

.power-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.90); 
  z-index: 1; */
  content: none
}

.power-section__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent
}

.power-section__title {
    font-size: 4cqw; /* Reduced from 2.5em */
    color: #2c3e50;
    margin-bottom: 30px; /* Reduced margin for tighter spacing */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.power-section__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5%; /* Was 30px - Adjusted gap for better spacing */
}

.power-section__feature-item {
    width: 20.8%; /* was 250px static - now relative */
    text-align: left; /* Align text to the left for better readability */
}

.power-section__icon {
    width: 44%; /* width and height were 110px, now relative */ 
    margin-bottom: 10px; /* Reduced margin for tighter spacing */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.power-section__feature-title {
    font-size: 2cqw; 
    color: #e50106; /* Red */
    margin-bottom: 2%; /* Reduced margin for tighter spacing */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.power-section__feature-description {
    font-size: 0.95em; /* Slightly reduced font size */
    color: #333333;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Design */
@media (max-width: 760px) 
    .power-section__feature-item {
        width: 220px; /* Further reduce width on medium screens */
    }

    .power-section__icon {
        width: 90px;
        height: 90px;
    }

    .power-section__feature-title {
        font-size: 1.75cqw;
    }

    .power-section__feature-description {
        font-size: 1.5cqw;
    }

}

@media (max-width: 768px) {
    .power-section {
      background: url('../images/BG04_mobile.svg') no-repeat center center !important;
      background-size 60% !important;
      height: 1500px !important;
    }
    
    .power-section h1 {
        font-size: 1.8rem;
        color: #00b0cc;
    }

    .power-section__features {
        flex-direction: column;
        align-items: center;
        gap: 25px; /* Reduced gap for smaller screens */
    }

    .power-section__feature-item {
        width: 100%;
        max-width: 275px !important;
    }
}


/* Cards */
.card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

.card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .card {
    margin-bottom: 1rem;
  }
}

/* Featured Products Section */

.our-products {
  background: #00b0cc99; /*#f9f9f9; /* Light grey background */
  padding: 3rem 1rem;
  text-align: center;
}

.our-products .section-icon {
  display: inline-block;
  margin-bottom: 2rem;
}

.our-products .section-icon img {
  width: 50px;
  height: 50px;
  animation: rotate 3s linear infinite;
}

.our-products .page-heading {
  font-size: 4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}

/* Product List */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.product-list-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-thumb-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-thumb-wrapper img {
  display: block;
  width: 100%; /* Ensure images fit within their container */
  height: auto;
  border-bottom: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.product-thumb-wrapper img:hover {
  transform: scale(1.05); /* Slight zoom-in effect */
}

.product-item-details {
  padding: 1rem;
  text-align: center;
}

.product-item-details h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e50106; /* Branded red color for product titles */
  margin-bottom: 0.5rem;
}

.product-item-details p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.button-view {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #fff;
  background: #00b0cc; /* Primary brand color */
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button-view:hover {
  background: #007e99;
}

/* Responsive Design */
@media (max-width: 768px) {
  .our-products .page-heading {
    font-size: 2.4em;
  }

  .product-item-details h5 {
    font-size: 1rem;
  }

  .product-item-details p {
    font-size: 0.9rem;
  }
}

/* Technology Overview Section */
.technology-overview {
  background: url('../images/SPRINTTRANS.svg') no-repeat center center;
  color: #fff;
  background-size: 112%;
  background-position: bottom 0px;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  height: 550px;
}

.technology-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1; 
}

.technology-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent
}

.technology-overview__title {
    font-size: 2.5em; /* Reduced from 2.5em for better spacing */
    color: #e50106;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.technology-overview__description {
    font-size: 1.2em;
    color: #222222;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.technology-overview__process {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px; /* Fixed width for consistency */
}

.process-step__icon {
    width: 135px;
    height: 135px;
    margin-bottom: 10px;
}

.process-step__label {
    font-size: 1.33em;
    color: #e50106;
    font-weight: bold;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.process-step__connector {
    font-size: 4em;
    color: #00b0cc; /* blue color to match branding */
    margin: 0 10px;
    align-self: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.process-step__connector_down {
    display: none;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .process-step {
        width: 120px;
    }

    .process-step__icon {
        width: 50px;
        height: 50px;
    }

    .process-step__label {
        font-size: 0.95em;
    }

    .process-step__connector {
        font-size: 1.8em;
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .technology-overview {
      background: url('../images/SPRINTTRANS-mobile.svg') no-repeat center center !important;
      background-size: 110% !important;
      background-position: top !important;
      height: 850px;
    }

    .technology-overview h2 {
      font-size: 1.5rem;
     }

    .technology-overview__description {
      font-size: 1rem;
     }

    .technology-overview__process {
        flex-direction: column;
    }

    .process-step__connector {
        display: none; /* Hide connectors on small screens for better readability */
    }

    .process-step__connector_down {
        display: block;
        font-size: 3.5em;
        color: #00b0cc;
        align-self: center;
        line-height: 0.5;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .process-step {
        width: 80%;
        max-width: 200px;
    }

    .process-step__icon {
        width: 50px;
        height: 50px;
    }

    .process-step__label {
        font-size: 1em;
    }
}

/* Custom Services Grid Section */
.custom-services-grid {
  background: url('../images/BG01_01b_ed.svg') no-repeat center center;
  color: #fff;
  background-size: 150%;
  background-position: bottom 0px;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  height: 860px;
  z-index: 0;
}

.custom-services-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(225, 225, 225, 0.76);
  z-index: 1;
}

.custom-services-grid__container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    position: relative;
    z-index: 2;
}

.custom-services-grid__title {
    font-size: 2.2em; /* Slightly larger for emphasis */
    color: #2c3e50; /* Dark blue-gray for readability */
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-services-grid__description {
    font-size: 1em;
    color: #555555; /* Medium gray for text */
    margin-bottom: 50px;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-services-grid__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 Grid Layout */
    background: transparent;
    z-index: 2;
    gap: 40px; /* Space between grid items */
}

.custom-services-grid__item {
    background-color: #f9f9f9; /* Light gray background for contrast */
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
}

.custom-services-grid__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.custom-services-grid__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.custom-services-grid__service-title {
    font-size: 1.4em;
    color: #e50106;  /* on-brand red */
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.custom-services-grid__service-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-services-grid__button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF; /* On-brand blue for buttons */
    color: #ffffff; /* White text for contrast */
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s, transform 0.3s;
}

.custom-services-grid__button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .custom-services-grid {
      background: url('../images/BG01_01b_mobile.svg') no-repeat center center;
      background-size: 160%;
      background-position: bottom;
      height: 1280px;
    }
    .custom-services-grid__title {
        font-size: 2em;
    }

    .custom-services-grid__description {
        font-size: 0.95em;
        font-weight: bold;
        color: #003b8f;
        margin-bottom: 40px;
    }

    .custom-services-grid__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .custom-services-grid__service-title {
        font-size: 1.3em;
    }

    .custom-services-grid__button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .custom-services-grid__grid {
        grid-template-columns: 1fr; /* Single column on small screens */
        gap: 30px;
    }

    .custom-services-grid__item {
        padding: 25px 15px;
    }

    .custom-services-grid__title {
        font-size: 2em;
    }

    .custom-services-grid__description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }

    .custom-services-grid__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .custom-services-grid__service-title {
        font-size: 1.2em;
    }

    .custom-services-grid__button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

.spacer {
  height: 5.5rem
}

.spacer-sm {
  height: 1rem
}

@media(max-width: 768px) {
  .spacer {
    height: 5rem
  }
}

/* Footer */
footer {
  background: #333; /* Dark background */
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
  gap: 2rem;
  margin-bottom: 1.5rem;
}

/* Footer Columns */
.footer-column {
  text-align: left;
}

.footer-column.align-right {
  text-align: right; /* Align the Contact Us and Follow Us sections to the right */
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: bold;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #00b0cc; /* Brand blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fed200; /* Brand yellow on hover */
}

/* Contact Info */
.footer-column address {
  line-height: 1.6;
}

.footer-column address a {
  color: #00b0cc;
  text-decoration: none;
}

.footer-column address a:hover {
  color: #fed200;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end; /* Aligns icons to the right within the column */
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.social-icons a:hover img {
  opacity: 0.7;
}

/* Copyright */
footer .copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
}

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; /* Single column layout for small screens */
    text-align: center;
  }

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

  .footer-column.align-right {
    text-align: center; /* Re-aligns to center on smaller screens */
  }

  .social-icons {
    justify-content: center;
  }

  header .logo .company-name {
    display: none;  /* too large for mobile */
  }
  
  nav .menu {
    display: none;
    flex-direction: column;
    background: #003f66;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    z-index: 999;
  }

  nav .menu.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 15px 1rem 15px;
    z-index: 999;
  }

  nav .menu-item .dropdown {
    position: static; /* Inline dropdown for mobile */
    padding-left: 1rem;
  }

  nav .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hero {
    height: 520px !important;
  }

  .hero h1 {
    font-size: 1.5rem !important;
    color: #0080ac;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 0.9rem !important;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: bold;
  }
}

