/* =====================================================
   MAIN.CSS — MidKent IT (Complete Build)
   Includes:
   - Colors
   - Typography
   - Layout
   - Buttons
   - Components
   ===================================================== */
@import url(_colors.css);   
@import url(_typography.css);
@import url(_layout.css);  
@import url(_buttons.css);    



body {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: var(--text-main);
  background-color: #f8f9f9;
  letter-spacing: normal;
  margin: 0;
}


/* Section padding */
.section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.section-sm {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.section-lg {
  padding-top: var(--sp-8);
  padding-bottom: calc(var(--sp-8) * 1.5);
}


.overflow-top {
    padding-top: 150px;
}

.overlay-bottom {
    margin-bottom: -100px;
}

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-column { display: flex; flex-direction: column; }

/* Grid utilities */
.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   BUTTONS SYSTEM
===================================================== */

:root {
  --btn-radius: 40px;
  --btn-height: 50px;

  --btn-font: var(--font-primary);
  --btn-size: 1rem;
  --btn-weight: var(--fw-medium);

  --btn-transition: 0.3s ease-in-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: var(--btn-height);
  padding: 16px 40px;
  border-radius: 0px;
  border: none;
  font-family: var(--btn-font);
  font-size: var(--fs-xl);
  font-weight: var(--btn-weight);
  cursor: pointer;
  transition: var(--btn-transition);
  text-decoration: none;
  height: 50px;
  text-align: center;
  margin: 0px;
  text-transform: none;
  line-height: 1;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  align-items: center;
  margin-right: 0px;
  z-index: 1;
  letter-spacing: 1;
  gap:1rem;
}

/* Primary Button */
.btn-primary {
  background: #000000;
  color: #ffffff!important;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--color-accent);
}

/* Secondary Button */
.btn-secondary {
  background: var(--color-secondary);
  color: #000;
}
.btn-secondary:hover {
  background: #9a9c9d;
}

/* Accent Button */
.btn-accent {
  background: var(--color-accent);
  color: white;
}
.btn-accent:hover {
  background: #a30033;
}

/* Outline Button */
.btn-outline {
  border: 1px solid #ffffff;
  background: transparent;
  color: inherit;
  border-radius: 0px;
  padding: 16px 40px;
}
.btn-outline:hover {
  background: transparent;
  color: var(--text-main);
  border: 1px solid;
  border-color: inherit;
}

.btn .bi {
  color: inherit;
  font-weight: 700;
}


/* =====================================================
   COMPONENTS SYSTEM
===================================================== */
:root {
    --e-icon-list-icon-size: 24px;
    --e-icon-list-icon-align: left;
    --e-icon-list-icon-margin: 0 calc(var(--e-icon-list-icon-size, 1em) * 0.25) 0 0;
    --icon-vertical-align: flex-start;
    --icon-vertical-offset: 2px;
}

.icon-list-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.icon-list-item, .icon-list-item a {
    align-items: flex-start, center;
    display: flex;
    font-size: inherit;
}

.icon-list-item:not(:first-child) {
    margin-block-start: calc(20px / 2);
}

.icon-list-item:not(:last-child) {
    padding-block-end: calc(20px / 2);
}


.icon-list-item {
    margin: 0;
    padding: 0;
    position: relative;
}
.icon-list-icon {
   text-align: left;
}

.icon-list-icon {
    display: flex;
    inset-block-start: var(2px, initial);
    position: relative;
}

.icon-list-icon svg {
    height: 24px;
    width: 24px;
}

.icon-list-icon svg {
    margin: var(--e-icon-list-icon-margin, 0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0);
}

.icon-list-icon svg {
    fill: #a3a3a3;
    transition: fill 0.3s;
}

.icon-list-text, .icon-list-text p{
  font-size: 20px;
  letter-spacing: normal;
  color: inherit;
}

/* ======================
   NAVBAR
====================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: white;
  border-bottom: 1px solid #eee;
}

.navbar .logo {
  width:100%; 
  max-width: 150px;
}

.navbar a {
  font-weight: 600;
  color: var(--text-main);
}

.navbar a .bi {
  color: var(--text-main);
}

.navbar a:hover {
  color: rgb(0, 0, 0, 1);
  text-decoration: none;

}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
   color: inherit!important;
}



/* ======================
   HERO SECTION
====================== */


	
.hero-section  {
max-height: 730px;
border-bottom-left-radius: 2.5rem;
border-bottom-right-radius: 2.5rem;
}

.hero-section .hero-slide {
  height: 100vh;
  max-height: 700px; /* Set the maximum height */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  border-bottom-left-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
}

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

.hero-section .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgb(233 30 99 / 92%);
      z-index: 1;
      border-bottom-left-radius: 2.5rem;
border-bottom-right-radius: 2.5rem;
}


.page .overlay {
    background: rgb(233 30 99 / 90%)
}

.home .hero-slide{
  background-image: url('/assets/images/hero/JI6rdi8WMAUefA8Ok0NY.png');
}

.page.residential .hero-slide{
  background-image: url('http://mis/assets/images/hero/ajy123YTGHG456HG.png');
}

.hero-content {
      position: relative;
      z-index: 2;
}
	
.hero-content .hero-title  {
    text-transform: capitalize;
    font-weight: 800!important;
    color: #000000;
    display: block;
    max-width: 690px;
    padding-bottom: 15px;
    line-height: 1;
}


.hero-content p {
    color: #000000;
    font-weight: 500;
    max-width: 601px;
}

.page span, .page p {
    max-width: 700px;
}
	
	
.hero-section .owl-dots {
    text-align: center;
    position: relative;
    bottom: 235px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    left: -640px;
}

.hero-section .owl-dot {
    border-radius: 50px !important;
    height: 15px !important;
    width: 15px !important;
    display: inline-block !important;
    background-color: #5d5b55 !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    -ms-border-radius: 50px !important;
    -o-border-radius: 50px !important;
}

.hero-section .owl-dot.active {
    background: #d2d2d2 !important;
}

.hero-data-cabling {
  background-image: url('/assets/images/hero/Small-business-IT-support-Hero-alt-one1.png');
}

.hero-domestic-support {
  background-image: url('/assets/images/hero/ajy123YTGHG456HG.png');
}

.hero-remote-support {
  background-image: url('/assets/images/hero/FH4b8iwiQ0.png');
}

@media (min-width: 768px) {
  .hero-section .overlay, .hero-section .hero-slide{
  border-bottom-right-radius: 12rem;
  border-bottom-left-radius: 4rem;
}
}
	
@media (max-width: 768px) {
  .hero-section .hero-slide {
    height: auto;
    min-height: 500px;
    max-height: 730px;
    padding: 80px 0;
    text-align: center;
  }
}



/* ======================
   CARD COMPONENT
====================== */
.card {
  background: white;
  padding: var(--sp-5);
  border-radius: 20px;
  transition: 0.3s ease;
  color: inherit;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

.card-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: inherit;
}

.card-text {
  font-size: var(--fs-base);
  color: inherit;
}

.rounded-border {
    border-radius: 2.5rem;
}


/* ======================
   SERVICE CARD
====================== */
.service {
  text-align: center;
  padding: var(--sp-6);
}

.service-icon {
  width: 80px;
  margin-bottom: var(--sp-4);
}

.service h3 {
  font-size: var(--fs-xl);
  color: var(--color-primary);
}

/* ======================
   SOLUTIONS CARD
====================== */
.our-solution-caption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.our-solution-caption h3 {
    font-size: 20px;
    font-weight: var(--fw-medium);
    color: #fff;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    display: block;
    max-width: 1000px;
    line-height: 1.1em;
    text-transform: uppercase;
}

.image-with-text .slide-button-with-read-more {
    display: none;
    visibility: hidden;
}

.slide-button {
    margin-left: 105px;
}

.slide-button a {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-self: center;
    background-color: var(--color-accent);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    margin: 0 auto;
}

.slide-button a .bi{
    display: block;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 23px;
}

.review-item {
   display: flex;
   justify-content: center;
   align-items: center;
}


.review-item .review-content {
  max-width: 790px;
  padding-bottom: 40px;
 }
  
.review-content span {
   font-size: 1.25rem;
   font-weight: 500;
   color: #0693e3;
}



/* ======================
   TESTIMONIAL BOX
====================== */
.testimonial {
  background: white;
  padding: var(--sp-6);
  border-left: 5px solid var(--color-primary);
  border-radius: 15px;
}

.testimonial p {
  font-size: var(--fs-md);
}

.testimonial .name {
  margin-top: var(--sp-3);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
}


/* ======================
   FOOTER
====================== */
.footer {
  background: #000000;
  padding: var(--sp-8) 0;
  color: var(--text-light);
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
}

.footer p {
  color: var(--text-light);
}

.footer a {
  color: var(--text-light);
}

.footer a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer {
  border-top-left-radius: 12rem;
  border-top-right-radius: 4rem;
}
}


/*-------------------------------------------------------------------------------*/

/*---------Navigation ---------*/

.nav-link {
    display: block;
    line-height: 40px;
    height: 40px;
    padding: 0px 10px 0px 10px;
    width: auto;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;
    background: rgba(0, 0, 0, 0);
    border-top: 0px solid rgba(255, 255, 255, 0);
    border-left: 0px solid rgba(255, 255, 255, 0);
    border-right: 0px solid rgba(255, 255, 255, 0);
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-radius: 3px 3px 3px 3px;
    font-family: inherit;
    font-size: 23px;
    font-weight: normal;
    outline: none;
}

.nav-link:hover{
	color: #005a99;
}


/*----- Navigation End---------*/

.review-ratings .rating-title {
  font-weight:600; 
  margin-bottom:2px;
}

.vertical-divider {
  width:1px; 
  height:40px; 
  background:#ddd;
}

.stars {
  font-size:20px; 
  display:flex; 
  align-items:center; 
  gap:4px;
}

.stars.google {
  color:#f8b400;
}

.stars.trustpilot {
  color:#00b67a;
}

.stars span {
  color:#333; font-size:16px; margin-left:4px;
}


.welcome-section {
    margin-top: -200px;
    z-index: 9;
    position: relative;
}

.solution-contact-box {
    display: flex;
    flex-direction: column;
    gap: 1em;
    background-color: var(--accent-dark);
    width: 100%;
    padding: 60px 15px 30px 30px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    height: auto;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 2.5rem;
    margin-top: -100px;
}

@media(min-width: 720px){
    .solution-contact-box {
        margin-top: -400px;
    }
}

.solution-contact-box h2 {
   color: #ffffff;
 }

.solution-contact-box .qoute-form label {
  color: #ffffff;
}

.service-checkbox-group {
                      display: flex;
                      flex-wrap: wrap;
                      gap: 12px;
                  }

                  .service-checkbox {
                      position: relative;
                      border: 1px solid #ddd;
                      padding: 0px 0px;
                      border-radius: 8px;
                      cursor: pointer;
                      display: flex;
                      align-items: center;
                      gap: 10px;
                      transition: 0.2s;
                      user-select: none;
                  }

                  .service-checkbox:hover {
                      background: #f7f7f7;
                      color: #a10036!important;
                  }

                  .service-checkbox input {
                      display: none;
                  }

                  .service-checkbox i {
                      font-size: 22px;
                      color: #007bff;
                  }

                  /* When checked */
                  .service-checkbox input:checked + .checkbox-content {
                      border-color: #a10036;
                      background: #ffffff;
                      color: #a10036;
                  }

                  .checkbox-content {
                      display: flex;
                      align-items: center;
                      gap: 10px;
                      padding: 6px 4px;
                      border-radius: 6px;
                  }

.about-us-text-with-title h1 {
    line-height: 1em;
    max-width: 100%;
    text-transform: uppercase;
    padding-bottom: 31px;
	  color: #005a99;
}

.about-us-text-with-title .title-intro {
   color: #000000;
   font-size: 18px;
   font-weight: 500;
}

.about-us-text-with-title .about-cta {
  background-color: #000000;
  color: #fff;
  padding: 12px 28px;
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  border-radius: 50px; /* smooth pill shape */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.about-us-text-with-title .about-cta:hover {
  transform: translateY(-2px);
}




.service-sec {
    background-color: #ffffff; /* changed from #17263d; */
    padding-top: 280px;
    padding-bottom: 380px;
    position: relative;
}

.extra-title.text-center h2 {
    font-size: 27px;
    color: #000000;
    width: 100%;
	font-weight:600;
    padding-bottom: 10px;
    text-transform: uppercase;
}



.tech-h2 h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2em;
    color: #000;
}

.residentail-serviceCard {
  background-color: #ffffff;
  border: 1px solid var(--color-secondary);
}

.residentail-serviceCard h2{
    display: block;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.residentail-serviceCard .shadow-sm {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px!important;
}

.service-card {
    color: #fff;
    background-color: #005a99;
    border-radius: 0px;
    margin: .5em;
	border: none;
	border-radius: 1px;
}

.serviceCard {
  background-color: #ffffff;
}




.cloud-computing-parent {
    min-height: 350px;
}

@media (min-width: 768px) {
    #service-cloud-computing-slider {
        display: flex;
        flex-wrap: wrap;
		justify-content: center;
		gap: 0px;
    }
}

.cloud-cont {
    display: flex;
    column-gap: 55px;
    padding-bottom: 5px;
}

.cloud-cont:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 50%; /* Change this to whatever width you want. */
    padding-top: 20px; /* This creates some space between the element and the border. */
    border-bottom: 4px solid #ff4008; /* This creates the border. Replace black with whatever color you want. */
}

.cloud-text strong {
    font-size: 30px;
    font-weight: normal;
    color: #fff;
    opacity: 0.1;
    display: block;
    margin: 20px 0 0;
}

.cloud-computing-parent h3 {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: block;
    max-width: 310px;
    line-height: 1.2em;
    opacity: 0.5;
    min-height: 60px;
    padding-bottom: 15px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.image-parent {
    position: relative;
}

.image-parent img:first-child {
    float: right;
	position: relative;
    z-index: 2;
	border-radius: 30px;
}

.top-image {
    position: absolute;
    bottom: -616px;
    left: 0px;
    width: initial;
	z-index: 0;
}

/* customer-testinomals */

.customer-testinomals-sec {
   position: relative;
   background-color: #f8f9f9;
   padding-top: 91px;
}

.customer-testinomals-sec::after {
    content: '';
    position: absolute;
    background: url() no-repeat top left;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0px;
    opacity: 0.01;
    background-size: 100% 100%;
}



.slide-button a img {
    display: block;
    margin: 0 auto;
}

.review-item {
   display: flex;
   justify-content: center;
   align-items: center;
}


.review-item .review-content {
  max-width: 790px;
  padding-bottom: 40px;
 }
  
.review-content span {
   font-size: 1.25rem;
   font-weight: 500;
   color: #0693e3;
}
    /* EXTRA CONTENT SECTION */
    .features {
      padding: 60px 0;
    }

.call-out_cta p {
  color: #ffffff;
}

.call-out_cta a {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.price-promise .overlay {
  background: rgba(0, 0, 0, 0.3); /* semi-transparent overlay */
  z-index: 1;
}

/* Optional: make overlay interactive for hover */
.price-promise .col-md-6.position-relative:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
}

.areas-covered {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* space between pills */
    margin-top: 10px;
}

.area-pill {
    background-color: #f0f0f0; /* light gray pill background */
    padding: 6px 12px;
    border-radius: 20px; /* pill shape */
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}


.masonry-gallery {
  width: 100%;
  overflow: hidden;
}

.masonry {
  position: relative;
  width: 100%;
}

.masonry img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}

.local-box {
  max-width:590px; 
  background: #fff; 
  margin-left: -30px; 
  padding: 60px 30px; 
  position:relative; 
  z-index: 4
}


@media (max-width: 768px) {
  .masonry img {
    border-radius: 4px;
  }
}

/* Lightbox Background */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

/* Lightbox Image */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  animation: zoomIn 0.25s ease;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: 0.2s;
}

.lightbox-close:hover {
  color: #ccc;
}

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

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}


/*---------Navigation ---------*/

.nav-link {
    display: block;
    line-height: 40px;
    height: 40px;
    padding: 0px 10px 0px 10px;
    width: auto;
    color: #000000;
    text-transform: capitalize;
    text-decoration: none;
    text-align: left;
    background: rgba(0, 0, 0, 0);
    border-top: 0px solid rgba(255, 255, 255, 0);
    border-left: 0px solid rgba(255, 255, 255, 0);
    border-right: 0px solid rgba(255, 255, 255, 0);
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-radius: 3px 3px 3px 3px;
    outline: none;
}

.nav-link:hover{
	color: #005a99;
}


/*----- Navigation End---------*/



.welcome-section {
    margin-top: -100px;
    z-index: 9;
    position: relative;
}

.solution-all-reliable {
    display: flex;
    flex-direction: column;
    gap: 1em;
    background-color: #ffffff;
    width: 100%;
    padding: 30px 15px 20px 30px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    height: 260px;
    border: 2px solid #000;
}

.solution-all-reliable h2 {
   color: #000000;
 }

.about-us-text-with-title h1 {
    line-height: 1em;
    max-width: 100%;
    text-transform: uppercase;
    padding-bottom: 31px;
    color: #000000;
}

.about-us-text-with-title .title-intro {
   color: #000000;
   font-size: 22px;
   font-weight: 600;
}


.about-us-text-with-title .about-cta:hover {
  transform: translateY(-2px);
}




.service-sec {
    background-color: #ffffff; /* changed from #17263d; */
    padding-top: 280px;
    padding-bottom: 380px;
    position: relative;
}


.tech-h2 h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2em;
    color: #000;
}

.tech-h2 span {
    display: block;
    color: #c90044;
}

.service-card {
    color: #000000;
    background-color: #f8f9f9;
    border-radius: 0px;
    margin: .5em;
	border: none;
	border-radius: 1px;
}

.service-card h3 { 
    color: #000000;
}



.cloud-computing-parent {
    min-height: 350px;
}

@media (min-width: 768px) {
    #service-cloud-computing-slider {
        display: flex;
        flex-wrap: wrap;
		justify-content: center;
		gap: 0px;
    }
}

.cloud-cont {
    display: flex;
    column-gap: 55px;
    padding-bottom: 5px;
}

.cloud-cont:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 50%; /* Change this to whatever width you want. */
    padding-top: 20px; /* This creates some space between the element and the border. */
    border-bottom: 4px solid #ff4008; /* This creates the border. Replace black with whatever color you want. */
}

.cloud-text strong {
    font-size: 30px;
    font-weight: normal;
    color: #fff;
    opacity: 0.1;
    display: block;
    margin: 20px 0 0;
}

.cloud-computing-parent h3 {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: block;
    max-width: 310px;
    line-height: 1.2em;
    opacity: 0.5;
    min-height: 60px;
    padding-bottom: 15px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.image-parent {
    position: relative;
}

.image-parent img:first-child {
    float: right;
	position: relative;
    z-index: 2;
	border-radius: 30px;
}

.top-image {
    position: absolute;
    bottom: -616px;
    left: 0px;
    width: initial;
	z-index: 0;
}

/* customer-testinomals */

.customer-testinomals-sec {
   position: relative;
   background-color: #f8f9f9;
   padding-top: 91px;
}

.customer-testinomals-sec::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0px;
    opacity: 0.01;
    background-size: 100% 100%;
}

.our-solution-sec {
    position: relative;
}


.screenshot_slider .owl-item .item {
    transform: translate3d(0, 0, 0);
    padding: 30px 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.screenshot_slider .owl-item .item {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transform: translate(1, 1);
    -webkit-transform: translate(1, 1);
    -moz-transform: translate(1, 1);
    -ms-transform: translate(1, 1);
    -o-transform: translate(1, 1);
}

.our-solution-caption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.our-solution-caption h3 {
    font-size: 23px;
    color: #fff;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    display: block;
    max-width: 1000px;
    line-height: 1.1em;
    text-transform: uppercase;
}

.image-with-text .slide-button-with-read-more {
    display: none;
    visibility: hidden;
}

.slide-button {
    margin-left: 105px;
}


.slide-button a img {
    display: block;
    margin: 0 auto;
}

.review-item {
   display: flex;
   justify-content: center;
   align-items: center;
}


.review-item .review-content {
  max-width: 790px;
  padding-bottom: 40px;
 }
  
.review-content span {
   font-size: 1.25rem;
   font-weight: 500;
   color: #0693e3;
}

/* EXTRA CONTENT SECTION */
    .features {
      padding: 60px 0;
    }

/* Support pages*/
.page-hero {
    padding: 4rem 0 3rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.page-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 720px;
}

.support-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e7eb;
}

.support-card:hover,
.support-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.support-logo {
    max-width: 64px;
    height: auto;
}

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.98),
        transparent
    );
    margin-top: 3rem;
}

.action-card {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.2s ease;
    background: #fff;
    height: 100%;
}

.action-card:hover,
.action-card:focus {
    border-color: rgba(0,0,0,0.18);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.action-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-icon {
    font-size: 1.75rem;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.support-section {
    margin-bottom: 4rem;
}

.support-section h2 {
    margin-bottom: 0.5rem;
}

.support-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.25rem;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
}

.support-list i {
    color: var(--bs-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.support-list a {
    text-decoration: none;
    font-weight: 500;
}

.support-list a:hover {
    text-decoration: underline;
}

.support-note {
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(0,0,0,0.08);
    color: #555;
}

.support-note ul {
    margin-top: 0.5rem;
}

.support-contact {
    padding: 3rem 0;
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.03);
}

.support-contact-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: #000000;
}

.support-contact-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--bs-primary);
}

.support-contact-link i {
    font-size: 1.2rem;
}

.support-contact-link:hover {
    text-decoration: underline;
}

/* How to page */

.support-figure {
    margin: 2.5rem 0;
    text-align: start;
}

.support-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.support-figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.product-card {
  background: #ffffff;
  padding: 0;
  border-radius: 0px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 10px;
}


.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.product-price{
    font-size: 1.2rem;
    color: #c90044;
    font-weight: 700;
}

/* -----Google Reviews- */
.review-card {
    background: #ffffff; /*#f2f2f2*/
    padding: 20px;
    margin: 10px;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start!important;
    gap: 0.5rem;
}
.review-card img {
    margin-bottom: 0px;
}

.review-card .platform-icon {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 100%;
    max-width: 30px;
    height: auto;
}

.review-card .author-block {
    line-height: 0;
}

.review-card h4 {
    margin:0;
    font-size: 1rem;
    text-align: start;
}
.review-card p {
    margin: 5px 0;
    font-size: 1rem;
    text-align: start;
    font-weight: 400;
}

/*-----Glider CSS -----*/


.glider-next,
.glider-prev {
    position: absolute; /* required for top: 50% to work properly */
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 50px;
    height: 50px;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff !important;
    color: #000 !important;

    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.glider-next.disabled, .glider-prev.disabled {
    opacity: 1!important;
    display: none;
}


.swiper-next {
    right: -40px!important;
}

.swiper-prev{
    left: -40px!important;
}

.swiper-next-lg {
    right: 10%!important;
}

.swiper-prev-lg {
    left: 10%!important;
    background-color: #ffffff!important;
}

/* -----Site Tab- */
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  
  background-color: #e91e63;
  color: #ffffff;
  padding: 15px 15px 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px 0 0 10px;
  
  writing-mode: vertical-rl;
  text-orientation: mixed;
  
  z-index: 1000;
}

.side-tab:hover {
  background-color: #ff4f6d;
}

/**.side-tab {
  right: -40px;
  transition: right 0.3s ease;
}

.side-tab:hover {
  right: 0;
}--------*/

/* ===== SECTION BASE ===== */

.sectors-flow {
  background: #000000;
  color: #ffffff;
  padding: 100px 0;
}

/* ===== INTRO ===== */

.section-intro {
  max-width: 750px;
  margin-bottom: 30px;
}

.section-intro h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-intro p {
  opacity: 1;
  line-height: 1.6;
}

/* ===== LIST STRUCTURE ===== */

.sector-list {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sector-row {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
  border-bottom: 3px solid rgb(201 0 68);
  transition: all 0.35s ease;
}

.sector-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.sector-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.sector-text p {
  opacity: 1;
  transition: all 0.3s ease;
}

/* ===== ARROW ===== */

.sector-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e91e63;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-20px) scale(0.9);
  transition: all 0.35s ease;
}

.sector-arrow i {
  color: #ffffff;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

/* ===== HOVER EFFECT ===== */

.sector-row:hover {
  padding-left: 25px;
  background: rgba(255,255,255,0.02);
}

.sector-row:hover .sector-text h3 {
  transform: translateX(5px);
}

.sector-row:hover .sector-text p {
  opacity: 0.85;
}

.sector-row:hover .sector-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.sector-row:hover .sector-arrow i {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .section-intro h2 {
    font-size: 2.2rem;
  }

  .sector-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .sector-arrow {
    margin-top: 20px;
  }

}


.what-we-do {
  background: #f6f6f8;
  padding: 120px 0;
}

.section-header {
  max-width: 750px;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header p {
  opacity: 1;
}

/* ROW WRAPPER */

.cards-row {
  display: flex;
  gap: 40px;
}

/* CARD STRUCTURE */

.split-card {
  flex: 1;
  display: flex;               /* Horizontal split */
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}

.split-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* IMAGE SIDE */

.split-image {
  flex: 1;
}

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

/* CONTENT SIDE */

.split-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px;
}

.split-content.purple {
  background: #e91e63;
  color: #ffffff;
}

.split-content.teal {
  background: #2ec4b6;
  color: #0a0a0a;
}

.content-inner h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.content-inner p {
  max-width: 400px;
}

/* ARROW */

.card-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.card-arrow i {
  font-size: 1.4rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.split-card:hover .card-arrow {
  transform: scale(1.1);
}

.split-card:hover .card-arrow i {
  transform: translateX(6px);
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .cards-row {
    flex-direction: column;
  }

  .split-card {
    flex-direction: column;
  }

}

.faq-section {
  padding: 30px 0;
}


.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* LEFT SIDE */

.faq-intro h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: 30px;
  line-height: var(--lh-normal);
}

.faq-intro p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 400px;
}

/* RIGHT SIDE */

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: #f1f1f4;
  border: none;
  padding: 20px 25px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e7e7ec;
}

.faq-icon {
  width: 34px;
  height: 34px;
  background: #3b1c6e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding: 20px 0;
  opacity: 0.8;
  line-height: 1.6;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  background: #e91e63;
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.hero-slider-wrapper {
  position: relative;
  overflow: visible;
  padding: 60px 0;
}


.slide {
  position: relative;
  height: 650px!important;
  border-radius: 0px;
  overflow: hidden;
  margin-right: 40px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 180px 60px;
  color: #fff;
  margin-right: 20px;
}

/* Example background images */
.slide:nth-child(1) {
  background-image: url('https://images.pexels.com/photos/7688086/pexels-photo-7688086.jpeg');
}

.slide:nth-child(2) {
  background-image: url('/assets/images/misc/124Hjlkg&7.png');
}

.slide:nth-child(3) {
  background-image: url('/assets/images/misc/EXQSmIaDYH.png');
}

.webcase:nth-child(1) {
  background-image: url('/assets/images/solutions/pucasestudies.png');
}

.webcase:nth-child(2) {
  background-image: url('/assets/images/solutions/kwscasestudies.png');
}

.webcase:nth-child(3) {
  background-image: url('/assets/images/solutions/ztecasestudies.png');
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.slide h2 {
  font-size: clamp(1.75rem, .25rem + 2.34375vw, 3.0625rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-slider {
  padding-left: 300px;
  box-sizing: content-box; /* keep padding outside slide width */
}


.hero-slider .glider-slide {
  /*min-width: calc(100% / 1.2 - 300px); /* adjust to match slidesToShow */
  border-radius: 0px;
}

.herobtn {
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  z-index: 10;  /* make sure it’s above slides */
  background: white;  /* or whatever contrasts */
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.glider-prev {
  left: -20px; /* adjust so it sits outside the slider if you want it hanging */
}

.glider-next {
  right: -20px; /* same for right */
}


.herobtn svg {
  width: 24px;
  height: 24px;
}


.glider-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.glider-dot {
  width: 40px;              /* length of bar */
  height: 4px;              /* thickness */
  background: rgba(255,255,255,0.3);
  border-radius: 0!important;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glider-dot:hover {
  background: rgba(255,255,255,0.6);
}

.glider-dot.active {
  background: #e91e63!important;      /* your brand colour */
  width: 60px;              /* slightly longer when active */
}


@media (max-width: 768px) {
.slide {
    height: 420px;
    padding: 120px 30px;
  }

.hero-slider {
  padding-left: 0px;
  box-sizing: content-box; /* keep padding outside slide width */
}


.swiper-next-lg {
    right: 1%!important;
}

.swiper-prev-lg {
    left: 1%!important;
    background-color: #ffffff!important;
}
}

.bg-black {
  background: #000;
}

.bg-black h2 {
  color: #fff;
  letter-spacing: -0.5px;
}

.bg-black p {
  color: rgba(255,255,255);
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-cta-box {
  margin-top: 40px;
  padding: 40px 30px;
  border-radius: 0px;
  background: linear-gradient(135deg, #e91e63 0%, #db4578 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25);
}

.faq-cta-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-cta-box p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.faq-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  background: #ffffff;
  color: #e91e63;
}


/*----------------------------*/
.feature-list {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  justify-content: start;
  align-items: anchor-center;
}

.feature-item.no-border {
  border-bottom: none;
}

.feature-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #2ec4b6;
  color: #2ec4b6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feature-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

/*----Plan Table----*/
.plan-table-wrapper {
  overflow-x: auto;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
}

.plan-table th {
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-bottom: 2px solid #e91e63;
  font-size: 20px;
}

.plan-table td {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.plan-table td.tick {
  color: #e91e63;
  font-weight: 700;
  text-align: center;
  font-size: 1.5rem;

}

.plan-table td.cross {
  color: rgb(46 196 171);
  text-align: center;
  font-size: 1.5rem;
}


/*service list ul */
/* Bold branded service list */
.service-list.bold-brand {
  list-style: none;        /* Remove default bullets */
  padding: 0;
  margin: 0;
}

.service-list.bold-brand li {
  font-weight: 700;        /* Bold text for brand strength */
  font-size: 1.2rem;       /* Slightly larger for readability */
  margin-bottom: 15px;
  position: relative;
  color: #1a1a1a;          /* Brand text color, adjust as needed */
  transition: transform 0.3s;
}

.service-list.bold-brand li:hover {
  transform: translateX(5px);  /* Subtle hover effect for interactivity */
}

.service-list.bold-brand .service-icon {
  color: #e91e63;          /* Brand accent color */
  font-weight: bold;
  margin-right: 10px;
}

/* Optional: responsive tweaks */
@media (max-width: 768px) {
  .service-list.bold-brand li {
    font-size: 1rem;
  }
}

/*-- PARTNER LOGO BANNER --*/
/* Full-width banner */
.partner-banner {
  width: 100%;
  background-color: #f8f8f8; /* light background, optional */
  padding: 20px 0;
  display: flex;
  justify-content: center;
  overflow-x: auto; /* scroll if too many logos */
}

/* Container holding logos */
.partner-container {
  display: flex;
  align-items: center;
  gap: 40px; /* space between logos */
  max-width: 1200px; /* optional content width */
  margin: 0 auto;
}

/* Logos */
.partner-container img {
  height: 50px; /* consistent height */
  object-fit: contain;
  transition: transform 0.3s;
}

/* Optional hover effect */
.partner-container img:hover {
  transform: scale(1.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .partner-container {
    gap: 20px;
  }
  .partner-container img {
    height: 40px;
  }
}

