/* Base Styles */
:root {
  --primary-color: #000c2d;
  --secondary-color: #0047ab;
  --accent-color: #4a0080;
  --gradient-primary: linear-gradient(135deg, #000c2d, #0047ab);
  --gradient-accent: linear-gradient(135deg, #4a0080, #0080ff);
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {

  height: auto;
}

/* Section wrappers - Unique for each section */
.hero-wrapper,
.stats-wrapper,
.services-wrapper,
.features-wrapper,
.why-us-wrapper,
.benefits-wrapper,
.cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-padding {
  padding: 70px 0;
  min-height: 80vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 5px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 12, 45, 0.2);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 12, 45, 0.3);
}

.btn-secondary {
  background: var(--text-light);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: var(--gradient-accent);
  color: var(--text-light);
}

.btn i {
  margin-left: 10px;
  transition: var(--transition);
}

.btn:hover i {
  transform: translateX(5px);
}

/* Ripple effect for buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Particles background for hero */
.particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Header Placeholder */
#header {
  min-height: 80px;
}

/* Hero Section - Keep at 100vh */
.hero-section {
  min-height: 100vh;
  height: 100vh;
  background: var(--gradient-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: -80px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  padding: 80px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
  justify-content: center;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  opacity: 0.05;
  background: #fff;
}

.hero-shape:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 52% 48% 48% 52% / 44% 56% 44% 56%;
  animation: morph 10s linear infinite alternate;
}

.hero-shape:nth-child(2) {
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 13s linear infinite alternate;
}

.hero-shape:nth-child(3) {
  top: 50%;
  left: 40%;
  width: 200px;
  height: 200px;
  border-radius: 35% 65% 31% 69% / 57% 59% 41% 43%;
  animation: morph 8s linear infinite alternate;
}

/* Stats Counter Section */
.stats-section {
  background-color: var(--bg-white);
  padding: 40px 0;
  margin-top: -80px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--box-shadow);
  min-height: auto; /* Override the 80vh for stats */
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  color: var(--secondary-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-color);
  font-family: 'Rubik', sans-serif;
}

.stat-title {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.services-wrapper {
  flex: 1;
}

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

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--box-shadow-hover);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-light);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  transform: rotateY(180deg);
}

.service-icon img {
  max-width: 50px;
  max-height: 50px;
  transition: var(--transition);
}

.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
  transform: rotateY(180deg);
}

.service-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.service-description {
  margin-bottom: 20px;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}

.service-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-color);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Rack Space offering section */
.colocation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
}

.colocation-content {
  flex: 1;
  padding-right: 50px;
}

h2 {
  font-size: 32px;
  color: #1e2a38;
  margin-bottom: 15px;
}

p {
  color: #5f6b7a;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
}

.accordion {
  margin-top: 20px;
}

.accordion-item {
  border-bottom: 1px solid #dcdfe5;
}

.accordion-btn {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 15px 0;
  cursor: pointer;
  color: #1e2a38;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion-btn .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.accordion-btn.active .icon {
  transform: rotate(180deg); /* Rotates + into × visually */
}

/* NEW: Smooth accordion open/close */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
  font-size: 14px;
  color: #5f6b7a;
}

.accordion-content.show {
  max-height: 500px;
  padding: 1rem;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 20px;
}

.btn:hover {
  background-color: #1a252f;
}

.arrow {
  font-size: 18px;
  margin-left: 5px;
}

.colocation-image {
  flex: 1;
  text-align: right;
}

.colocation-image img {
  max-width: 100%;
  border-radius: 10px;
}


/* Features Section */
.features-section {
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.features-wrapper {
  flex: 1;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-row:nth-child(even) .feature-image {
  transform: translateX(50px);
}

.feature-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.feature-row:hover .feature-image img {
  transform: scale(1.05);
}

.feature-content {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-row:nth-child(even) .feature-content {
  transform: translateX(-50px);
}

.feature-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.feature-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-left: 20px;
}

.feature-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: var(--gradient-accent);
  border-radius: 5px;
}

.feature-description {
  margin-bottom: 20px;
  color: var(--text-gray);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list-item {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
}

.feature-list-item::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
}
/* Why Choose Us Section */
.why-us-section {
  background: var(--gradient-primary);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.why-us-wrapper {
  flex: 1;
}

.why-us-section .section-title h2 {
  color: var(--text-light);
}

.why-us-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.why-us-section .section-title h2::after {
  background: var(--text-light);
}

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

.why-us-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.why-us-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.why-us-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.why-us-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--bg-light);
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-wrapper {
  flex: 1;
}

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

.benefit-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--bg-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-accent);
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon::before {
  left: 100%;
  transition: 0.7s;
}

.benefit-icon img {
  max-width: 50px;
  max-height: 50px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon img {
  filter: brightness(0) invert(1);
}

.benefit-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.benefit-description {
  color: var(--text-gray);
  line-height: 1.6;
}

.icon-box {
  width: 100px;
  height: 100px;
  background-color: #1E3A72; /* Dark Blue */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-box i {
  color: white;
  font-size: 40px;
}

.text {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-accent);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 50vh; /* Make CTA smaller */
}

.cta-wrapper {
  flex: 1;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Footer Placeholder */
#footer {
  min-height: 300px;
  background-color: var(--primary-color);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Float Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Morph Animation */
@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 40% 60%;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-wrapper,
  .stats-wrapper,
  .services-wrapper,
  .features-wrapper,
  .why-us-wrapper,
  .benefits-wrapper,
  .cta-wrapper {
    max-width: 95%;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

@media (max-width: 992px) {
  .section-padding {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .feature-row {
    flex-direction: column !important;
    gap: 40px;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .feature-title {
    font-size: 1.6rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
  
  .why-us-icon {
    font-size: 2rem;
  }
  
  .why-us-title {
    font-size: 1.2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon img {
    max-width: 35px;
    max-height: 35px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .benefit-title {
    font-size: 1.3rem;
  }
}

/* Animation Classes for AOS */
[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}


/*------------------contact-us-form ---------------------*/

.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 50px;
  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: 5vh 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;
  align-items: center;
  justify-content: center;
  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;
  }
}



/*------------------testimonial---------------------*/
.colocation-carousel-main{
  width: 100%;
  background-color: #fff;
}

.colocation-carousel {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 12px;
}

.colocation-carousel-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.colocation-carousel-title {
  font-size: 36px;
  font-weight: 700;
  color: #000c2d;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.colocation-carousel-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4a0080, #0080ff);
  border-radius: 5px;
}

.colocation-carousel-subtitle {
  display: inline-block;
  font-size: 18px;
  color: #0047ab;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.colocation-carousel-subtitle::before,
.colocation-carousel-subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #0047ab;
  vertical-align: middle;
  margin: 0 8px;
}

/* Testimonial container */
.colocation-carousel-container {
  overflow: hidden;
  width: 100%;
}

.colocation-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.colocation-carousel-slide {
  flex: 0 0 33.333%; /* Show 3 at a time on desktop */
  min-width: 0; /* Prevent content from overflowing */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 0 10px;
  box-sizing: border-box;
}

.colocation-carousel-slide.active {
  opacity: 1;
}

/* Client testimonial boxes */
.colocation-carousel-testimonial {
  height: 100%;
  background: linear-gradient(135deg, rgba(0,12,45,0.03), rgba(0,71,171,0.03));
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 51, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #000c2d;
  display: flex;
  flex-direction: column;
}

.colocation-carousel-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 51, 0.15);
}

.colocation-carousel-client-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-left: 25px;
  flex: 1;
}

.colocation-carousel-client-quote::before {
  content: '"';
  font-size: 40px;
  position: absolute;
  left: 0;
  top: -10px;
  color: #0047ab;
  font-family: Georgia, serif;
  opacity: 0.4;
}

.colocation-carousel-client-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  background-color: rgba(0, 12, 45, 0.03);
  padding: 15px;
  border-radius: 8px;
}

.colocation-carousel-client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #0047ab;
}

.colocation-carousel-client-details {
  flex: 1;
  min-width: 0; /* Prevent text overflow */
}

.colocation-carousel-client-name {
  font-size: 18px;
  font-weight: 700;
  color: #000c2d;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.colocation-carousel-client-position {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.colocation-carousel-client-company {
  display: inline-block;
  height: 24px;
  max-width: 100%;
}

/* Controls */
.colocation-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

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

.colocation-carousel-indicator.active {
  background: linear-gradient(135deg, #000c2d, #0047ab);
  width: 30px;
  border-radius: 10px;
}

.colocation-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.colocation-carousel-button:hover {
  background: linear-gradient(135deg, #000c2d, #0047ab);
}

.colocation-carousel-button:hover svg path {
  stroke: white;
}

.colocation-carousel-button-prev {
  left: 10px;
}

.colocation-carousel-button-next {
  right: 10px;
}

.colocation-carousel-avatar-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.colocation-carousel-avatar-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.colocation-carousel-avatar-item.active {
  border-color: #0047ab;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .colocation-carousel-slide {
    flex: 0 0 50%; /* Show 2 at a time on medium screens */
  }
  
  .colocation-carousel-button {
    top: auto;
    bottom: 20px;
    transform: none;
  }
  
  .colocation-carousel {
    padding: 40px 20px 70px;
  }
}

@media (max-width: 768px) {
  .colocation-carousel-slide {
    flex: 0 0 100%; /* Show 1 at a time on small screens */
    padding: 0 5px;
  }
  
  .colocation-carousel-title {
    font-size: 28px;
  }
  
  .colocation-carousel-testimonial {
    padding: 20px;
  }
  
  .colocation-carousel-client-info {
    flex-direction: column;
    text-align: center;
  }
  
  .colocation-carousel-client-avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .colocation-carousel-title {
    font-size: 24px;
  }
  
  .colocation-carousel-subtitle {
    font-size: 16px;
  }
  
  .colocation-carousel-client-name {
    font-size: 16px;
  }
  
  .colocation-carousel-avatar-row {
    gap: 10px;
  }
  
  .colocation-carousel-avatar-item {
    width: 40px;
    height: 40px;
  }
}