body {
    font-family: Arial, sans-serif;
}

.hostingDevSec {
    background: url('./../../images/hosting_banner_img.png') no-repeat center center/cover;
    padding: 184px 0;
    color: #fff;
    position: relative;
    padding-top: 121px;
}

.hostingDevSec .container {
    max-width: 1200px;
    margin: auto;
}

.hostingDevSec h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 90px;
}

.hostingDevSec .text-column {
    margin-top: 50px;
}

.hostingDevSec p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.hostingDevSec .btn-primary {
    background: linear-gradient(90deg, rgba(0, 149, 228, 1) 0%, rgba(0, 107, 204, 1) 100%);  
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease-in-out;
}



.hostingDevSec img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); */
}

/* Responsive Design */
@media (max-width: 992px) {
    .hostingDevSec {
        padding: 0;
    }
    .hostingDevSec h1 {
        font-size: 27px;
        /* font-size: 2rem; */
        text-align: center;
    }
    .hostingDevSec p {
        font-size: 15px;
        text-align: center;
    }
    .hostingDevSec .btn-primary {
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    .hostingDevSec .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hostingDevSec img {
        margin-bottom: 30px;
        max-width: 80%;
    }
}
/* hostingdevsev end */

/* hosting solutions-section start */
.hosting-solutions-section span {
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}

.hosting-solutions-section h2 {
    font-family: 'Outfit', sans-serif;
    color: #333;
    padding-bottom: 15px;
    font-size: 32px;
}

.hosting-solutions-section p {
    color: #666;
    font-size: 20px;
    line-height: 1.5;
}

.hosting-solutions-section .btn-primary {
    background: linear-gradient(90deg, rgba(0, 149, 228, 1) 0%, rgba(0, 107, 204, 1) 100%);
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.hosting-solutions-section .btn-primary:hover {
    background: linear-gradient(90deg, rgba(0, 107, 204, 1) 100%, rgba(0, 149, 228, 1) 0%);
}

.hosting-solutions-section .image-container {
    text-align: right;
}

.hosting-solutions-section img {
    max-width: 77%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: -30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hosting-solutions-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hosting-solutions-section h2 {
        font-size: 24px;
    }

    .hosting-solutions-section h2,
    .hosting-solutions-section p {
        text-align: center;
        font-size: 16px;
    }

    .hosting-solutions-section .image-container {
        text-align: center;
    }

    .hosting-solutions-section img {
        margin: 0 auto;
        max-width: 80%;
    }

    .hosting-solutions-section .btn-primary {
        display: inline-block;
        margin: 0 auto;
    }
}

section.hosting-solutions-section {
    background-color: #F5F5F5;
}
/* hosting solutions-section end */

/* hosting -services-section start */
.hosting-services-section {
  background-color: #fff;
  padding: 60px 20px;
}

.hosting-services-section span {
  font-size: 18px;
  color: #006bcc;
  font-weight: 600;
  display: block;
}

.hosting-services-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  color: #333;
  margin-top: 10px;
}

.hosting-services-section .section-intro {
  max-width: 850px;
  margin: 0 auto;
  font-size: 20px;
  color: #666;
  padding-top: 10px;
  line-height: 1.6;
}

.hosting-services-section .service-card {
  padding: 30px;
  text-align: left;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hosting-services-section .service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 60px;
  height: 4px;
  background-color: #006bcc;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.hosting-services-section .service-card:hover::after {
  width: 100px;
}

.hosting-services-section .service-card img {
  width: 60px;
  margin-bottom: 20px;
}

.hosting-services-section .service-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.hosting-services-section .service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.hosting-services-section .service-list {
  padding-left: 18px;
  margin-top: 10px;
}

.hosting-services-section .service-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 6px;
  list-style-type: disc;
}

.hosting-services-section .btn-primary {
  background: linear-gradient(90deg, #0095E4 0%, #006BCC 100%);
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.hosting-services-section .btn-primary:hover {
  background: linear-gradient(90deg, #006BCC 0%, #0095E4 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hosting-services-section .service-card {
    text-align: center;
  }

  .hosting-services-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    color: #333;
    margin-top: 10px;
  }

  .hosting-services-section .service-list {
    text-align: left;
    display: inline-block;
  }

  .hosting-services-section .service-card img {
    margin: 0 auto 20px;
  }

  .hosting-services-section .service-card h3 {
    font-size: 20px;
  }

  .hosting-services-section .service-card p {
    font-size: 15px;
  }
}

.Faqs {
    padding: 60px 20px;
    background-color: #F2F8FD;
}

/* cloud-services-section end */
.hosting-benefits-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.hosting-benefits-section span {
  font-size: 18px;
  color: #006bcc;
  font-weight: 600;
  display: block;
}

.hosting-benefits-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  color: #333;
  margin-top: 10px;
}

.hosting-benefits-section .section-intro {
  max-width: 850px;
  margin: 0 auto;
  font-size: 20px;
  color: #666;
  padding-top: 10px;
  line-height: 1.6;
}

.hosting-benefits-section .service-card {
  padding: 30px;
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hosting-benefits-section .service-card img {
  width: 60px;
  margin-bottom: 20px;
}

.hosting-benefits-section .service-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.hosting-benefits-section .service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hosting-benefits-section .service-card {
    text-align: center;
  }

  .hosting-benefits-section h2 {
    font-size: 24px;
  }

  .hosting-benefits-section .service-card img {
    margin: 0 auto 20px;
  }

  .hosting-benefits-section .service-card h3 {
    font-size: 20px;
  }

  .hosting-benefits-section .service-card p {
    font-size: 15px;
  }
}
/* 
hosting benefits section end */

/* hosting process section start */
.hosting-process-section {
  background: #f5faff;
  padding: 70px 20px;
  font-family: 'Outfit', sans-serif;
}

.hosting-process-heading span {
  color: #006bcc;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.hosting-process-heading h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 12px;
}

.hosting-process-heading p {
  color: #666;
  font-size: 16px;
  max-width: 780px;
  margin: 0 auto;
}

/* Timeline container */
.hosting-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 48px;
  position: relative;
  gap: 1.5rem;
}

/* horizontal connecting line */
.hosting-timeline::before {
  content: "";
  position: absolute;
  top: 46px; /* aligns with icon center */
  left: 3%;
  width: 94%;
  height: 3px;
  background: #006bcc;
  z-index: 1;
}

/* Individual step */
.hosting-timeline-step {
  position: relative;
  z-index: 2;
  width: 18%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circular icon */
.hosting-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 3px solid #006bcc;
  color: #006bcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Step title + text */
.hosting-timeline-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.hosting-timeline-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  max-width: 220px;
}
.hosting-timeline-line {
  width: 2px;
  height: 100%;
  background: #006bcc;
  transform: rotate(10deg); /* Adjust the angle */
  transform-origin: top center;
}
/* Responsive: stack vertically on smaller screens, vertical connector */
@media (max-width: 992px) {
  .hosting-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hosting-timeline::before {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }

  .hosting-timeline-step {
    width: 100%;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hosting-timeline-step .hosting-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .hosting-timeline-step p {
    max-width: 680px;
  }
}

/* Optional: small animation on appear */
.hosting-timeline-step[data-aos] {
  transition: transform .45s cubic-bezier(.2,.9,.3,1), opacity .45s;
}
@keyframes waveLine {
  0% { d: path("M2 0 Q 20 100 2 200"); }
  50% { d: path("M2 0 Q -20 100 2 200"); }
  100% { d: path("M2 0 Q 20 100 2 200"); }
}

/* hosting process section end */


/* platform section start */
.cloud-expertise-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.cloud-expertise-section span {
  font-size: 18px;
  color: #006bcc;
  font-weight: 600;
  display: block;
}

.cloud-expertise-section .section-title {
  font-size: 32px;
  color: #222;
  margin-top: 10px;
  font-family: 'Outfit', sans-serif;
}

.expertise-card {
  background: #f9f9f9;
  border-radius: 12px;
  /* padding: 30px; */
  padding: 30px; 
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.expertise-card img {
  /* height: 50px; */
  margin-bottom: 20px;
}

.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.expertise-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  min-height: 60px;
}

.highlight-list {
  margin-top: 15px;
  text-align: left;
}

.highlight-list span {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.highlight-list span::before {
  content: "✔";
  color: #006bcc;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .cloud-expertise-section .section-title {
  font-size: 24px;
  color: #222;
  margin-top: 10px;
  font-family: 'Outfit', sans-serif;
}
}
/* platform section end */


/* hosting feature section start */

.hosting-feature-section {
  background: linear-gradient(90deg, rgba(0, 149, 228, 1) 0%, rgba(0, 107, 204, 1) 100%);
  padding: 60px 20px;
}

.hosting-feature-section span {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  display: block;
}

.hosting-feature-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  color: #fff;
  margin-top: 10px;
}

.hosting-feature-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hosting-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hosting-icon {
  font-size: 36px;
  color: #006bcc;
  margin-bottom: 15px;
}

.hosting-feature-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hosting-feature-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Responsive fix for small devices */
@media (max-width: 992px) {
  .hosting-feature-section h2 {
    font-size: 24px;
  }
}

/* hosting feature section end */

.key-highlights-section {
  padding: 80px 20px;
  position: relative;
  color: #333;
  text-align: center;
}

.key-highlights-section .section-title span {
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #006bcc;
}

.key-highlights-section .section-title h2 {
  font-size: 32px;
}

.highlights-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.highlight-item {
  text-align: center;
  max-width: 300px;
}

.highlight-item i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #006bcc;
}

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

.highlight-item p {
  font-size: 16px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .highlights-wrapper {
    flex-direction: column;
    align-items: center;
  }
}



/* Content Hosting Section Styles */
.tech-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.tech-section .section-heading span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #006bcc;
  margin-bottom: 10px;
}

.tech-section .section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.tech-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.tech-box img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.tech-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.tech-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  min-height: 62px;
}

.tech-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-box:hover img {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tech-section .section-heading h2 {
    font-size: 26px;
  }
  .tech-box {
    padding: 25px 15px;
  }
  .tech-box img {
    width: 50px;
  }
}



.tech-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.section-heading.tech {
  text-align: left;
  margin-bottom: 40px;
}

.section-heading.tech span {
  font-size: 18px;
  color: #006bcc;
  display: block;
  font-weight: 600;
  text-align: left;
}

.section-heading.tech h2 {
   font-family: 'Outfit', sans-serif;
  color: #333;
  padding-top: 10px;
  font-size: 32px;
  max-width: 600px;
  line-height: 1.4;
  text-align: left;
  font-weight: 500;
  
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.tech-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}

.tech-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  flex: 1 1 calc(25% - 30px); /* 4 per row */
  max-width: calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
}

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

.tech-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tech-box h3 {
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  color: #333;
  margin-top: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .tech-box {
    flex: 1 1 calc(33.333% - 30px); /* 3 per row */
    max-width: calc(33.333% - 30px);
  }
.section-heading.tech span{
      text-align: center;
}
  .section-heading.tech {
    text-align: center;
  }

  .section-heading.tech h2 {
    margin: 0 auto;
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tech-box {
    flex: 1 1 calc(45% - 30px); /* 2 per row */
    max-width: calc(45% - 30px);
  }

  .section-heading.tech h2 {
    font-size: 24px;
  }
}

/* Small Screens */
@media (max-width: 480px) {
  .tech-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tech-box img {
    width: 60px;
    height: 60px;
  }

  .section-heading.tech h2 {
    font-size: 24px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .tech-boxes {
    justify-content: center; /* Center all items */
  }

  .tech-box {
    flex: 0 1 80%;
    max-width: 37%;
  }
}

 .title span {
    color: #006BCC;
}



