/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #003a55;
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header .logo h1 {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
}

header nav ul {
    list-style-type: none;
    float: right;
}

header nav ul li {
    display: inline;
    margin-left: 25px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header nav ul li a:hover {
    color: #00aaff;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 500px;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0088cc;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #003a55;
}

.testimonial-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.client-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00aaff;
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #003a55;
    margin-bottom: 10px;
}

.client-rating {
    font-size: 1.2rem;
    color: #ffcc00;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #003a55;
}

.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 1.1rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00aaff;
    box-shadow: 0 0 5px rgba(0, 170, 255, 0.5);
}

.contact-form textarea {
    resize: vertical;
}

.cta-button {
    padding: 15px 30px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0088cc;
}

.cta-button:active {
    transform: scale(0.98);
}

#form-message {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    color: green;
}

/* Footer Section */
#footer {
    background-color: #003a55;
    color: #f9f9f9;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    width: 22%;
}

.footer-column h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    font-size: 1rem;
    color: #dddddd;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #00aaff;
    text-decoration: underline;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column .social-links {
    display: flex;
    gap: 10px;
}

.footer-column .social-icon {
    font-size: 1.5rem;
    color: #dddddd;
    transition: color 0.3s ease;
}

.footer-column .social-icon:hover {
    color: #00aaff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card,
    .footer-column {
        width: 48%;
    }

    .contact-form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .footer-column,
    .testimonial-card {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* Subscription Section */
.subscriptions {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.subscriptions h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #003a55;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.subscription-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subscription-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #003a55;
}

.subscription-card p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #666;
}

.subscription-card p:last-of-type {
  font-weight: bold;
  font-size: 1.5rem;
  color: #003a55;
}

.subscription-card button {
  padding: 12px 25px;
  background-color: #00aaff;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscription-card button:hover {
  background-color: #0088cc;
  transform: scale(1.05);
}

.subscription-card button:active {
  transform: scale(0.98);
}

.subscription-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Manage Subscription Button */
.manage-subscription-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 30px; /* Adds space between subscription cards and the button */
}

.manage-subscription-btn {
  padding: 15px 30px;
  background-color: #00aaff;
  color: white;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.manage-subscription-btn:hover {
  background-color: #0088cc;
  transform: scale(1.05);
}

.manage-subscription-btn:active {
  transform: scale(0.98);
}

/* Responsiveness */
@media (max-width: 768px) {
  .subscription-card {
    padding: 20px 15px;
  }

  .subscription-card h3 {
    font-size: 1.5rem;
  }

  .subscription-card p:last-of-type {
    font-size: 1.3rem;
  }

  .manage-subscription-btn {
    width: 100%; /* Makes the button stretch across on smaller screens */
    font-size: 1rem;
  }
}

