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

body {
  line-height: 1.6;
  background-color: #f4f6f8;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

/* ---------- TYPOGRAPHY ---------- */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.2;
  color: #023e8a;
}

h2 {
  color: #023e8a;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.7rem);
  line-height: 1.2;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  color: #333;
}

a {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.form {
  background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 2rem 0rem 2rem 0rem;
}

/* ---------- HEADER ---------- */
header {
  background-color: #1e4e7a; /* deep blue */
  color: white;
  padding: 1rem 0;
  position: fixed;
  z-index: 9999;
  width: 100%;
}

.header-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0rem 5rem;
  display: flex;
  align-items: center;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-button {
  text-align: center;
  display: inline-block;
  background-color: #1eaace;   /* your deep blue */
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 8px;
  border-color: #ffffff;
  text-decoration: none;
  border-width: 1rem;
  border: 2px solid #1eaace;
}

.contact-button:hover {
  background-color: #1e4e7a;  /* lighter blue hover */
}

.header-phone {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.header-phone i {
  font-size: 0.9rem;
}

.header-phone:hover {
  color: #1eaace;
}

.header a {
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
}


/* ---------- LOGO ---------- */
.logo {
  flex-shrink: 0;             /* prevents shrinking in flex layouts */
  margin-right: 1rem;         /* spacing from nav or content */
}

/* Logo image */
.logo-img {
  display: block;             /* removes inline gaps */
  max-width: 130px;           /* scale logo to fit header */
                 /* maintain aspect ratio */
}

/* ---------- NAVIGATION ---------- */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  transition: background 0.3s;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
}

nav ul li a:hover {
  color: #1eaace;
}

/* ---------- DROPDOWN ---------- */

/* Dropdown container */
nav ul li .dropdown-menu {
  display: none;                  /* hidden by default */
  position: absolute;
  top: 100%;                      /* right below parent <li> */
  background-color: #1e4e7a;
  z-index: 999;
  border-radius: 8px;
  padding-bottom: 0.5rem;
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown items */

.dropdown-menu li a,
.dropdown-toggle {
  display: block;
  padding: 0.5rem 1rem; 
  text-align: left;
  white-space: nowrap;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
}

/* Hover effect */
.dropdown-menu li a:hover,
.dropdown-toggle:hover {
  color: #1eaace;
}

/* Dropdown arrow (still appears for "Services") */
li.dropdown > .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid white;
}


/* ---------- MOBILE MENU ---------- */
@media (max-width: 768px) {
  
  .contact-button {
    font-size: clamp(0.8rem, 1.1vw, 1.125rem);
    padding: 0.65rem;
    margin-right: 2rem;
  }
  

	/* logo */
	.logo-img {
    max-width: 120px;         /* smaller logo on mobile */
  }

  .header-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0rem 2rem;
    display: flex;
    align-items: center;
}
  

  /* Hamburger icon */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 200;
	
  }

  .header-actions {
    gap: 0.6rem;
  }

  .about-button {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
  }

  /* Mobile nav */
  nav ul.nav-links {
    display: none; /* hidden initially */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1e4e7a;
    padding-left: 1rem;   /* shift everything to the right */
    padding-right: 0;    /* optional */
    z-index: 100;
    font-size: 1.5rem;
    padding-top: 2rem;
  }

  /* Show nav when hamburger clicked */
  nav ul.nav-links.show {
    display: flex;
	align-items: flex-start;
  height: 100vh;
  width: 100vw;
  gap: 1rem;
  }
  
  nav ul.nav-links li .dropdown-toggle {
   /*  cursor: default;       show default cursor instead of pointer */
   /* pointer-events: none;   disable click */
    color: white;          /* keep same text color */
   /* font-weight: bold;      optional, emphasize Services */
    display: block;
    padding: 0.75rem 1rem;
    text-align: left;
}

  /* Main links on mobile */
  nav ul.nav-links li a,
  nav ul.nav-links li .dropdown-toggle {
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: left;
  }

  /* Mobile dropdown items */
  nav ul li .dropdown-menu {
    display: flex; /* always visible */
    flex-direction: column;
    position: static; /* so it pushes items below */
	align-items: flex-start;
	margin-bottom: 0rem;
	margin-left: 1.2rem;
    font-size: 1.3rem;
  }

  .dropdown-menu li a {
    padding-left: 2.5rem; /* indent submenu */
  }
}



/* ---------- IMAGES FOR HERO SECTIONS ---------*/

.page-backup .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/7.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-security .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/1.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-consultancy .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/5.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-support .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/2.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-microsoft365 .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/6.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-network .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/4.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-trainings .service1-hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/9.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.page-pricing .hero {
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/3.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}




/* ---------- HERO SECTION ---------- */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 9rem 5rem 2rem 5rem;
  flex-wrap: wrap;
  min-height: 100vh;
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/main.png");
  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
}

.hero-content {
  flex: 1 1 30%;
  padding-right: 2rem;
}

.hero-content h1 {
  color: #023e8a;
  margin-bottom: 3rem;
  max-width: 600px;
  }

.hero-content p {
  color: #333;
  max-width: 600px;
  line-height: 1.7;
}

.hero-btn {
  margin-top: 3rem;
  text-align: center;
  display: inline-block;
  background-color: #1e4e7a;   /* your deep blue */
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: #1eaace;  /* lighter blue hover */
}

/*.hero-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-image img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
*/

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: left;
    padding: 8rem 2rem 2rem 2rem;

   background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 40%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/2.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
  }

  .hero-content {
    padding: 0;
    margin-bottom: 1.5rem;
  }


  /*.hero-content h1 {
	margin-top: 30%;
  }*/
  
  /*.hero-content p {
  margin-bottom: 20rem;
  }*/
}


/* ---------- WWB SECTION ---------- */

.wwb {
  display:flex;
background-color: #f4f6f8;
  text-align: left;	
  padding: 5rem 5rem 2rem 5rem;
  justify-content: center;
}

.wwb-container {
	
  margin: 0 auto;
	
}

.wwb h2 {
  color: #1e4e7a;
  margin-bottom: 2rem;
  text-align: center;
}

.wwb-box h3 {
  color: #1e4e7a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.wwb-box p {
  color: #333;
}

.wwb-box {
  flex: 1 1 300px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.wwb-items {
  display: grid;
  justify-content: left;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  
  .wwb {
    padding: 5rem 2rem 2rem 2rem;
  }
  
  .wwb-items {
    flex-direction: column;
    align-items: center;
  }

  .wwb-box {
    width: 100%;
    text-align: center;
	
  }

  .wwb-box h3 {
    text-align: center;
  }
  
  .wwb-box p {
    text-align: justify;
    line-height: 1.3;
  }
}

/* ---------- ADVANTAGES SECTION ---------- */

.advantages {
  display:flex;
background-color: #f4f6f8;
  text-align: left;	
  padding: 5rem 5rem 2rem 5rem;
  justify-content: center;
}

.advantages h2 {
  color: #1e4e7a;
  margin-bottom: 2rem;
  text-align: center;
}

.advantage-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-advantages .advantage-items {
  flex-direction: column;
  gap: 2.5rem;
}

.pricing-advantages .pricing-group {
  width: 100%;
  background: #eef3f7;
  border: 1px solid rgba(30, 78, 122, 0.12);
  border-radius: 16px;
  padding: 2rem 8rem;
}

.pricing-advantages .group-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-advantages .group-title {
  color: #1e4e7a;
  margin-bottom: 0.5rem;
}

.pricing-advantages .group-subtitle {
  margin: 0 auto;
  max-width: 700px;
}

.pricing-advantages .group-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}


.advantage-box {
  flex: 1 1 300px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.advantage-box h3 {
  color: #1e4e7a;
  margin-bottom: 1.5rem;
}

.advantage-box p {
  color: #333;
}


.srvcover{
display:flex;
background-color: #f4f6f8;
  text-align: left;	
  padding: 5rem 5rem 5rem 5rem;
  justify-content: center;
  line-height: 1.7;
}

.srvcover h2 {
  margin-bottom: 2rem;
}

.services{
    display: flex;
    background-color: #f4f6f8;
    text-align: left;
    padding: 5rem 5rem 2rem 5rem;
    /*justify-content: center;*/
    line-height: 1.7;
  }

.services h2 {
margin-bottom: 2rem;
text-align: center;
}

.services-inner {
  width: 100%;
}

.services-header {
  margin-bottom: 2rem;
}

.services-header p {
  max-width: 720px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(30, 78, 122, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.service-front {
  padding: 1.5rem;
}

.service-title {
  margin: 1rem 1rem 2rem 1rem;
  color: #1e4e7a;
  font-size: clamp(1.4rem, 1.6vw, 1.5rem);
  text-align: center;
}

.service-subtitle {
  color: #333;
  font-size: clamp(1.1rem, 1.25vw, 1.15rem);
  text-align: center;
}

.service-overlay {
  position: absolute;
  inset: -1px;
  background: linear-gradient(140deg, #1e4e7a 0%, #1eaace 100%);
  color: #ffffff;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.service-overlay p {
  color: #ffffff;
  font-size: clamp(1.2rem, 1.25vw, 1.15rem);
  text-align: justify;
}

.service-card:hover .service-overlay,
.service-card:focus-visible .service-overlay {
  transform: translateX(0);
}

.service-card:focus-visible {
  outline: 2px solid #1eaace;
  outline-offset: 4px;
}


/* Responsive layout */
@media (max-width: 768px) {

.advantages {
  padding: 5rem 2rem 2rem 2rem;
}

  .advantage-items {
    flex-direction: column;
    align-items: center;
  }

  .pricing-advantages .pricing-group {
    padding: 1.5rem;
  }

  .pricing-advantages .group-items {
    flex-direction: column;
    align-items: center;
  }

  .pricing-advantages .pricing-group.extras .group-items {
    grid-template-columns: 1fr;
  }

  .advantage-box {
    width: 100%;
    text-align: justify;
  }

  .advantage-box h3 {
    text-align: center;
  }

  .srvcover{
    padding: 5rem 2rem 2rem 2rem;
  }

  .services{
    padding: 5rem 2rem 2rem 2rem;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-overlay {
    position: static;
    transform: none;
  }

  .service-title {
    text-align: center;
    margin-bottom: 0;
  }

  .service-subtitle {
    display: none;
  }



}


/* ---------- FOOTER SECTION ---------- */

/* Use the same selector as your HTML:
   <footer class="site-footer"> ... */
.site-footer {
  background-color: #1e4e7a;
  color: #ffffff;
  font-family: 'Josefin Sans', Arial, sans-serif;
  padding: 2rem 7rem 1rem; /* outer padding handled by inner wrappers */
}

/* Full-width wrapper */
.footer-container {
  width: 100%;
}

/* Desktop: content area aligned to site width */
.footer-centered {
  max-width: 1920px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;

  text-align: left;
}

/* Left block */
.footer-left {
  flex: 0 0 auto;
}

.logo2-img {
  display: block;             /* removes inline gaps */
  max-width: 130px;           /* scale logo to fit header */
  margin-left: -5px;
  margin-bottom: 1rem;
                 /* maintain aspect ratio */
}

.ftaddress {  
margin-top: 1rem;
}



/* Right columns */
.footer-right {
  display: flex;
  gap: 7rem;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Typography / links */


.fa-phone {
  color: #ffffff;
  margin-right: 6px;
}

.footer-phone a {
  color: #ffffff;
  text-decoration: none;
}

.footer-phone a:hover {
  text-decoration: underline;
  color: #1eaace;
}

.footer-email {
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-email i {
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-email a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-email a:hover {
  text-decoration: underline;
  color: #1eaace;
}

/* Column nav */
.footer-column h4 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-linkedin {
  color: #ffffff; 
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-linkedin i {
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-linkedin a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-linkedin a:hover {
  text-decoration: underline;
  color: #1eaace;
}

.footer-column .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-column .footer-nav li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column .footer-nav li a:hover {
  color: #1eaace;
}

/* Bottom bar: aligned to the same site width on desktop */
.footer-bottom {
  width: 100%;
  margin: 1.5rem auto 0;
  padding: 1rem 0rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.footer-bottom p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
color: #ffffff;
}

/* ---------- RESPONSIVE (MOBILE) ---------- */
@media (max-width: 768px) {
  /* Make the top content a centered group */
  .footer-centered {
    max-width: 420px;
    margin: 0 auto;
    /*padding: 0 3rem;*/
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start; /* keep text left-aligned */
  }


  /* Keep columns side-by-side (as requested earlier), with 2rem gap */
  .footer-right {
    width: 100%;
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-start; /* left-aligned inside the centered group */
  }

  .footer-left {
    width: 100%;
  }

  .logo2-img {
  display: block;             /* removes inline gaps */
  max-width: 130px;           /* scale logo to fit header */
  margin-left: -5px;
                 /* maintain aspect ratio */
}

  .footer-phone {
    font-size: 0.95rem;
    color: #dcdcdc;
  }

  /* Fix invalid 'start' value */
  .footer-nav {
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-nav li a {
    font-size: 1rem;
  }

  /* Bottom bar stacks and aligns with the centered group */
  .footer-bottom {
    width: 100%;
    margin: 1.5rem auto 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }

  .site-footer {
padding: 3rem 2rem 1rem;
  }   

  .footer-rights {
max-width: 160px;
  }

}




  

/*---------------- ABOUT US PAGE ----------------*/

.how_we_help {
    display: flex;
    background-color: #f4f6f8;
    text-align: left;
    padding: 5rem 5rem 2rem 5rem;
    justify-content: left;
}

.how_we_help h2{
  margin-bottom: 2rem;
 
}

.hwh-content p {
 line-height: 1.8;
}

.about-hero {
display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 9rem 5rem 2rem 5rem;
  flex-wrap: wrap;
  min-height: 100vh;
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 60%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/9.png");
  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
}

.about-hero-content p {
  max-width: 600px;
  line-height: 1.7;
}

.about-hero-content h1 {
  max-width: 600px;
  color: #023e8a;
  margin-bottom: 2rem;
}



@media (max-width: 768px) {

  .about-hero {
    padding: 8rem 2rem 2rem 2rem;
	background: linear-gradient(to right, rgba(244, 246, 248, 0.80) 0%, rgba(244, 246, 248, 0.70) 100%, rgba(30, 78, 122, 0.30) 100%), url(../images/9.png);
    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
  }

.how_we_help {
  padding: 5rem 2rem 2rem 2rem;
}


}



/*---------------- PRICING PAGE ----------------*/

.pricing-hero-content h1 {
max-width: 600px;
    color: #023e8a;
    margin-bottom: 2rem;
}


.pricing-hero-content p {
max-width: 600px;
line-height: 1.7;
}


.advantages-title p{
font-size:clamp(1.3rem, 1.4vw, 1.4rem);
margin-bottom: 2rem;
}


.pricing-advantages .advantages-container > p,
.pricing-advantages .group-subtitle,
.pricing-advantages .advantage-box p,
.pricing-advantages .advantage-box li {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.pricing-advantages .advantage-box h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.6rem);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-advantages .pricing-group.extras .group-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.pricing-advantages .pricing-group.extras .advantage-box {
  display: flex;
  flex-direction: column;
}

.pricing-advantages .pricing-group.extras .advantage-box.wide {
  grid-column: 1 / -1;
}


.advantage-box-list ul {
padding-left: 1rem;

}


.pricing-advantages .package-header {
  background: linear-gradient(135deg, #f3f8fd 0%, #a0bacc 100%);
  border: 0;
  border-radius: 8px 8px 0 0;
  padding: 1.25rem 2rem 0.25rem;
  margin: -2rem -2rem 1.5rem -2rem;
  box-shadow: none;
  min-height: 17rem;
}

.advantage-box-boundaries {
padding: 2rem;
background: white;
border-radius: 8px;
}

.advantage-box-onboarding {
padding: 2rem;
background: white;
border-radius: 8px;
}

.advantage-box-onboarding p,
.advantage-box-boundaries p {
font-size: clamp(1rem, 1.25vw, 1.3rem);
}  

.advantage-box-onboarding h3,
.advantage-box-boundaries h3 {
font-size: clamp(1.5rem, 2.5vw, 1.6rem);
    margin-bottom: 0.5rem;
    text-align: center;
    color: #1e4e7a;
}

.package-header-addons {
  margin-bottom: 2rem;
}

.most-popular p {
  text-align: center;
  color: #1eaace;
  margin-top: -1rem;
  padding-bottom: 0rem !important;
}



.package-lists {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  text-align: left;
}


.price-tag {
  display: flex;
  flex-direction: column;
  margin: 0.1rem 0 1rem 0;
  text-align: center;
}

.price-tag-onb {
  text-align: center;
}

.price-amount {
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: #1e4e7a;
}

.price-note {
  font-size: 0.8rem;
  color: #5b6670;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.package-list p {
  margin-bottom: 0.5rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.icon-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.icon-list i {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.icon-list.includes i {
  color: #1ea860;
}

.icon-list.excludes i {
  color: #c23b3b;
}

/* Mobile stacking */
@media (max-width: 768px) {

.pricing-advantages .pricing-group.extras .group-items {
display: flex;
}

.pricing-advantages .package-header {
  min-height: 17rem;
}

.pricing-advantages .package-header p{
  padding-bottom: 2rem;
  text-align: center;
}

}

/*---------------- SERVICE PAGES ----------------*/

.service1-hero {
display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 9rem 5rem 2rem 5rem;
  flex-wrap: wrap;
  min-height: 100vh;
  background:
    linear-gradient(
      to right,
      rgba(244, 246, 248, 0.80) 0%,
      rgba(244, 246, 248, 0.70) 70%,
      rgba(30, 78, 122, 0.30	) 100%
    ),
  url("../images/ITSupport1.png");
  background-size: cover;
  background-position: left 5%;
  background-repeat: no-repeat;
}

.service1-hero-content p {
  max-width: 600px;
  line-height: 1.7;
}

.service1-hero-content h1 {
  max-width: 600px;
  color: #023e8a;
  margin-bottom: 2rem;
}

.service1-hero h1 {
  margin-bottom: 1.5rem;
}

.service-descr {
display: flex;
    background-color: #f4f6f8;
    text-align: left;
    padding: 5rem 5rem 2rem 5rem;
    justify-content: left;
}

.service-descr h1 {
  margin-bottom: 1.5rem;
}

/* Section */
.wwo {
  padding: 5rem 5rem 2rem 5rem;
}

.wwo-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #1e4e7a;
  letter-spacing: -0.02em;
}

/* Layout */
.wwo-layout {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr;
  gap: 2rem;
  align-items: start;
}

/* Left list */
.included__list {
  max-width: 35rem;
  
  list-style: none;
  
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.included__item {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(30, 78, 122, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 500;
  color: #0b0f14;
}

.included__item li {
 font-size: clamp(1.3rem, 1.4vw, 1.4rem);
}

/* Check icon */
.included__item::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 44%;
  width: 18px;
  height: 10px;
  border-left: 3px solid #1eaace;
  border-bottom: 3px solid #1eaace;
  transform: translateY(-50%) rotate(-45deg);
}

/* Right side advantage blocks */
.wwo-advantage-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-width: 500px;
}

.wwo-box:last-child {
  grid-column: 1 / -1;
}


.wwo-box {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.wwo-box h3 {
  margin-bottom: 1rem;
  color: #1e4e7a;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
}

.wwo-box p {
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
}

/* Mobile stacking */
@media (max-width: 768px) {


.service-descr{
    padding: 5rem 2rem 2rem 2rem;
}
  
  .wwo-layout {
    grid-template-columns: 1fr;
    margin: 0;
    width: 100%;
    min-width: 0;
    gap: 3rem;
  }

.wwo-advantage-items {
  grid-template-columns: 1fr;
  min-width: 0;
}

.service1-hero{
padding: 8rem 2rem 2rem 2rem;
}

.wwo {
 padding: 5rem 2rem 2rem 2rem; 
}

.included__item,
  .wwo-box {
    max-width: 100%;
    box-sizing: border-box;
  }

}

/* Form status message (success / error) */
#formStatus {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  display: none;
}

/* Success message */
#formStatus[data-status="ok"] {
  background: #e8f6ef;
  color: #0f5132;
  border: 1px solid #b7e4c7;
}

/* Error message */
#formStatus[data-status="error"] {
  background: #fdecea;
  color: #842029;
  border: 1px solid #f5c2c7;
}

/* Inline field error */
.field-error {
  display: none;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #842029;
}

/* Highlight invalid field */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #dc3545;
  background: #fff5f5;
}
