* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
}



/* Main Hero Section CSS */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  height: 50vh;
  background: linear-gradient(135deg, #1f4068, #1b1b2f);
  color: white;
}

.hero-content {
  max-width: 50%;
  animation: fadeInaw 1s ease-in-out forwards, scaleInaw 1s ease-in-out forwards;

}


@keyframes fadeInaw {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleInaw {
  from {
    transform: scale(0.8); /* Start smaller */
  }
  to {
    transform: scale(1); /* End at normal size */
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
  line-height: 1.2;
  width: 888px;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #d1d1e9;
  width: 788px;
}

.hero-image {
  max-width: 45%;
  display: flex;
  justify-content: center;
  max-height: 389px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  margin-left: 110px;
  margin-top: 20px;
}

/* Responsive Adjustments for 360px to 480px */
@media (max-width: 480px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
    width: auto;
  }

  .hero-content p {
    font-size: 1rem;
    width: auto;
    margin: 15px 0;
  }

  .hero-image {
    max-width: 100%;
    margin: 20px 0 0;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0;
  }
}


/* Main Overview Section CSS */
.overview-section {
  margin: 30px;
  background-image: url(./images/overviewbg1-removebg-preview.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sub-section-overview {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 700px;
  margin-left: 650px;
}

.overview-section p {
  text-align: center;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 1.2em;
  padding: 10px 30px;
  color: #555;
}

.overview-section p:hover {
  color: #0073e6;
  transition: color 0.3s;
}

.overview-section button {
  padding: 10px;
  margin-left: 540px;
}

.Overview-button {
  color: white;
  /* padding: 8px; */
  font-size: 18px;
  /* background-color: #5BB949; */
  border: 2px solid #E5F3FF;
  transition: transform 0.2s ease-in-out;
  font-family: Arial, sans-serif;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s, transform 0.3s;
  margin: 0 auto;
  width: max-content;
  font-size: 19px;
  display: block;
}

.Overview-button .button-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.Overview-button:hover {
  background-color: #4a9f3b;
  transform: translateY(-3px);
}

.Overview-button:focus {
  outline: none;
  box-shadow: 0 0 2px #E5F3FF;
}

.aws-services-name {
  font-weight: bold;
}

/* Responsive Adjustments for 360px to 480px */
@media (max-width: 480px) {
  .overview-section {
    margin: 10px;
    background-position: center top;
    background-size: cover;
  }

  .sub-section-overview {
    width: auto;
    margin: 0;
    padding: 15px;
  }

  .overview-section p {
    font-size: 1rem;
    padding: 10px;

  }

  .Overview-button {
    font-size: 14px;
    padding: 10px;
    margin:auto;
    /* width: 100%; */
    /* margin-right: 200px; */
    position: absolute;
    right: 40px;
    /* top: 20px; */
    /* left: 0; */
  }
}


/* Main Benefits Container CSS */
.benefits-container {
  background-color: #e5f3ff;
  border-radius: 8px;
  padding: 30px;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.headline-benefits {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2.5rem;
  color: #1078BF;
  text-align: center;
  margin-bottom: 15px;
}

.benefits-description {
  font-size: 19px;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 20px;
  text-align: center;
}

.benefits-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.icon-container {
  text-align: center;
  margin: 10px;
  transition: transform 0.3s;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: iconFadeIn 0.5s forwards;
}

.icon-container:hover {
  transform: scale(1.1);
}

.sub-heading {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: italic;
  font-weight: 550;
  font-size: 1.3rem;
  color: #2C3E50;
}

.benefits-contact-button {
  display: inline-block;
  background-color: #5BB949;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  margin: 0 auto;
  width: fit-content;
  font-size: 19px;
  display: block;
}

.benefits-contact-button:hover {
  background-color: #4a9f3b;
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes iconFadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Adjustments for 360px to 480px */
@media (max-width: 480px) {
  .benefits-container {
    padding: 20px;
    max-width: 100%;
  }

  .headline-benefits {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .benefits-description {
    font-size: 1rem;
    padding: 0 10px;
    line-height: 1.4;
  }

  .benefits-icons {
    flex-direction: column;
    align-items: center;
  }

  .icon-container {
    margin: 15px 0;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .sub-heading {
    font-size: 1rem;
  }

  .benefits-contact-button {
    /* width: 100%; */
    font-size: 14px;
    padding: 10px;
    
  }
}

/* Main Services Container CSS */
.services {
  text-align: center;
  padding: 50px;
  background-color: #f9f9f9;
}

.services h1 {
  margin-bottom: 50px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2.5rem;
  color: #1078BF;
}

.services .service-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.services .service-item {
  width: 300px;
  margin: 20px;
  text-align: left;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.services .service-item h3 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: italic;
  font-weight: 550;
  font-size: 1.3rem;
  color: #2C3E50;
  margin-bottom: 10px;
}

.services .service-item p {
  font-size: 14px;
  color: #777;
  display: none;
}

.services  .contact {
  margin-top: 20px;
  display: block;
  margin-left: 600px;
  padding: 10px 20px;
  color: white;
  border-radius: 7px;
  text-decoration: none;
  font-size: 18px;
  background-color: #5BB949;
  border: 1px solid #E5F3FF;
  transition: transform 0.2s ease-in-out;
  font-family: Arial, sans-serif;
  width: fit-content;
}

.services  .contact:hover {
  background-color: #4a9f3b;
  transform: translateY(-3px);
}

.services .service-item i {
  font-size: 40px;
  color: #1d8fbd;
  margin-bottom: 20px;
}

/* Responsive Adjustments for 360px to 480px */
@media (max-width: 480px) {
  .services {
    padding: 20px;

  }

  .services h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .services .service-items {
    flex-direction: column;
    align-items: center;
  }

  .services .service-item {
    width: 90%;
    margin: 15px 0;
    padding: 15px;
  }

  .services .service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .services .service-item p {
    font-size: 13px;
  }

  .services .contact {
    font-size: 16px;
    padding: 8px 15px;
    width: max-content;
    /* position: absolute; */
    /* right: 200px; */
    margin: auto;
    /* left: 0; */
    /* background-color: blueviolet; */
    /* margin-right: 200px; */
  }

  .services .service-item i {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

/* case study */

/* Main How We Help Section Container CSS */
.hwh-section {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #f4f4f4;
  background-image: linear-gradient(to bottom, #f8f9fa, #fff);
}

.hwh-section h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2.5rem;
  color: #1078BF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hwh-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns on larger screens */
  gap: 20px;
  padding: 20px;
  animation: fadeIn 2s;
}

.hwh-card {
  background-color: #084C7F; /* Dark Blue */
  border-radius: 10px;
  padding: 20px;
  color: white; /* Light text for readability */
  transition: transform 0.2s, box-shadow 0.2s;
  animation: scaleUp 1s;
  position: relative;
  overflow: hidden;
}

.hwh-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.hwh-card img {
  width: 100%;
  height: 250px;
  border-radius: 10px 10px 0 0;
}

.hwh-card h2, .hwh-card h3 {
  color: white; /* Ensure headings are white for contrast */
  font-weight: bold;
}

.hwh-card h2 {
  font-size: 30px;
  margin-top: 0;
  text-align: center;
}

.hwh-card h3 {
  font-size: 18px;
  margin-top: 10px;
}

.hwh-overview p {
  margin-top: 50px;
}

.hwh-card p, .hwh-card ul {
  color: #E5F3FF; /* Light blue for paragraphs and list items */
}

.hwh-card ul {
  margin: 10px 0 20px 0;
  padding: 0;
  list-style-type: none; /* Remove list decorations */
}

.hwh-card ul li {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  animation: fadeInUp 0.5s forwards;
  opacity: 0; /* Start invisible */
}

.enquire {
  position: relative;
  bottom: 40px;
  margin-top: 50px;
  font-weight: bold;
  color: #007BFF;
  text-align: center;
  animation: pulse 2s infinite;
  font-size: 20px;
}

.enquire a {
  text-decoration: none;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.5); }
  to { transform: scale(1); }
}

@keyframes fadeInUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive Adjustments for 360px to 480px */
@media (max-width: 480px) {
  .hwh-section {
    padding: 10px;
  }

  .hwh-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hwh-container {
    grid-template-columns: 1fr; /* Single-column layout on smaller screens */
  }

  .hwh-card {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
  }

  .hwh-card h2 {
    font-size: 24px;
  }

  .hwh-card h3 {
    font-size: 16px;
  }

  .hwh-card p, .hwh-card ul li {
    font-size: 14px;
  }

  .hwh-card img {
    height: 200px;
  }

  .enquire {
    font-size: 18px;
    margin-top: 20px;
  }
}

/* Main Strategic Partnership Section Container CSS */
/* Default styling for larger screens including laptops */
.strategic-partnership-section {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Suitable for laptop and larger screens */
}

.container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 60px; /* More padding for larger screens */
  text-align: center;
  width: 90%;
  max-width: 900px; /* Max width for laptops */
}

.title {
  font-weight: bold;
  margin-bottom: 50px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2.5rem;
  color: #1078BF;
}

.integrations {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.integrations img {
  width: 100px;
  height: 100px;
  margin: 10px;
  opacity: 0.3;
  transition: opacity 0.3s, transform 0.3s;
}

.integrations img.active {
  opacity: 1;
  transform: scale(1.5);
}

.description {
  font-size: 20px;
  color: #084C7F;
  margin-bottom: 40px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.navigation i {
  font-size: 24px;
  color: #333333;
  margin: 0 10px;
  cursor: pointer;
}

.dots span {
  width: 10px;
  height: 10px;
  background-color: #d3d3d3;
  border-radius: 50%;
  margin: 0 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dots span.active {
  background-color: #333333;
}

/* Responsive Adjustments for Mobile Devices (360px - 480px) */
@media (max-width: 480px) {
 
  .container {
    padding: 20px;
    width: 90%;
    max-width: 480px;
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .integrations {
    justify-content: center;
    flex-wrap: wrap;
  }

  .integrations img {
    width: 40px;
    height: 40px;
    margin: 5px;
  }

  .integrations img.active {
    transform: scale(1.2);
  }

  .description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .navigation i {
    font-size: 16px;
    margin: 0 8px;
  }

  .dots span {
    width: 6px;
    height: 6px;
  }
}


/* Main Section Styling */
.syc-section {
  background: linear-gradient(to right, #1078BF, #5BB949); /* Gradient for the section */
  color: #fff; /* White text */
  margin: 1%; /* Slightly adjusted for better alignment on mobile */
  width: 100%;
  padding: 15px; /* Increased padding for mobile */
  text-align: center;
}

.syc-section h1 {
  color: white;
  font-size: 28px; /* Reduced font size for mobile */
  margin-bottom: 15px;
}

.syc-section h2 {
  font-size: 18px; /* Reduced font size for mobile */
  margin-bottom: 20px;
}

/* Button Styling */
.syc-button {
  background-color: #E5F3FF; /* Light Blue background for the button */
  border: none;
  color: #084C7F; /* Dark Blue text */
  padding: 8px 16px; /* Adjusted padding for better fit */
  font-size: 14px; /* Smaller font for mobile */
  margin: 6px 3px;
  border-radius: 4px; /* Rounded corners for the button */
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.syc-button:hover {
  background-color: #a5d4fc;
}

/* Responsive Adjustments for 360px to 480px */
@media (max-width: 480px) {
  .syc-section h1 {
    font-size: 24px; /* Further reduced font size */
    margin-bottom: 12px;
  }

  .syc-section h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .syc-button {
    padding: 8px 12px; /* Adjusted padding for smaller screens */
    font-size: 14px; /* Maintained smaller font size */
    margin: 4px 2px;
  }
}

