/* Improved Base Styles */
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9fafb;
  line-height: 1.6;
}

/* Modern Box Shadow */
.box-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Enhanced Hero Section */
.cloud-compute-hero-section {
  background: linear-gradient(135deg, #3a0080, #0080ff);
  color: white;
  padding: 6rem 2rem;
  margin-top: -10vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cloud-compute-hero-content {
  position: relative;
  z-index: 2;
  margin-top: 15vh;
  animation: fadeInUp 0.8s ease-out;
}

.cloud-compute-hero-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cloud-compute-hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cloud-compute-hero-cta {
  background-color: white;
  color: #0080ff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cloud-compute-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cloud-compute-hero-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.08);
  transform: rotate(-30deg);
  z-index: 1;
}

/* Add a second shape for more depth */
.cloud-compute-hero-shape-secondary {
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.05);
  transform: rotate(25deg);
  z-index: 1;
}

/* Services Section Enhancement */

.dedicated-server-services-container-main {
  width: 100%;
  padding: 80px 0;
  background-color: #f8f9fc;
}

.dedicated-server-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dedicated-server-services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.dedicated-server-services-heading h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.dedicated-server-services-heading h1:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.dedicated-server-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.dedicated-server-services-card {
  background-color: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.dedicated-server-services-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dedicated-server-services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dedicated-server-services-card:hover:before {
  transform: scaleX(1);
}

.dedicated-server-services-card-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #0a0a0a;
  font-weight: 600;
}

.dedicated-server-services-card-subtitle {
  font-size: 1.05rem;
  color: #0066cc;
  margin-bottom: 25px;
  font-weight: 500;
}

.dedicated-server-services-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.dedicated-server-services-feature {
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.dedicated-server-services-feature:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0080ff;
  font-weight: bold;
}

.dedicated-server-services-button {
  background: linear-gradient(135deg, #0080ff, #4a0080);
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dedicated-server-services-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 128, 255, 0.25);
}

/* Contact Form Section Styles */
.contact-form-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-form-heading p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
  background-color: #0a1c3a;
  color: white;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
}

.contact-info-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccd6e6;
}

.contact-details {
  margin-top: auto;
}

.contact-details .phone {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-details .email {
  font-size: 1rem;
  color: #ccd6e6;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.facebook:before {
  content: "\f09a";
  font-family: "Font Awesome 5 Brands";
  color: white;
}

.twitter:before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
  color: white;
}

.instagram:before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  color: white;
}

.contact-form {
  padding: 50px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-form-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info-card {
    padding: 30px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .dedicated-server-services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-heading h2 {
    font-size: 2rem;
  }
}



/* OS Carousel Enhancement */

/* Carousel Container Styles */
.dedicated-server-carousel-container {
  max-width: 1250px;
  margin: 70px auto;
  padding: 20px 10px;
  box-sizing: border-box;
  width: 100%;
}

.dedicated-server-carousel-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  color: #333;
}

.dedicated-server-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 50px;
}

.dedicated-server-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dedicated-server-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  box-sizing: border-box;
}

.dedicated-server-carousel-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
}

/* Large Desktop - 4 items per view */
@media (min-width: 1200px) {
  .dedicated-server-carousel-item {
    width: 25%; /* 100% / 4 = 25% */
    max-width: 25%;
    min-width: 25%;
  }
}

/* Laptop - 3 items per view */
@media (min-width: 992px) and (max-width: 1199px) {
  .dedicated-server-carousel-item {
    width: 33.333%; /* 100% / 3 = 33.333% */
    max-width: 33.333%;
    min-width: 33.333%;
  }
  
  .dedicated-server-carousel-wrapper {
    padding: 0 45px;
  }
}

/* Tablet - 2 items per view */
@media (min-width: 768px) and (max-width: 991px) {
  .dedicated-server-carousel-item {
    width: 50%; /* 100% / 2 = 50% */
    max-width: 50%;
    min-width: 50%;
  }
  
  .dedicated-server-carousel-wrapper {
    padding: 0 40px;
  }
}

/* Mobile - 1 item per view */
@media (max-width: 767px) {
  .dedicated-server-carousel-item {
    width: 100%; /* 100% / 1 = 100% */
    max-width: 100%;
    min-width: 100%;
    padding: 0 8px;
  }
  
  .dedicated-server-carousel-wrapper {
    padding: 0 35px;
  }
}

/* Card Styles */
.dedicated-server-card {
  background-color: rgb(255, 246, 246);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.dedicated-server-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dedicated-server-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.dedicated-server-card p {
  font-size: 16px;
  color: #333;
  margin: 0;
  word-wrap: break-word;
}

/* Control Buttons */
.dedicated-server-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dedicated-server-carousel-control:hover {
  background-color: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dedicated-server-carousel-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

.dedicated-server-carousel-control.prev {
  left: 5px;
}

.dedicated-server-carousel-control.next {
  right: 5px;
}

/* Indicator Dots */
.dedicated-server-carousel-indicators {
  display: none;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background-color: #333;
}

.indicator-dot:hover {
  background-color: #666;
}

/* Responsive Design */
@media (max-width: 991px) {
  .dedicated-server-carousel-container {
    max-width: 100%;
    padding: 20px 5px;
    margin: 50px auto;
  }
}

@media (max-width: 767px) {
  .dedicated-server-carousel-container {
    max-width: 100%;
    padding: 15px 0;
    margin: 40px auto;
    width: 100%;
  }
  
  .dedicated-server-carousel-title {
    font-size: 28px;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  
  .dedicated-server-carousel-wrapper {
    padding: 0 30px;
    max-width: 100%;
    width: 100%;
  }
  
  .dedicated-server-carousel-control {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .dedicated-server-carousel-control.prev {
    left: 2px;
  }
  
  .dedicated-server-carousel-control.next {
    right: 2px;
  }
  
  .dedicated-server-carousel-indicators {
    display: flex;
  }
  
  .dedicated-server-card {
    padding: 18px 12px;
  }
  
  .dedicated-server-card img {
    width: 70px;
    height: 70px;
  }
  
  .dedicated-server-card p {
    font-size: 15px;
  }
}

@media (max-width: 479px) {
  .dedicated-server-carousel-container {
    padding: 10px 0;
    margin: 30px auto;
  }
  
  .dedicated-server-carousel-title {
    font-size: 24px;
    padding: 0 5px;
  }
  
  .dedicated-server-carousel-wrapper {
    padding: 0 25px;
  }
  
  .dedicated-server-carousel-control {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .dedicated-server-card {
    padding: 15px 8px;
  }
  
  .dedicated-server-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }
  
  .dedicated-server-card p {
    font-size: 14px;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .dedicated-server-carousel-wrapper {
    padding: 0 20px;
  }
  
  .dedicated-server-carousel-control {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .dedicated-server-card {
    padding: 12px 6px;
  }
  
  .dedicated-server-card img {
    width: 50px;
    height: 50px;
  }
  
  .dedicated-server-card p {
    font-size: 12px;
  }
}

/* Cloud Solutions Enhancement */
.cloud-compute-solutions-container-main {
  width: 100%;
  margin-top: 20px;
  padding: 90px 0 70px;
  background-color: #f8f9fc;
}

.cloud-compute-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cloud-compute-solutions-title {
  text-align: center;
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

.cloud-compute-solutions-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.cloud-compute-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.cloud-compute-solutions-card {
  background-color: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.cloud-compute-solutions-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cloud-compute-solutions-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cloud-compute-solutions-icon {
  width: 65px;
  height: 65px;
  margin-right: 20px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.cloud-compute-solutions-card:hover .cloud-compute-solutions-icon {
  transform: scale(1.1) rotate(5deg);
}

.cloud-compute-solutions-card-title {
  font-size: 1.4rem;
  color: #0066cc;
  margin: 0;
  font-weight: 600;
}

.cloud-compute-solutions-description {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Steps Section Enhancement */
.cloud-compute-steps-container-main {
  width: 100%;
  background-color: #eaf6ff;
  padding: 90px 0;
}

.cloud-compute-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.cloud-compute-steps-heading {
  font-size: 2.6rem;
  margin-bottom: 50px;
  color: #1a1a1a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.cloud-compute-steps-heading:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.cloud-compute-steps-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.cloud-compute-steps-image:hover {
  transform: scale(1.02);
}

/* Features Section Enhancement */

.dedicated-server-features-container {
  max-width: 1200px;
  width: 100%;
  margin: 20px auto;
  padding: 0 20px;
}

.dedicated-server-features-title {
  text-align: center;
  color: #1a1a1a;
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.dedicated-server-features-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  margin: 0 auto 60px;
}

.dedicated-server-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.dedicated-server-features-card {
  background-color: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.dedicated-server-features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dedicated-server-features-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dedicated-server-features-card:hover:before {
  transform: scaleX(1);
}

.dedicated-server-features-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.dedicated-server-features-card:hover .dedicated-server-features-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.dedicated-server-features-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a0a0a;
}

.dedicated-server-features-card-content {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/*------------------dedicated-server-form ---------------------*/

.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 10px;
  background-color: #ffffff;
}

.cloud-compute-form-container {
  background: rgb(0, 12, 45);
  background: linear-gradient(
    90deg,
    rgba(0, 12, 45, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
}

.cloud-compute-form-left {
  flex: 1;
  padding-right: 2rem;
}

.cloud-compute-form-right {
  flex: 1;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
}

.cloud-compute-form-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cloud-compute-form-subtitle {
  margin-bottom: 2rem;
  font-weight: 600;
}

.cloud-compute-form-contact-info {
  margin-bottom: 1rem;
}

.cloud-compute-form-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cloud-compute-form-social-icon {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.cloud-compute-form-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cloud-compute-form-input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cloud-compute-form-submit {
  background-color: black;
  font-weight: 600;
  border: 2px solid black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .cloud-compute-form-container {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .cloud-compute-form-container {
    flex-direction: column;
    padding: 1.5rem;
  }

  .cloud-compute-form-left,
  .cloud-compute-form-right {
    flex: none;
    width: 100%;
    padding: 1rem;
  }

  .cloud-compute-form-left {
    padding-right: 1rem;
    margin-bottom: 1.5rem;
  }

  .cloud-compute-form-title {
    font-size: 1.75rem;
  }

  .cloud-compute-form-subtitle {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .cloud-compute-form-container-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cloud-compute-form-container {
    padding: 1rem;
  }

  .cloud-compute-form-left,
  .cloud-compute-form-right {
    padding: 0.5rem;
  }

  .cloud-compute-form-title {
    font-size: 1.5rem;
  }

  .cloud-compute-form-subtitle {
    font-size: 0.8rem;
  }

  .cloud-compute-form-social-icons {
    justify-content: center;
  }

  .cloud-compute-form-submit {
    padding: 0.5rem;
  }
}

/* FAQ Section Enhancement */
.cloud-compute-questions-main {
  width: 100%;
  padding: 90px 0;
  background-color: white;
}

.cloud-compute-questions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cloud-compute-questions h1 {
  text-align: center;
  color: #1a1a1a;
  font-size: 2.6rem;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

.cloud-compute-questions h1:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.cloud-compute-questions-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cloud-compute-questions-subgrid1,
.cloud-compute-questions-subgrid2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.cloud-compute-questions-item {
  background-color: white;
  border-radius: 12px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.cloud-compute-questions-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cloud-compute-questions-item h2 {
  color: #0a0a0a;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  transition: color 0.3s ease;
}

.cloud-compute-questions-item h2::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #0080ff;
  transition: transform 0.3s ease;
}

.cloud-compute-questions-item.active {
  background-color: #f0f7ff;
}

.cloud-compute-questions-item.active h2 {
  color: #0080ff;
}

.cloud-compute-questions-item.active h2::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.cloud-compute-questions-answer {
  display: none;
  margin-top: 15px;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cloud-compute-questions-item.active .cloud-compute-questions-answer {
  display: block;
  animation: fadeInDown 0.4s ease-out;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-zoom-in {
  animation: zoomIn 0.5s ease-out;
}

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Additional Global Styles */
.section-padding {
  padding: 100px 0;
}

.text-gradient {
  background: linear-gradient(90deg, #0080ff, #4a0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-modern {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0080ff, #4a0080);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 128, 255, 0.25);
}

/* Responsive Media Queries - Enhanced */
@media (max-width: 1200px) {
  .cloud-compute-hero-title {
    font-size: 2.5rem;
  }
  
  .cloud-compute-solutions-grid,
  .dedicated-server-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .cloud-compute-hero-title {
    font-size: 2.2rem;
  }
  
  .dedicated-server-services-heading h1,
  .cloud-compute-solutions-title,
  .dedicated-server-carousel-title,
  .cloud-compute-steps-heading,
  .dedicated-server-features-title,
  .cloud-compute-questions h1 {
    font-size: 2.2rem;
  }
  
  .cloud-compute-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .cloud-compute-hero-title {
    font-size: 1.8rem;
  }
  
  .cloud-compute-hero-subtitle {
    font-size: 1rem;
  }
  
  .dedicated-server-services-heading h1,
  .cloud-compute-solutions-title,
  .dedicated-server-carousel-title,
  .cloud-compute-steps-heading,
  .dedicated-server-features-title,
  .cloud-compute-questions h1 {
    font-size: 1.8rem;
  }
  
  .cloud-compute-form-container {
    flex-direction: column;
  }
  
  .cloud-compute-form-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .cloud-compute-questions-grid {
    flex-direction: column;
  }
  
  .cloud-compute-questions-subgrid1,
  .cloud-compute-questions-subgrid2 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .cloud-compute-hero-title {
    font-size: 1.6rem;
  }
  
  .cloud-compute-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .dedicated-server-services-heading h1,
  .cloud-compute-solutions-title,
  .dedicated-server-carousel-title,
  .cloud-compute-steps-heading,
  .dedicated-server-features-title,
  .cloud-compute-questions h1 {
    font-size: 1.6rem;
  }
}