/* General Styles */
:root {
    --primary-color: #FF9900;
    --secondary-color: #232F3E;
    --accent-color: #146EB4;
    --light-color: #FFFFFF;
    --dark-color: #333333;
    --gray-color: #F2F3F3;
    --text-color: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e68a00;
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.aws-header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}



/* Hero Section */
.aws-hero {
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%); */
    background-color:#b5d3f5;
    /* color: var(--light-color); */
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 70px;
}

.hero-text h1 {
    /* color: var(--light-color); */
       color: #232F3E;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text .subtitle {
    /* color: rgba(255, 255, 255, 0.9);  */
       color: #232F3E;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image img {
    /* max-width: 140px;
    height: auto; */
}

/* Intro Section */
.aws-intro {
    padding: 60px 0;
    text-align: center;
    background-color: var(--gray-color);
}

.aws-intro h2 {
    margin-bottom: 20px;
}

.aws-intro p {
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.aws-benefits {
    padding: 80px 0;
    background-color: var(--light-color);
}

.aws-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* Certifications Section */
.aws-certifications {
    padding: 60px 0;
    background-color: var(--gray-color);
    text-align: center;
}

.aws-certifications h2 {
    margin-bottom: 20px;
}

.aws-certifications p {
    margin-bottom: 40px;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.certification-badge img {
    height: 120px;
    width: auto;
}

/* CTA Section */
.aws-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.aws-cta h2 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.aws-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


      /* side navigation bar */

      /* navigation */
      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 75px;
        z-index: 1000;
        background-color: #f8f8f8;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }

      nav h5 {
        margin: 0;
      }

      .logo img {
        height: 50px;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 25px;
      }

      .nav-links a,
      .dropdown h5 {
        color: #040404;
        text-decoration: none;
        font-size: 16px;
        font-weight: 100;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .nav-links a:hover,
      .dropdown h5:hover {
        color: #3594d5;
      }

      .dropdown {
        position: relative;
      }

      .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        min-width: 180px;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .dropdown-content a {
        display: block;
        padding: 10px 15px;
        color: #040404;
        font-size: 15px;
        text-decoration: none;
        transition: background 0.3s ease, color 0.3s ease;
      }

      .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.6);
        color: #3594d5;
      }

      /* Hamburger */
      .hamburger {
        display: none;
        font-size: 28px;
        cursor: pointer;
        color: #040404;
        user-select: none;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .hamburger {
          display: block;
        }

        .nav-links {
          position: absolute;
          top: 70px;
          right: 0;
          flex-direction: column;
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(12px);
          width: 100%;
          display: none;
          padding: 20px 0;
          gap: 15px;
        }

        .nav-links.active {
          display: flex;
        }

        .dropdown-content {
          position: static;
          box-shadow: none;
          background: transparent;
          backdrop-filter: none;
        }

        .dropdown.active .dropdown-content {
          display: block;
        }
      }

      .box {
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.4);
        color: white;
        margin: 50px;
        border-radius: 20px;
        padding: 5px;
        position: relative;
        z-index: 1;
      }
      .col-4 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
      }

      .list-group {
        position: fixed;
        margin-bottom: 80px;
      }

      .box-container {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        padding: 20px;
        flex-wrap: wrap;
      }

      .box2 {
        flex: 1 1 22%;
        backdrop-filter: blur(10px);
        background: #3594d5;
        color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.2);
        min-width: 250px;
        max-width: 400px;
        transition-duration: 0.25s;
        text-align: center;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .box-content {
        flex-grow: 1;
      }

      .read-more-container {
        margin-top: 20px;
        text-align: center;
      }

      .box2 a {
        text-decoration: none;
      }

      .box2 a h5:hover {
        color: #b5d3f5;
      }

      .box2:hover {
        transform: translateY(-5px);
      }

      .box2 h5 {
        color: rgb(6, 59, 113);
      }

      /* footer */

      .footer {
        background-color: #0f202b;
        padding: 60px 20px;
      }

      .footer-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
      }

      .footer-col h3 {
        margin-bottom: 15px;
        font-size: 20px;
        position: relative;
        color: #f0f0f0;
      }

      .footer-col h3::after {
        content: "";
        display: block;
        width: 30px;
        height: 3px;
        background-color: #007bff;
        margin-top: 5px;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
      }

      .footer-col ul li {
        margin-bottom: 10px;
        font-size: 15px;
        color: #d0d0d0;
      }

      .footer-col ul li i {
        color: #007bff;
        margin-right: 8px;
      }

      .footer-col a {
        text-decoration: none;
      }

      .footer-col a li:hover {
        color: #3594d5;
      }

      .privacy {
        margin: auto;
        width: 95%;
        padding: 5% 2%;
      }

      .privacy div {
        background-color: #ffffff;
        box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.2);
        margin: 5%;
        padding: 3%;
      }

      .privacy div hr {
        height: 3px;
        background: linear-gradient(to right, blue, red);
        border: none;
        border-radius: 3px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        margin: 30px 0;
      }

      .about .logo {
        max-width: 160px;
        margin-bottom: 15px;
      }

      .about p {
        font-size: 15px;
        color: #ccc;
        margin-bottom: 20px;
        line-height: 1.6;
      }

      .learn-btn {
        display: inline-block;
        background-color: #007bff;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        transition: 0.3s;
      }

      .learn-btn:hover {
        background-color: #0056b3;
      }

      /* footer close */

      /* General Styles */
      :root {
        --primary-color: #ff9900;
        --secondary-color: #232f3e;
        --accent-color: #146eb4;
        --light-color: #ffffff;
        --dark-color: #333333;
        --gray-color: #f2f3f3;
        --text-color: #555555;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Montserrat", sans-serif;
        color: var(--text-color);
        line-height: 1.6;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      h1,
      h2,
      h3,
      h4 {
        color: var(--secondary-color);
        font-weight: 600;
        margin-bottom: 15px;
      }

      p {
        margin-bottom: 15px;
      }

      a {
        text-decoration: none;
        color: var(--accent-color);
        transition: all 0.3s ease;
      }

      a:hover {
        color: var(--primary-color);
      }

      .cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--light-color);
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        background-color: #e68a00;
        color: var(--light-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      /* Header Styles */
      .aws-header {
        background-color: var(--light-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo img {
        height: 40px;
      }

      /* Hero Section */
      .aws-hero {
        color: var(--light-color);
        padding: 80px 0;
      }

      /* .hero-image img {
        max-width: 300px;
        height: auto;
      } */

      /* Relationship Section */
      .aws-relationship {
        padding: 80px 0;
        background-color: var(--light-color);
      }

      .relationship-content {
        display: flex;
        align-items: center;
        gap: 40px;
      }

      .relationship-text {
        flex: 1;
      }

      .relationship-image {
        flex: 1;
        text-align: center;
      }

      .relationship-image img {
        max-width: 100%;
        height: auto;
      }

      /* Benefits Section */
      .aws-benefits {
        padding: 80px 0;
        background-color: var(--gray-color);
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .benefit-card {
        background-color: var(--light-color);
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .benefit-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
      }

      /* Case Studies Section */
      .case-studies {
        padding: 80px 0;
        background-color: var(--light-color);
      }

      .case-study {
        margin-bottom: 60px;
        background: var(--gray-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .case-study-content {
        padding: 40px;
      }

      .case-study-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }

      .results-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
      }

      .result-item {
        background: rgba(255, 255, 255, 0.8);
        padding: 15px;
        border-radius: 5px;
      }

      .result-value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      /* Testimonials */
      .testimonials {
        padding: 60px 0;
        background-color: var(--gray-color);
      }

      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .testimonial-card {
        background-color: var(--light-color);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .stars {
        color: var(--primary-color);
        margin-bottom: 15px;
      }

      .client-info {
        display: flex;
        align-items: center;
        margin-top: 20px;
      }

      .client-info img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
      }

      /* Certifications */
      .certifications {
        padding: 80px 0;
        text-align: center;
      }

      .cert-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
      }

      .cert-item {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .cert-item img {
        height: 120px;
        width: auto;
      }

      /* CTA Section */
      .aws-cta {
        padding: 80px 0;
        text-align: center;
        background-color: var(--secondary-color);
        color: var(--light-color);
      }

      .aws-cta h2 {
        color: var(--light-color);
        margin-bottom: 20px;
      }
    




      /* responsive */
     .aws-hero {
  padding: 60px 20px;
  background: #f5f9ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-text .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  max-width: 600px;
}

.cta-button {
  padding: 12px 24px;
  background-color: #0073bb;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005f99;
}

.hero-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
  max-width: 50%;
}


  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .cta-button {
    font-size: 1rem;
  }
}

.aws-relationship {
  padding: 60px 20px;
  background-color: #ffffff;
}

.relationship-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.relationship-text {
  flex: 1 1 500px;
}

.relationship-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.relationship-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.relationship-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.relationship-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive for tablets and below */
@media (max-width: 768px) {
  .relationship-content {
    flex-direction: column;
    text-align: center;
  }

  .relationship-text h2 {
    font-size: 1.8rem;
  }

  .relationship-text p {
    font-size: 1rem;
  }
}



/* //////////// */
.case-studies {
  padding: 60px 20px;
  background-color: #f7faff;
}

.case-studies h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.case-studies > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.case-study {
  background: #fff;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.case-study h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.case-study p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.case-study-grid > div {
  flex: 1 1 300px;
}

.case-study-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0073bb;
}

.case-study-grid ul {
  padding-left: 20px;
  list-style: disc;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.result-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.result-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0073bb;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .case-study-grid {
    flex-direction: column;
  }

  .case-studies h2 {
    font-size: 2rem;
  }

  .case-studies > p {
    font-size: 1rem;
  }

  .case-study {
    padding: 24px;
  }

  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .case-study {
    padding: 20px;
  }

  .result-value {
    font-size: 1.6rem;
  }

  .case-studies h2 {
    font-size: 1.7rem;
  }
}



      /* responsive */