/* Global Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for Main Content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #001f3f, #1a1a2e);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}


.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.7; /* Improved readability */
    max-width: 700px; /* Restrict width for better alignment */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Keep it aligned with the heading */
}

.hero-content p {
    margin-bottom: 40px; /* Controls spacing between text and button */
}
.cta-button {
    background-color: #ffc107;
    color: #001f3f;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/*
.cta-button {
    background-color: #ffc107;
    color: #001f3f;
    padding: 15px 30px; /* Adjust size */
    font-size: 1.3rem; /* Increase readability */
    font-weight: bold; /* Strong emphasis */
    text-transform: uppercase; /* Make it stand out */
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Add depth */
} */

.cta-button:hover {
    background-color: #e0a800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Enhance interactivity */
}

/* Features Section */
.features {
    padding: 40px 0;
    background-color:  #f9f9f9; /* #fff; */
    text-align: left; /* Left-aligned for professional look */
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center; /* Keep headings centered */
}

.features p {
    color: #555;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
}

.feature-list {
    list-style: disc;
    padding-left: 40px;
    max-width: 700px;
    margin: 20px auto 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

/* Gallery Section */
.logo-gallery {
    padding: 40px 0;
    text-align: center;
    background-color: white; /* #f9f9f9; */
    position: relative; /* Required for button positioning */
    overflow: hidden; /* Ensures no overflow of slides outside the container */
}

.logo-gallery .portfolio-details-slider {
    position: relative;
    overflow: hidden; /* Hide overflow to avoid clipping issues */
    max-width: 100%; /* Ensure it adapts to the screen size */
    margin: 0 auto;
    padding-bottom: 40px; /* Add enough space for buttons */
}

.logo-gallery .swiper-wrapper {
    display: flex;
    align-items: center; /* Center the images vertically */
}

.logo-gallery .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: auto; /* Ensure it scales with content */
    max-height: 400px; /* Prevent slides from exceeding a reasonable height */
}

.logo-gallery .swiper-slide img {
    max-width: 100%;
    max-height: 350px; /* Ensure proper scaling of images */
    width: auto;
    object-fit: contain;
}

/* Adjust the pagination bullets */
.logo-gallery .swiper-pagination {
    bottom: 15px; /* Adjusted to align properly */
    margin-bottom: 10px; /* Space between the pagination dots and elements below */
}

/* Navigation Buttons */
.logo-gallery .swiper-button-prev,
.logo-gallery .swiper-button-next {
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background */
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.logo-gallery .swiper-button-prev {
    left: 10px; /* Keep it within a reasonable distance */
}

.logo-gallery .swiper-button-next {
    right: 10px;
}

.logo-gallery .cta-button {
    text-decoration: none; /* Applies only to buttons inside the .logo-gallery section */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-gallery .swiper-slide img {
        max-height: 300px; /* Adjust for smaller screens */
    }

    .logo-gallery .swiper-button-prev,
    .logo-gallery .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .logo-gallery .swiper-slide img {
        max-height: 250px; /* Further adjustment for very small screens */
    }

    .logo-gallery .swiper-button-prev,
    .logo-gallery .swiper-button-next {
        width: 25px;
        height: 25px;
    }
}

/* All Logos Section */
.all-logos-section {
    padding: 40px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.all-logos-section .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.all-logos-section .logo-item {
    width: calc(33.333% - 20px); /* Three logos per row by default */
    max-width: 300px; /* Limit maximum width to keep logos readable */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.all-logos-section .logo-item img {
    max-height: 180px; /* Ensure logos are large enough */
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;
}

/* Responsive adjustments for the "All Logos Section" */
@media (max-width: 1200px) {
    .all-logos-section .logo-item {
        width: calc(50% - 20px); /* Two logos per row for medium screens */
    }
}

@media (max-width: 768px) {
    .all-logos-section .logo-item {
        width: calc(100% - 20px); /* One logo per row for smaller screens */
    }
}


/* SEO Section */
.seo {
    padding: 40px 0;
    background-color: #fff;
    text-align: left;
}

.seo h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center; /* Center-align the heading */
}

.seo p {
    margin: 0 auto 30px;
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    color: #555;
}

.seo .feature-list {
    list-style: disc;
    max-width: 700px;
    margin: 20px auto 0;
    padding-left: 40px;
}

.seo .feature-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Call to Action Form */
.cta-section {
    padding: 40px 0;
    background-color: #e9ecef;
    text-align: center;
}

/* Form Container */
.cta-form {
    max-width: 600px; /* Limits the form width */
    margin: 0 auto;
    background-color: #fff;
    padding: 30px; /* Adds internal padding around the form */
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

/* Input Fields and Textarea */
.cta-form input, .cta-form textarea {
    width: calc(100% - 20px); /* Reduces width slightly to allow space */
    max-width: 100%; /* Prevents overflow */
    padding: 10px; /* Adds internal padding */
    margin-bottom: 15px; /* Adds spacing between fields */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Submit Button */
.cta-form button {
    background-color: #001f3f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-form button:hover {
    background-color: #14204b;
}
.cta-form label {
    display: block; /* Ensures the label spans the entire width of the container */
    margin: 10px 0 5px; /* Adds spacing between labels and input fields */
    font-weight: bold; /* Keeps the label visually distinct */
    text-align: left; /* Aligns the text to the left */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-form {
        padding: 20px; /* Slightly reduce padding for smaller screens */
    }

    .cta-form input, .cta-form textarea {
        width: calc(100% - 10px); /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) {
    .cta-form {
        padding: 10px; /* Reduce padding further for very small screens */
    }
    .cta-form input, .cta-form textarea {
        padding: 7px; /* Smaller padding for compact design */
        font-size: 0.85rem; /* Reduce font size slightly */
    }
    .cta-form button {
        font-size: 0.9rem; /* Slightly smaller button text */
        padding: 8px 15px; /* Adjust button size */
    }
}

.cta-form button:hover {
    background-color: #14204b;
}

.hidden-gotcha-input {
    display: none;
}

/* Footer Styling */
footer {
    background: #001f3f;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.footer-links li {
    display: inline;
    margin: 0 15px;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-icons img {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .feature-list {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .carousel-slide {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-list {
        padding-left: 20px;
    }
}


/* Swiper.js Gallery Styling */
.logo-gallery .swiper-slide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-gallery .swiper-pagination-bullet {
    background: #ffc107;
    opacity: 0.8;
}

.logo-gallery .swiper-pagination-bullet-active {
    background: #001f3f;
}
