/********** slider +header start ********/
:root {
  /* CloudTech color scheme - extracted from logo */
  --primary-blue: #0099FF;
  --secondary-blue: #0066CC;
  --dark-blue: #17355A;
  --light-blue: #E6F4FF;
  --primary-orange: #FFA500;
  --secondary-orange: #FF8C00;
  --white: #FFFFFF;
  --black: #000000;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: var(--white);
  overflow-x: hidden;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7-7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),
    linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
  background-attachment: fixed;
}

/* Header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

/* Change header background to white when scrolled */
.header-scrolled {
  background-color: var(--white);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo-container {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.logo {
  max-height: 80px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.nav-left .nav-menu li {
  margin-right: 20px;
}

.nav-right .nav-menu li {
  margin-left: 20px;
}

.nav-menu li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* Change menu text to black when header is scrolled */
.header-scrolled .nav-menu li a {
  color: var(--black);
  font-weight: 700;
  text-shadow: none;
}

.nav-menu li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: -1;
}

.nav-menu li a:hover {
  color: var(--white);
}

.header-scrolled .nav-menu li a:hover {
  color: var(--white);
}

.nav-menu li a:hover:before {
  transform: scaleY(1);
}

.nav-menu li a.active {
  color: var(--white);
  position: relative;
  border-bottom: 3px solid var(--primary-orange);
}

.header-scrolled .nav-menu li a.active {
  color: var(--black);
  border-bottom: 3px solid var(--primary-orange);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}

.header-scrolled .menu-btn {
  color: var(--black);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

/* Change dropdown background to white */
.nav-services-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 5px;
}

.nav-dropdown:hover .nav-services-menu {
  display: block;
}

/* Dropdown items - Always black text regardless of header state */
.nav-services-menu a {
  color: var(--dark-gray) !important;
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 1.5;
  height: auto;
  font-weight: 600;
  text-shadow: none !important;
}

/* Dropdown hover state - Set to blue background with white text */
.nav-services-menu a:hover {
  background-color: var(--primary-blue);
  color: var(--white) !important;
}

.nav-has-submenu {
  position: relative;
}

/* Change submenu background to white */
.nav-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--white);
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-radius: 5px;
}

.nav-submenu a {
  color: var(--dark-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-submenu a:hover {
  background-color: var(--light-blue);
  color: var(--primary-blue);
}

.nav-has-submenu:hover .nav-submenu {
  display: block;
}

/* Mobile Menu Styles - New Design */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.mobile-logo {
  height: 40px;
}

.mobile-menu-toggle {
  background: var(--primary-blue);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 80vh;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 1050;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-link.active {
  color: var(--primary-blue);
  border-left: 4px solid var(--primary-blue);
  background-color: var(--light-blue);
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: var(--dark-gray);
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s;
  padding: 5px;
}

.mobile-dropdown-toggle.active {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background-color: #f9f9f9;
  padding-left: 20px;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-submenu {
  display: none;
  background-color: #f0f0f0;
  padding-left: 20px;
}

.mobile-submenu.active {
  display: block;
}

/* Slider Section */
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.video-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.video-slide.active {
  opacity: 1;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-btn {
  padding: 12px 24px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

.slide-btn:hover {
  background-color: var(--secondary-blue);
}

.slide-btn.orange {
  background-color: var(--primary-orange);
}

.slide-btn.orange:hover {
  background-color: var(--secondary-orange);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.slider-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
}

.slider-nav-btn.active {
  background-color: var(--primary-blue);
}

.slider-arrows {
  position: absolute;
  width: calc(100% - 80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-arrow.prev {
  margin-left: 20px;
}

.slider-arrow.next {
  margin-right: 20px;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider-arrow i {
  font-size: 24px;
  color: #333;
}



/* Contact buttons */
.contact-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.contact-btn {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0;
  color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.1);
}

/* Mobile contact buttons */
.mobile-contact-buttons {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 10px;
  z-index: 100;
  flex-direction: column;
}

/* Chat button */
.chat-btn {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 1050 !important;
  background-color: var(--eco-green);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 14px;
  display: inline-flex !important;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: none !important;
  margin: 0 !important;
}

.chat-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-btn:hover {
  transform: scale(1.05) !important;
  background-color: var(--secondary-orange);
}

.chat-btn i {
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .nav-left .nav-menu li {
    margin-right: 10px;
  }

  .nav-right .nav-menu li {
    margin-left: 10px;
  }

  .nav-menu li a {
    padding: 0 10px;
    font-size: 13px;
  }
}


@media (max-width: 940px) {


  .slider-container {
    height: 45.5vh;
    /* 75% of original 50vh */
    margin-top: 60px;
  }

  /* .slide {
    background-size: cover;
  } */

}

@media (max-width: 768px) {
  .header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .slider-container {
    height: 45.5vh;
    /* 75% of original 50vh */
    margin-top: 60px;
  }

  .slide {
    background-size: cover;
  }

  .slide-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .slider-arrows {
    width: 100%;
    padding: 0 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow i {
    font-size: 20px;
  }

  .slider-nav {
    bottom: 15px;
  }

  .contact-buttons {
    display: none;
  }

  .mobile-contact-buttons {
    display: flex;
  }

  .chat-btn {
    bottom: 15px !important;
    right: 15px !important;
    padding: 8px 14px;
    font-size: 13px;
  }
}


@media (max-width: 470px) {


  .slider-container {
    height: 25.5vh;

  }
}

@media (max-width: 320px) {


  .slider-container {
    height: 21.9vh;

  }
}

/******* slider + header end ***********/
/* Changes focused on fixing mobile image gap */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* CloudTech Product Section Styles */
.cloudtech-products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  /* Reduced top/bottom padding */
  position: relative;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),
    linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
}

/* Background decorative elements */
.cloudtech-products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(52, 178, 51, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(13, 146, 255, 0.05) 0%, transparent 30%);
  z-index: -1;
}

.cloudtech-section-header {
  text-align: center;
  margin-bottom: 15px;
  /* Reduced margin */
  position: relative;
}

.cloudtech-section-tagline {
  font-size: 1.2rem;
  color: #34b233;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  display: inline-block;
}

.cloudtech-section-tagline::before,
.cloudtech-section-tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: #34b233;
}

.cloudtech-section-tagline::before {
  left: -50px;
}

.cloudtech-section-tagline::after {
  right: -50px;
}

.cloudtech-section-header h2 {
  font-size: 3.5rem;
  color: #222;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.cloudtech-section-header h2 span {
  color: #0d92ff;
  position: relative;
}

.cloudtech-section-header h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background-color: #0d92ff;
}

.cloudtech-section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.cloudtech-section-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  /* Reduced margin */
  flex-wrap: wrap;
  position: relative;
}

.cloudtech-section-controls::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #34b233, #0d92ff);
  border-radius: 3px;
}

.cloudtech-controls-filter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cloudtech-filter-btn {
  padding: 12px 24px;
  background-color: transparent;
  color: #333;
  border: 2px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cloudtech-filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0d92ff, #34b233);
  transition: all 0.4s ease;
  z-index: -1;
}

.cloudtech-filter-btn:hover {
  border-color: #0d92ff;
  color: #fff;
}

.cloudtech-filter-btn:hover::before {
  left: 0;
}

.cloudtech-filter-btn.active {
  background: linear-gradient(to right, #0d92ff, #34b233);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(13, 146, 255, 0.3);
  transform: translateY(-3px);
}

.cloudtech-filter-btn.active::before {
  left: 0;
}

.cloudtech-filter-btn i {
  font-size: 1.1rem;
}

.cloudtech-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  gap: 30px;
  /* Reduced gap */
  max-width: 1200px;
  margin: 0 auto;
}

.cloudtech-product-wrapper {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cloudtech-product-wrapper.animate {
  opacity: 1;
  transform: translateY(0);
}

.cloudtech-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(13, 146, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cloudtech-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 146, 255, 0.2);
  border-color: rgba(13, 146, 255, 0.3);
}

/* Updated product image styles */
.cloudtech-product-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-bottom: none;
  /* Remove bottom border */
}

.cloudtech-product-image img {
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 1s ease;
  display: block;
  /* Ensure block display */
  margin: 0;
  /* Remove any margin */
}

.cloudtech-product-card:hover .cloudtech-product-image img {
  transform: scale(1.08);
}

/* Modified the ::after pseudo-element to remove the gradient at the bottom */
.cloudtech-product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}

.cloudtech-category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #34b233, #2a9229);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(52, 178, 51, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.cloudtech-product-content {
  padding: 20px;
  /* Reduced padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  border-top: none;
  /* Ensure no border at the top of content */
}

.cloudtech-product-name {
  padding-bottom: 15px;
  /* Reduced padding */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
  /* Reduced margin */
}

.cloudtech-product-name h3 {
  color: #222;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #0d92ff 0%, #34b233 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.cloudtech-product-name h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #0d92ff, #34b233);
  border-radius: 3px;
}

.cloudtech-product-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 20px 0;
  /* Reduced margin */
  flex-grow: 1;
}

.cloudtech-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Reduced gap */
  margin-bottom: 5px;
}

.cloudtech-feature {
  padding: 6px 14px;
  background-color: rgba(13, 146, 255, 0.08);
  color: #0d92ff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cloudtech-view-more {
  background: linear-gradient(135deg, #0d92ff, #0080ff);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 5px 15px rgba(13, 146, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.cloudtech-view-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0080ff, #34b233);
  transition: all 0.4s ease;
  z-index: -1;
}

.cloudtech-view-more:hover {
  box-shadow: 0 8px 20px rgba(13, 146, 255, 0.5);
  transform: translateY(-3px);
}

.cloudtech-view-more:hover::before {
  left: 0;
}

.cloudtech-view-more i {
  transition: transform 0.3s ease;
}

.cloudtech-view-more:hover i {
  transform: translateX(5px);
}

.cloudtech-section-footer {
  text-align: center;
  margin-top: 50px;
  /* Reduced margin */
}

.cloudtech-explore-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #0d92ff;
  padding: 15px 30px;
  border: 2px solid #0d92ff;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cloudtech-explore-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0d92ff, #34b233);
  transition: all 0.4s ease;
  z-index: -1;
}

.cloudtech-explore-all:hover {
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(13, 146, 255, 0.3);
}

.cloudtech-explore-all:hover::before {
  left: 0;
}

.cloudtech-explore-all i {
  transition: transform 0.3s ease;
}

.cloudtech-explore-all:hover i {
  transform: translateX(5px);
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .cloudtech-section-header h2 {
    font-size: 3rem;
  }

  .cloudtech-product-image {
    height: 250px;
    /* Maintain consistent height */
  }
}

@media screen and (max-width: 992px) {
  .cloudtech-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    /* Reduced gap */
  }

  .cloudtech-product-image {
    height: 220px;
  }

  .cloudtech-product-content {
    padding: 18px;
    /* Reduced padding */
  }

  .cloudtech-product-name h3 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .cloudtech-section-header h2 {
    font-size: 2.5rem;
  }

  .cloudtech-section-header p {
    font-size: 1rem;
  }

  .cloudtech-section-controls {
    flex-direction: column;
    gap: 15px;
  }

  .cloudtech-products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* UPDATED: Fixed product image container and image display on mobile */
  .cloudtech-product-image {
    height: auto;
    /* Auto height to adjust to content */
    max-height: none;
    /* Remove max-height constraint */
    padding: 0;
    /* Remove any padding */
    line-height: 0;
    /* Remove line height */
    font-size: 0;
    /* Remove font size to prevent space */
  }

  .cloudtech-product-image img {
    width: 100%;
    /* Full width */
    display: block;
    /* Ensure block display */
    margin: 0;
    /* Remove any margins */
    vertical-align: bottom;
    /* Align to bottom to prevent space */
  }

  /* Removed the gradient overlay completely */
  .cloudtech-product-image::after {
    display: none;
  }

  /* Ensure no gap between image and content */
  .cloudtech-product-content {
    margin-top: 0;
    border-top: none;
    padding-top: 20px;
  }

  .cloudtech-filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 576px) {
  .cloudtech-section-header h2 {
    font-size: 2rem;
  }

  .cloudtech-section-tagline {
    font-size: 1rem;
  }

  .cloudtech-section-tagline::before,
  .cloudtech-section-tagline::after {
    width: 25px;
  }

  .cloudtech-section-tagline::before {
    left: -30px;
  }

  .cloudtech-section-tagline::after {
    right: -30px;
  }

  .cloudtech-product-content {
    padding: 15px;
    /* Further reduced padding for mobile */
  }

  .cloudtech-product-name h3 {
    font-size: 1.2rem;
  }

  .cloudtech-filter-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .cloudtech-view-more {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .cloudtech-explore-all {
    padding: 12px 25px;
    font-size: 1rem;
  }
}


.cloudtech-product-image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.cloudtech-product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cloudtech-product-card {
  max-width: 100%;
  overflow: hidden;
}

@media(max-width: 768px) {
  .cloudtech-products-grid {
    grid-template-columns: 1fr;
  }
}

/************* Product end *****************/

/******** integrated section start [region] ******/
/* Cloud Tech Industries specific styles */
.ct-industries-header {
  text-align: center;
  padding: 10px 0;
}

.ct-industries-tagline {
  color: #939393;
  font-size: 1.2rem;
  margin: 5px 0 10px;
  font-weight: normal;
}

/* Navigation styles */
.ct-industries-nav {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.ct-industries-nav-link {
  text-decoration: none;
  color: #939393;
  padding: 0 15px;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ct-industries-nav-link.active {
  color: #0091FF;
}

.ct-industries-nav-link:hover {
  color: #0091FF;
}

.ct-industries-nav-link:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: 0;
  color: #939393;
}

/* Content section styles */
.ct-industries-content-section {
  display: flex;
  padding: 40px 5%;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 145, 255, 0.2);
}

.ct-industries-text-content {
  flex: 1;
  padding-right: 30px;
}

.ct-industries-section-heading {
  color: #0091FF;
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  font-weight: 700;
  padding-left: 15px;
}

.ct-industries-section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 80%;
  width: 5px;
  background-color: #0091FF;
}

.ct-industries-section-text {
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  padding-left: 15px;
}

/* Features with icons */
.ct-industries-features {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  padding-left: 15px;
}

.ct-industries-feature {
  display: flex;
  align-items: flex-start;
  width: 48%;
  margin-bottom: 15px;
  margin-right: 2%;
}

.ct-industries-feature-icon {
  color: #0091FF;
  font-size: 1.2rem;
  margin-right: 10px;
  width: 24px;
  text-align: center;
}

.ct-industries-feature-text {
  flex: 1;
  color: #555;
  font-size: 0.95rem;
}

.ct-industries-cta-button {
  display: inline-block;
  background-color: #0091FF;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  text-transform: lowercase;
  font-weight: bold;
  position: relative;
  border-radius: 3px;
  margin-left: 15px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 145, 255, 0.3);
}

.ct-industries-cta-button:hover {
  background-color: #007ad6;
}

.ct-industries-cta-button::after {
  content: "/";
  position: absolute;
  right: 10px;
  transform: rotate(25deg);
}

.ct-industries-image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ct-industries-section-image {
  width: 90%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
  transition: transform 0.3s ease;
}

.ct-industries-section-image:hover {
  transform: scale(1.02);
}

/* Hide non-active sections by default */
.ct-industries-content-section:not(.active) {
  display: none;
}

/* Green accent color from logo */
.ct-industries-eco-tag {
  display: inline-block;
  color: #2eb82e;
  font-size: 0.9rem;
  margin-top: 5px;
  margin-left: 15px;
  font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .ct-industries-section-heading {
    font-size: 1.6rem;
  }

  .ct-industries-text-content {
    padding-right: 25px;
  }

  .ct-industries-feature {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .ct-industries-content-section {
    flex-direction: column-reverse;
    padding: 30px 5%;
  }

  .ct-industries-text-content {
    padding-right: 0;
    margin-top: 25px;
    width: 100%;
  }

  .ct-industries-nav {
    flex-wrap: wrap;
  }

  .ct-industries-nav-link {
    padding: 5px 15px;
    margin-bottom: 5px;
  }

  .ct-industries-section-image {
    width: 90%;
    margin-bottom: 15px;
  }

  .ct-industries-image-content {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .ct-industries-section-heading {
    font-size: 1.4rem;
  }

  .ct-industries-tagline {
    font-size: 0.9rem;
  }

  .ct-industries-nav-link {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .ct-industries-cta-button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .ct-industries-features {
    flex-direction: column;
  }

  .ct-industries-feature {
    width: 100%;
  }

  .ct-industries-content-section {
    padding: 25px 4%;
  }
}

/********** integrated section end **********/
/*********** mission start **********/
:root {
  --cloud-blue: #0088ff;
  --dark-blue: #005bb5;
  --eco-green: #32b34a;
  --light-green: #e6f7e9;
  --dark-gray: #333333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --light-blue: #e6f4ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--white);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.cloudtech-mission-section {
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.cloudtech-mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 136, 255, 0.05), transparent);
  border-radius: 50%;
  z-index: -1;
}

.cloudtech-image-container {
  flex: 1;
  position: relative;
  height: 550px;
}

.cloudtech-main-image {
  width: 90%;
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.5s ease-out;
  border: 1px solid rgba(0, 91, 181, 0.1);
}

.cloudtech-overlay-image {
  width: 60%;
  height: 250px;
  background-color: var(--light-gray);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 5px solid var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.5s ease-out;
  transition-delay: 0.5s;
}

.cloudtech-content-container {
  flex: 1;
  position: relative;
}

.cloudtech-content-container::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background-color: var(--light-green);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

.cloudtech-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--cloud-blue);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.cloudtech-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--eco-green);
  border-radius: 2px;
}

.cloudtech-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cloudtech-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cloud-blue), var(--dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 91, 181, 0.2);
  margin-right: 15px;
}

.cloudtech-tagline {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 25px;
  font-style: italic;
  border-left: 3px solid var(--eco-green);
  padding-left: 15px;
}

.cloudtech-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 30px;
  position: relative;
  padding: 0 5px;
}

.cloudtech-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 91, 181, 0.1);
}

.cloudtech-service-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0, 136, 255, 0.08));
  border-radius: 10px;
  z-index: -1;
}

.cloudtech-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cloudtech-service-item:hover {
  transform: translateX(5px);
}

.cloudtech-service-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cloud-blue), var(--dark-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 91, 181, 0.2);
}

.cloudtech-learn-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--cloud-blue), var(--dark-blue));
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--cloud-blue);
  box-shadow: 0 5px 15px rgba(0, 91, 181, 0.2);
  position: relative;
  overflow: hidden;
}

.cloudtech-learn-more-btn::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: all 0.6s ease;
}

.cloudtech-learn-more-btn:hover::before {
  left: 100%;
}

.cloudtech-learn-more-btn:hover {
  background: transparent;
  color: var(--cloud-blue);
  transform: translateY(-3px);
}

.cloudtech-green-accent {
  color: var(--eco-green);
}

/* Animation class that gets added by JS */
.cloudtech-animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Placeholder for the images - in real implementation, replace with actual images */
.cloudtech-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0;
  color: #888;
  font-size: 14px;
  overflow: hidden;
}

.cloudtech-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.cloudtech-main-image:hover .cloudtech-placeholder img,
.cloudtech-overlay-image:hover .cloudtech-placeholder img {
  transform: scale(1.05);
}

/* Media Queries - Improved for better responsiveness */
@media (max-width: 1024px) {
  .cloudtech-mission-section {
    padding: 80px 40px;
    gap: 40px;
  }

  .cloudtech-section-title {
    font-size: 32px;
  }

  .cloudtech-main-image {
    height: 350px;
  }

  .cloudtech-overlay-image {
    height: 220px;
  }

  .cloudtech-content-container::after {
    right: -10px;
    top: -15px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 992px) {
  .cloudtech-mission-section {
    padding: 60px 30px;
    gap: 30px;
  }

  .cloudtech-image-container {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .cloudtech-mission-section {
    flex-direction: column;
    padding: 50px 25px;
  }

  .cloudtech-image-container {
    width: 100%;
    height: 450px;
    margin-bottom: 40px;
  }

  .cloudtech-main-image {
    width: 85%;
    height: 300px;
    margin: 0 auto;
  }

  .cloudtech-overlay-image {
    width: 50%;
    height: 200px;
    right: 50px;
  }

  .cloudtech-service-list {
    grid-template-columns: 1fr 1fr;
  }

  .cloudtech-content-container {
    padding: 0 15px;
  }

  .cloudtech-content-container::after {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .cloudtech-mission-section {
    padding: 40px 20px;
  }

  .cloudtech-image-container {
    height: 420px;
  }

  .cloudtech-main-image {
    width: 100%;
    height: 280px;
  }

  .cloudtech-overlay-image {
    width: 60%;
    height: 180px;
    right: 20px;
  }

  .cloudtech-logo-container {
    justify-content: center;
  }

  .cloudtech-section-title {
    font-size: 30px;
    text-align: center;
  }

  .cloudtech-tagline {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid var(--eco-green);
    padding-left: 0;
    padding-bottom: 10px;
  }

  .cloudtech-service-list {
    gap: 20px 10px;
  }
}

@media (max-width: 480px) {
  .cloudtech-mission-section {
    padding: 30px 15px;
  }

  .cloudtech-image-container {
    height: 350px;
  }

  .cloudtech-main-image {
    width: 100%;
    height: 220px;
  }

  .cloudtech-overlay-image {
    width: 55%;
    height: 160px;
    right: 10px;
  }

  .cloudtech-section-title {
    font-size: 26px;
  }

  .cloudtech-tagline {
    font-size: 16px;
  }

  .cloudtech-description {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  .cloudtech-service-list {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .cloudtech-service-icon {
    width: 35px;
    height: 35px;
  }

  .cloudtech-learn-more-btn {
    padding: 10px 25px;
    font-size: 14px;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .cloudtech-logo {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .cloudtech-content-container::after {
    display: none;
  }
}

/******* mission end ***********/

/****** global leader start *****/
/* CloudTech Environmental Section */
.cloudtech-env-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),
    linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
  background-attachment: fixed;
}

.cloudtech-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.cloudtech-title h2 {
  font-size: 36px;
  color: #0095ff;
  /* Matching logo blue color */
  margin-bottom: 15px;
  font-weight: 700;
}

.cloudtech-title p {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

.cloudtech-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cloudtech-map {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.cloudtech-map img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.cloudtech-info {
  flex: 1;
  min-width: 300px;
}

.cloudtech-info h3 {
  font-size: 28px;
  color: #0095ff;
  /* Matching logo blue color */
  margin-bottom: 20px;
  font-weight: 700;
}

.cloudtech-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cloudtech-testimonial {
  background: rgba(0, 149, 255, 0.05);
  /* Matching logo blue color */
  border-left: 4px solid #0095ff;
  /* Matching logo blue color */
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 30px;
}

.cloudtech-testimonial p {
  font-style: italic;
  margin-bottom: 10px !important;
}

.cloudtech-testimonial-author {
  font-weight: 600;
  color: #333;
}

.cloudtech-cta {
  display: inline-block;
  background: #0095ff;
  /* Matching logo blue color */
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cloudtech-cta:hover {
  background: #0077cc;
  /* Darker blue on hover */
}

.cloudtech-highlight {
  color: #0095ff;
  /* Matching logo blue color */
  font-weight: 600;
}

.cloudtech-eco-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 175, 76, 0.1);
  /* Matching logo green color */
  color: #22af4c;
  /* Matching logo green color */
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 20px;
  margin-right: 15px;
}

.cloudtech-eco-badge i {
  margin-right: 8px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .cloudtech-content {
    padding: 30px;
  }

  .cloudtech-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .cloudtech-env-section {
    padding: 40px 15px;
  }

  .cloudtech-content {
    flex-direction: column;
    padding: 25px;
  }

  .cloudtech-map {
    order: 2;
    width: 100%;
  }

  .cloudtech-info {
    order: 1;
    width: 100%;
  }

  .cloudtech-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .cloudtech-env-section {
    padding: 30px 10px;
  }

  .cloudtech-content {
    padding: 20px;
    border-radius: 15px;
  }

  .cloudtech-title h2 {
    font-size: 24px;
  }

  .cloudtech-info h3 {
    font-size: 20px;
  }

  .cloudtech-info p {
    font-size: 14px;
  }

  .cloudtech-cta {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 15px;
  }

  .cloudtech-eco-badge {
    display: inline-flex;
    margin-top: 15px;
    font-size: 14px;
    padding: 6px 12px;
  }
}

/****** global leader end *******/