* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0B0D59;
    color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: skyblue;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    font-size: 24px;
    color: #fff;
}

header nav ul {
    list-style: none;
    display: flex;

}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0px 0px 19px white;
    background-color: white;
    border-radius: 5px;
    padding: 5px 10px;
}

header nav ul li a:hover {
    text-shadow: 0px 0px 10px white;
    background-color: black;
    color: blue;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #0B0D59;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50%;
}

.hero-content {
    flex: 1;
    padding: 20px;
}

.hero-content h2 {
    font-size: 44px;
}

.hero-slider {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider img {
    width: 500px;
    height: auto;
    display: none;
}

.hero-slider img:first-child {
    display: block;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00BFFF;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* Presentation and About Sections */
.presentation,
.services {
    padding: 50px 20px;
    background-color: #f4f4f4;
    color: #333;
    margin: 20px 0;
}

.presentation h2,
.services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.presentation p,
.services p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Slogan and Titles */
.slogan {
    color: yellow;
}

.title {
    text-shadow: 0px 0px 8px #0B0D59;
    font-size: 33px;
    text-align: center;
}

.pricing-section {
    text-align: center;
    padding: 60px 20px;
  }

  .pricing-section h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 10px;
  }

  .pricing-section p {
    color: #555;
    margin-bottom: 40px;
  }

  /* Flex Container */
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  /* Pricing Card */
  .price-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .price-card:hover {
    transform: scale(1.05);
  }

  .price-icon {
    width: 80px;
    height: 80px;
    background-color: #1e90ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2em;
  }

  .price-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
  }

  .price-detail {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
  }

  .price-value {
    font-size: 1.3em;
    color: #1e90ff;
    font-weight: bold;
  }

  hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 15px 0;
  }

  .price-description {
    color: #888;
    font-size: 0.9em;
  }


      /* Contact Us Section */
      .contact-section {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 40px;
        width: 80%;
        max-width: 80%;
        text-align: center;
        margin: 0px auto;
      }
  
      .contact-section h2 {
        color: #1e90ff;
        font-size: 2em;
        margin-bottom: 20px;
      }
  
      .contact-section p {
        color: #555;
        margin-bottom: 30px;
      }
  
      .contact-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
      }
  
      .contact-button {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        background-color: #1e90ff;
        border-radius: 50px;
        padding: 10px 20px;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
      }
  
      .contact-button:hover {
        background-color: #555;
      }
  
      .contact-button i {
        margin-right: 10px;
      }
  
      .whatsapp-button {
        background-color: #25d366;
      }
  
      .email-button {
        background-color: #1e90ff;
      }

/* Footer */
.foot {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.containerfooter {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    padding: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section a {
    color: #00BFFF;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 20px;
    }

    header nav ul {
        flex-direction: row;
        margin-top: 10px;
        padding: 0;
        

        
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        padding: 5px 0;
        border: 1px solid black;
    }

    header nav ul li a {
        padding: 10px;
        font-size: 14px;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content, .hero-slider {
        flex: none;
        width: 100%;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero img {
        width: 80%;
    }

    /* Footer responsive */
    .containerfooter {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section a, .footer-section p {
        font-size: 14px;
    }
}
