/* Global Styles */
/* AWS Hero Section */
.aws-hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  padding: 50px;
  position: relative;
}

.aws-hero-content {
  flex: 1;
}

.aws-heading {
  font-size: 60px;
  font-weight: bold;
  color: #232f3e;
  line-height: 1.2;
}

.img-sec img {
  max-width: 300px;
}

.aws-hero-section .img-sec {
  position: relative;
}

/* Partnership Section */
.partnership-section {
  padding: 50px 20px; /* Reduced padding for smaller screens */
  background-color: #ffffff;
}

.content-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.image-container {
  position: relative;
  flex: 1;
  max-width: 600px; /* Limit width for better scaling */
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aws-logo {
  position: absolute;
  bottom: 20px; /* Adjusted spacing for consistency */
  right: 20px;
}

.aws-logo img {
  width: 150px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.aws-logo img:hover {
  opacity: 1; /* Fully visible on hover */
  transform: scale(1.1); /* Add subtle zoom effect */
}

.text-container {
  flex: 1;
  padding-left: 30px;
  text-align: justify; /* Improve readability */
}

.text-container h1 {
  font-size: 2.5rem;
  color: #232f3e;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

/* Media Queries for responsiveness */
@media (max-width: 992px) {
  .content-container {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center content */
  }

  .text-container {
    padding-left: 0;
    margin-top: 20px;
    text-align: center; /* Center align text */
  }

  .text-container h1 {
    font-size: 2rem;
  }

  .text-container p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .image-container {
    max-width: 90%; /* Restrict image width on smaller screens */
  }

  .text-container h1 {
    font-size: 1.8rem;
  }

  .text-container p {
    font-size: 0.9rem;
  }

  .aws-logo img {
    width: 100px; /* Smaller logo size */
  }
}

@media (max-width: 576px) {
  .partnership-section {
    padding: 30px 10px; /* Further reduce padding for very small screens */
  }

  .text-container h1 {
    font-size: 1.5rem;
  }

  .text-container p {
    font-size: 0.85rem;
  }

  .aws-logo img {
    width: 80px; /* Adjust logo size further */
  }
}

  
  /* Benefits Section */

  /*  */
  .aws-container-heading {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.aws-container-main-heading {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4;
}

.para {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.para-all {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

@media only screen and (max-width: 768px) {
    .aws-container-main-heading {
        font-size: 28px;
    }

    .para-all {
        font-size: 16px;
    }

    .para {
        width: 90%;
        padding: 10px;
    }
}


  /*  */
  .benefits-section h1{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
    margin: 50px;
    color: #28a745;
    font-weight: 800;
    font-size: 50px;
  }
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .benefit-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    color: #666;
    /* align-content: center;
    text-align: center;
    justify-content: center; */
  }
  

  .benefit-card:hover {
    transform: translateY(-10px);
  }
  
  .benefit-card i {
    font-size: 3em;
    color: #17a2b8;
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    /* align-items: center;justify-content: center; */
  }
  
  .benefit-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
  }
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .benefit-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.benefit-card {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: left;
}

.benefit-card h3 {
  color: #303a52;
  font-size: 1.5em;
}

.benefit-card p {
  color: #6b7c93;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* container */
.benefit-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .benefit-card {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: left;
  }
  .benefit-card:hover{
    background-color: #73cd86;
    animation:step-end;
    animation-duration: 4s;
  }
  
  .benefit-card h3 {
    color: #303a52;
    font-size: 1.5em;
    position: relative;
  }
  
  .benefit-card h3 i {
    color: #00aa8d; /* Green arrow color */
    margin-right: 10px;
    font-size: 0.8em;
    transform: translateY(-2px); /* Align the arrow vertically */
  }
  
  .benefit-card p {
    color: #6b7c93;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  /* pdf */
  .pdf-download-container {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  /* Styling for the buttons */
  .pdf-button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #28a745;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
  }

  .pdf-button:hover {
    background-color: #218838;
  }
  /* Testimonials */

  /* body {
    font-family: Arial, sans-serif;
    margin: 0; 
    padding: 0; 
    background-color: #f0f2f5;
} */

/* .testimonials {
    background-color: #ffffff; 
    padding: 60px 0; 
    text-align: center; 
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}

h2 {
    margin-bottom: 40px; 
    color: #303a52;
}

.slider {
    position: relative; 
    overflow: hidden; 
}

.slider-wrapper {
    display: flex; 
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    background: #f9f9f9; 
    border-radius: 10px; 
    padding: 30px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    margin: 0 10px; 
    flex: 0 0 30%; 
    text-align: left; 
    opacity: 0.9; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.testimonial-item:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
    border-radius: 50%; 
    width: 80px; 
    height: 80px; 
    margin-bottom: 20px; 
    transition: transform 0.3s ease; 
}

.testimonial-img:hover {
    transform: rotate(15deg); 
}

.quote-icon-left,
.quote-icon-right {
    color: #00aa8d; 
}

.slider-button {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background-color: rgba(0, 170, 141, 0.8); 
    color: white; 
    border: none; 
    padding: 10px 15px; 
    cursor: pointer; 
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
}

.prev {
    left: 10px; 
}

.next {
    right: 10px; 
}

.slider-button:hover {
    background-color: #00997a; 
} */



  /* testi end */

  /* testinomials */

  /* @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);
figure.snip1157 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1157 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1157 img {
  max-width: 100%;
  vertical-align: middle;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin: 40px 0 0 10px;
}
figure.snip1157 blockquote {
  display: block;
  border-radius: 8px;
  position: relative;
  background-color: #fafafa;
  padding: 25px 50px 30px 50px;
  font-size: 0.8em;
  font-weight: 500;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
}
figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1157 blockquote:before {
  top: 25px;
  left: 20px;
}
figure.snip1157 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 0;
}
figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fafafa;
  margin: 0;
  position: absolute;
}
figure.snip1157 .author {
  position: absolute;
  bottom: 45px;
  padding: 0 10px 0 120px;
  margin: 0;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
figure.snip1157 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1157 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
}


html {
  height: 100%;
}
body {
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  margin: 0;
  height: 100%;
} */

/*  */
/* .responsive-cell-block {
  min-height: 75px; 
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 25px;
  height: 50%;
  width: 100%;
  color: #121212;
}

img {
  object-fit: cover;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bg {
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1320px;
  margin: 50px 0 50px 0;
}

.text-blk.title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 36px;
  line-height: 45px;
  font-weight: 900;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin: 0 0 15px 0;
  color: #31de79;
}

* {
  font-family: Nunito, sans-serif;
}

.text-blk.desc {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  height: auto;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 750px;
}

.responsive-container-block.blocks {
  width: 100%;
  min-height: 0px;
  justify-content: space-between;
  max-width: 1320px;
}

.responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
  width: 30%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-blk.info-block {
  width: 85%;
  height: auto;
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  margin: 30px 0 30px 0;
}

.responsive-container-block.person {
  width: 90%;
  min-height: 0px;
  height: auto;
  margin-top: 0px;
  margin-right: 31.25px;
  margin-bottom: 20px;
  margin-left: 31.25px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon-block {
  width: 22%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.text-block {
  width: 78%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.text-blk.name {
  font-size: 18px;
  line-height: 20px;
  font-weight: 900;
  height: auto;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.text-blk.desig {
  line-height: 16px;
  height: auto;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.responsive-container-block.big-container {
  justify-content: center;
  padding: 0 50px 0 50px;
}

@media (max-width: 1024px) {
  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 47%;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
    margin-top: 5%;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 25%;
  }

  .text-blk.desc {
    width: 70%;
  }

  .responsive-container-block.person {
    margin-top: 5%;
    margin-right: 31.25px;
    margin-bottom: 0px;
    margin-left: 31.25px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.person {
    margin-top: 21.9375px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 0px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    height: 50%;
    font-size: 17px;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5%;
    margin-left: 0px;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
    width: 85%;
    font-size: 17px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 30px;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.blocks {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bg {
    flex-wrap: nowrap;
  }

  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.desig {
    font-size: 15px;
  }

  .text-blk.name {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 8%;
    margin-left: 0px;
  }

  .text-blk.desc {
    width: 90%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 24px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 26px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0 20px 0;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .responsive-container-block.big-container {
    padding: 0 30px 0 30px;
  }

  .text-blk.name {
    font-size: 17px;
  }

  .text-blk.desig {
    font-size: 15px;
  }
} */

.testimonial-slider {
  position: relative;
  max-width: 600px; /* Adjust based on your design */
  margin: auto;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: 20px;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.content {
  padding: 20px;
}

.text-blk {
  margin: 0;
}

.info-block {
  font-size: 18px;
  color: #333;
}

.name {
  font-weight: bold;
  margin-top: 15px;
}

.desig {
  color: #666;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0,0,0,0.5);
  transition: 0.3s ease;
  user-select: none;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/*  */
  /* testinomials end */
  
  
  @media screen and (max-width: 768px) {
    .benefit-container {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .benefits-container {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .content-container {
      flex-direction: column;
      text-align: center;
    }
  
    .image-container, .text-container {
      max-width: 100%;
      padding: 0;
    }
  
    .text-container {
      padding-top: 20px;
    }
  }

  /* why aws s*/

  .ag-format-container {
    width: 1142px;
    margin: 0 auto;
    background-color: #f0f0f0; /* Dark white container color */
    /* height: 80%; */
  }
  
  /* body {
    background-color: #000;
  } */
  
  .ag-courses_box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px 0;
  }
  
  .ag-courses_item {
    flex-basis: calc(33.33333% - 30px);
    margin: 0 15px 30px;
    overflow: hidden;
    border-radius: 28px;
  }
  
  .ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #121212;
    overflow: hidden;
    position: relative;
    text-align: center; /* Center-align the content */
  }
  
  .ag-courses-item_link:hover,
  .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
  }
  
  .ag-courses-item_link:hover .ag-courses-item_icon {
    color: #f9b234; /* Change icon color on hover */
  }
  
  .ag-courses-item_link:hover .ag-courses-item_bg {
    transform: scale(10);
  }
  
  .ag-courses-item_icon {
    font-size: 50px;
    color: #FFF;
    margin-bottom: 15px;
    transition: color .5s ease;
  }
  
  .ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 15px;
    font-weight: bold;
    font-size: 30px;
    color: #FFF;
    z-index: 2;
    position: relative;
  }
  
  .ag-courses-item_description {
    font-size: 18px;
    color: #FFF;
    z-index: 2;
    position: relative;
  }
  
  .ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;
    z-index: 2;
    position: relative;
  }
  
  .ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;
    transition: color .5s ease;
  }
  
  .ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    transition: all .5s ease;
  }
  
  .ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #3ecd5e;
  }
  
  .ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #e44002;
  }
  
  .ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #952aff;
  }
  
  .ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #cd3e94;
  }
  
  .ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #4c49ea;
  }
  
  /* Responsive Design Adjustments */
  @media only screen and (max-width: 979px) {
    .ag-courses_item {
      flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
      font-size: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  }
  
  @media only screen and (max-width: 639px) {
    .ag-courses_item {
      flex-basis: 100%;
    }
    .ag-courses-item_title {
      min-height: 72px;
      line-height: 1;
      font-size: 24px;
    }
    .ag-courses-item_link {
      padding: 22px 40px;
    }
    .ag-courses-item_date-box {
      font-size: 16px;
    }
  }
  

  /* aws end */
  
  .aws-hero-section1 {
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    /* background-image: url("img/saas-concept-collage.jpg"); Replace with your image */
    background-image: url("img/cloud.jpg");
    
    margin-top: -130px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
  }
  .aws-hero-section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  /* .aws-hero-content {
    position: relative;
  
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  
  .aws-heading {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
  }
  .aws-heading-2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
  } */
  
  .aws-hero-section1 {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100%;
    background-color: #f4f4f4; /* Add a background color if needed */
  }
  
  .aws-hero-content1 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  
  .aws-heading1 {
    font-size: 3rem;
    color: #ff9c08;
    font-weight: 700;
  }
  .aws-cloud1 {
    position: absolute;
    bottom: 0; /* Align to the bottom */
    right: 0; /* Align to the right */
    padding: 20px;
  }
  
  .aws-heading-2 {
    font-size: 2rem;
    color: #666;
  }
  .aws-head-2 {
    font-size: 4rem;
    font-weight: 600;
    color: white;
  }

  .img-sec1 {
    position: absolute;
    bottom: -160px; /* Adjusted position for 14-inch displays */
    right: 50px; /* Reduced gap from the right */
  }
  
  /* Make the logo responsive */
  .img-sec1 img {
    max-width: 180px; /* Resize to fit better on 14-inch screens */
    height: auto; /* Maintain aspect ratio */
    max-height: 180px; /* Restrict height to avoid large logos */
    margin-bottom: -10px;
  }
  
  /* Adjust for 14-inch (1366x768 resolution) */
  @media (max-width: 1366px) {
    .img-sec1 {
      bottom: -120px; /* Position slightly higher to avoid text overlap */
      right: 30px; /* Move closer to the right to create more space */
    }
  
    .img-sec1 img {
      max-width: 150px; /* Reduce logo size further */
      max-height: 150px;
    }
  }
  
  /* For screens between tablet and small laptop sizes */
  @media (max-width: 992px) {
    .img-sec1 {
      bottom: -100px;
      right: 20px;
    }
  
    .img-sec1 img {
      max-width: 130px;
      max-height: 130px;
    }
  }
  
  /* For mobile screens */
  @media (max-width: 768px) {
    .img-sec1 {
      bottom: -80px;
      right: 10px;
    }
  
    .img-sec1 img {
      max-width: 100px;
      max-height: 100px;
    }
  }
  
  /* For very small devices */
  @media (max-width: 576px) {
    .img-sec1 {
      bottom: -60px;
      right: 5px;
    }
  
    .img-sec1 img {
      max-width: 80px;
      max-height: 80px;
    }
  }
  
  


  /*  */
  .navbar-dark .navbar-nav .nav-link {
    /* color: rgba(255, 255, 255, 0.5); */
    color: rgb(0, 0, 0);
   }
   .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    /* color: rgba(255, 255, 255, 0.75);  */
    color: rgb(0, 0, 0);
  }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  /* color: #fff; */
  color: rgb(0, 0, 0);
 }

 /* demo */
 .clients {
  background: #fff;

} 
.clients .titlepage {padding-bottom: 0px;}
.clients .titlepage h2 {
  color: #000;
}

.clients_red {
  background: #fff;
  padding-bottom: 50px;
} 

.cross_inner h3 {
 text-align: left;
 padding-left: 60px;
 padding-top: 58px;   
 font-size: 30px;
 line-height: 25px;
 padding-bottom: 58px;
text-transform: uppercase;
}

.pa_right {padding-right: 0px;}
.pa_left {padding-left: 0px;}

.testimonial_cont p {color: #fff;
background: #052501;
padding: 40px 50px;}
#testimonial_slider .carousel-indicators {
  bottom: -50px;
}

#testimonial_slider .carousel-indicators li {
  width: 25px;
height: 25px;
background-color: #052501;
border-radius: 50px;
}
#testimonial_slider .carousel-indicators li.active {
  background-color: #4bc714;
}


.testimonial_cont {
 background: #fff;
 min-height: 295px;
}
.text_align_center {
 text-align: center;}
.ornage_color {
  color: #4bc714;
text-transform: none;
font-size: 20px;
line-height: 10px;
}
.testomonial_img {position: relative;}
.testomonial_img:after {
 position: absolute;
content: "";

background: url(../images/bg1.png);
background-repeat: no-repeat;
width: 61px;
height: 61px;
right: 0px;
bottom: -61px;;
z-index: 9999;
}
.testomonial_img i img { border: #4bc714 solid 13px; width: 100%;}
transform: skew(190deg);

.testimonial_cont h3 { color: #000; font-family: poppins;}

 /* demo close */