/* General Styling */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
.header-container {
    background-color: #0164df;
    text-align: center;
    margin-bottom: 20px;
}

.banner img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

nav {
    background-color: #0164df;
    padding: 10px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6600;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.hamburger-menu span {
    background: #ffffff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #0164df;
        padding: 20px 0;
    }

    nav.mobile-active .nav-list {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Typography Styling */
h1, h2, h3, h4, h5, h6 {
    color: #0164df;
    font-weight: bold;
    margin: 0 0 15px 0;
}

p {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1rem;
}

/* Buttons */
.cta-button {
    background-color: #0164df;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: #ff6600;
}

/* Section Styling */
.framed-section {
    border: 2px solid #0164df;
    border-radius: 8px;
    padding: 40px 20px;
    margin: 20px auto;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.inner-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px auto;
}

.service {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.2em;
    color: #0164df;
    margin-bottom: 10px;
}

.service p {
    font-size: 1em;
    color: #333;
}

/* Testimonials Section */
#testimonials {
    padding: 40px 20px;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5em;
    color: #0164df;
    margin-bottom: 20px;
}

#testimonials p {
    font-size: 1em;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 200px;
}

.testimonial {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial footer {
  margin-top: 15px;
  font-weight: bold;
  color: #333; /* changed from blue */
  background: none;
}

/* Footer Styling */
.footer-container {
    background-color: #0164df;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 10px 0 0 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .framed-section {
        padding: 20px 10px;
    }
}
/* Responsive Banner Fix */
.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: cover;
}
/* Pricing Info Styling */
.pricing-info {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pricing-info h3 {
    color: #0164df;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.pricing-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.pricing-info ul {
    list-style-type: none;
    padding: 0;
}

.pricing-info ul li {
    font-size: 1rem;
    margin: 10px 0;
}

.pricing-info ul li strong {
    font-weight: bold;
    color: #0164df;
}
.social-icons {
    display: flex;
    gap: 10px; /* spacing between icons */
    align-items: center;
}

.social-icons a {
    text-decoration: none; /* removes underlines */
}
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center; /* centers horizontally */
}

