/* Base styles for the slider container */
.slider-container {
    width: 90%;
    max-width: 1200px; /* Increased max-width for larger PC screens */
    margin: 0 auto; /* Removed extra top and bottom space */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Slider styles */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center; /* Centering content */
    padding: 0; /* Removed padding to eliminate space between content */
    display: none;
}

.slide.active {
    display: flex;
}

/* Image container styles */
.image-container {
    flex: 1;
    margin-right: 0; /* Removed margin to eliminate space between image and text */
}

.image-container img {
    width: 100%; /* Ensure the image takes full width of its container */
    height: auto;
    border-radius: 10px;
}

/* Text content styles */
.text-content {
    flex: 1; /* Adjusted to take equal space as the image */
    text-align: left; /* Align text to the left for better readability */
    padding: 20px; /* Added padding for better spacing */
}

.text-content h2 {
    font-size: 28px; /* Increased font size for better visibility */
    margin-bottom: 15px;
}

.text-content p {
    font-size: 18px; /* Increased font size for better visibility */
    line-height: 1.6;
}

/* Navigation button styles */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px; /* Increased padding for better clickability */
    cursor: pointer;
    font-size: 24px; /* Increased font size for better visibility */
}

.navigation button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive styles for small screens */
@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        border-radius: 0;
    }

    .slide {
        flex-direction: column;
        padding: 0; /* Removed padding to eliminate space between content */
    }

    .image-container {
        margin-bottom: 10px; /* Reduced margin for better spacing */
        width: 100%;
        max-height: 200px; /* Limit image height on mobile */
        overflow: hidden; /* Ensure images don't overflow */
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure images fill the container without distortion */
    }

    .text-content {
        flex: 1;
        text-align: center; /* Center text on mobile */
        padding: 10px; /* Reduced padding for better spacing */
    }

    .text-content h2 {
        font-size: 20px;
    }

    .text-content p {
        font-size: 14px;
    }

    .navigation button {
        padding: 10px;
        font-size: 18px;
    }
}
 
 /* Responsive styles for smaller screens */
 @media (max-width: 768px) {

    /* Adjust container positioning */
    #expandable-bubble {
        bottom: 10px;
        /* Bring closer to the screen edge */
        left: 10px;
    }

    /* Primary button adjustments */
    .primary-bubble {
        font-size: 12px;
        /* Smaller text size */
        padding: 8px 15px;
        /* Smaller padding */
        border-radius: 20px;
        /* Slightly smaller rounded corners */
        width: auto;
        /* Allow the button to shrink if needed */
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        /* Adjust shadow size */
    }

    /* Adjust flashing text size */
    .flashing-text {
        font-size: 12px;
        /* Slightly smaller font */
        letter-spacing: 0.8px;
        /* Reduce spacing */
    }

    /* Social icons adjustments */
    .social-icons .icon {
        width: 40px;
        /* Smaller icon size */
        height: 40px;
        font-size: 20px;
        /* Adjust icon size */
    }

    .social-icons {
        gap: 8px;
        /* Reduce spacing between icons */
    }
}

/* Ultra-small screens (e.g., phones in portrait mode) */
@media (max-width: 480px) {
    #expandable-bubble {
        bottom: 5px;
        /* Further adjust position */
        left: 5px;
    }

    .primary-bubble {
        font-size: 10px;
        /* Even smaller text */
        padding: 6px 12px;
        /* Tighter padding */
    }

    .social-icons .icon {
        width: 35px;
        /* Smaller icons */
        height: 35px;
        font-size: 18px;
    }
}


/* Primary button styling */
.primary-bubble {
    width: auto;
    /* Adjust width to fit the text */
    padding: 10px 20px;
    /* Add padding for button look */
    background: linear-gradient(45deg, #0077b5, #00bfff);
    /* Gradient background */
    color: white;
    border: 2px solid white;
    /* Add a white border */
    border-radius: 25px;
    /* Rounded edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary-bubble:hover {
    background: linear-gradient(45deg, #00bfff, #0077b5);
    /* Reverse gradient on hover */
    transform: translateY(-3px);
    /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Deeper shadow on hover */
}

/* Flashing text (remains the same) */
.flashing-text {
    animation: flash 1.5s infinite;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Flashing text effect for "Contact Us" */
.flashing-text {
    animation: flash 1.5s infinite;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Keyframes for flashing animation */
@keyframes flash {

    0%,
    100% {
        color: white;
        text-shadow: 0 0 5px #0077b5, 0 0 10px #0077b5;
    }

    50% {
        color: #f1f1f1;
        text-shadow: 0 0 15px #00bfff, 0 0 30px #00bfff;
    }
}

/* Container for the expandable bubble */
#expandable-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    /* Social icons will expand upwards */
    align-items: center;
    gap: 15px;
}



.primary-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hidden social icons container */
.social-icons {
    display: none;
    /* Hidden initially */
    flex-direction: column;
    /* Expand upwards */
    gap: 10px;
}

/* Social media icon styles */
.social-icons .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons .whatsapp {
    background-color: #25d366;
}

.social-icons .facebook {
    background-color: #3b5998;
}

.social-icons .instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285aeb);
}

.social-icons .linkedin {
    background-color: #0077b5;
}




.social-icons img {
    width: 40px;
    /* Adjust the size */
    height: 40px;
    margin: 10px;
    /* Adjust spacing */
}
   
   /* Scroll to Top Button Styles */
   #scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007BFF;
    /* Circle background color */
    color: #fff;
    /* Arrow color */
    border-radius: 50%;
    /* Makes it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    /* Keeps it on top */
}

#scrollToTop i {
    font-size: 20px;
    /* Arrow size */
}

/* Show button when visible */
#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}
 
 
 /* Blog Section */
  .blog {
    padding: 60px 0;
}

.blog .post-item {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.blog .post-item:hover {
    transform: translateY(-10px);
}

.blog .post-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog .post-img img {
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog .post-img:hover img {
    transform: scale(1.1);
}

.blog .post-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    border-radius: 5px;
}

.blog .post-content {
    padding: 20px;
    flex-grow: 1;
}

.blog .post-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.blog .post-title:hover {
    color: #007bff;
}

.blog .meta {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6c757d;
}

.blog .meta i {
    color: #007bff;
}

.blog .readmore {
    margin-top: auto;
    display: inline-block;
    color: #007bff;
    font-weight: 600;
    transition: color 0.3s;
}

.blog .readmore i {
    font-size: 18px;
    margin-left: 5px;
}

.blog .readmore:hover {
    color: #0056b3;
}



#why-us {
    background-color: #f0f0f0;
    /* Light grey background color */
    padding: 20px;
    /* Add padding for spacing */
    border-radius: 8px;
    /* Optional: rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow for depth */
}

.line {
    width: 3%;
    /* Even shorter width of the line */
    height: 3px;
    /* Thickness of the line */
    background-color: #1591ea;
    /* New blue color */
    margin: 10px auto;
    /* Center the line and add spacing above/below */
}

.testimonials {
    margin-top: 20px;
    /* Add margin for spacing */
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    /* or 'row' for horizontal alignment */
    gap: 20px;
    /* space between testimonials */
}

.testimonial {
    background: #f9f9f9;
    /* light background for testimonials */
    border-radius: 5px;
    /* rounded corners */
    padding: 15px;
    /* padding inside testimonial */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
}

.quote {
    font-style: italic;
    /* italicize the quote */
}

.author {
    text-align: right;
    /* right-align the author */
    margin-top: 10px;
    /* margin above the author */
}

#contact {
    margin-top: 20px;
    /* Ensure consistent spacing before testimonials */
}

 
 
 
 /* Reset some default browser styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ecf0f1;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #1591ea;
}

/* Hero Section */
#hero {
    background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
    /* Height of the header */
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    background-color: #1591ea;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1591ea;
}

/* Services Section */
#services {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#services h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #1591ea;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 20px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    margin-bottom: 15px;
    color: #1591ea;
}

.service-box p {
    font-size: 1em;
    color: #555;
}

/* Why Choose Us Section */
#why-us {
    padding: 80px 20px;
    text-align: center;
}

#why-us h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#why-us h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #1591ea;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

#why-us ul {
    display: flex;
    flex-wrap: wrap;
    /* Ensures items wrap if they overflow the container */
    justify-content: space-around;
    /* Adjust spacing between items */
    padding: 0;
    list-style: none;
}

#why-us ul li {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-us ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
#testimonials {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#testimonials h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #1591ea;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: auto;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-left: 5px solid #1591ea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    width: 100%;
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#contact h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #1591ea;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

#contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact form input,
#contact form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

#contact form button {
    padding: 15px;
    border: none;
    border-radius: 50px;
    background-color: #1591ea;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact form button:hover {
    background-color: #1591ea;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    text-align: center;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 10px;
    color: #ecf0f1;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1591ea;
}

/* Responsive Design */
@media (max-width: 768px) {

    .service-container,
    .testimonial-container,
    #why-us ul {
        flex-direction: column;
        align-items: center;
    }

    .service-box,
    #why-us ul li {
        width: 80%;
    }
}
.slider {
    width: 1300px;
    max-width: 100vw;
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.slider .list {
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}

.slider .list img {
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slider .buttons {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.slider .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider .dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider .dots li.active {
    width: 30px;
}

@media screen and (max-width: 768px) {
    .slider {
        height: 400px;
    }
}

button.mfp-close {
    opacity: 1;
    margin-top: 0 !important;
    width: 20%;
    height: 30%;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
}

button.mfp-close:before,
button.mfp-close:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    border: none;
    width: 2rem;
    height: 2rem;
    opacity: 1;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    border-top: 2px solid white;
    border-left: 2px solid white;
}

button.mfp-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

button.mfp-close:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

button.mfp-close:hover:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

button.mfp-close:hover:after {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

button.mfp-close:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

a {
    text-decoration: none;
    color: inherit;
}

[id=footer] {
    margin-top: 10vh;
    padding: 10vh 0;
    text-align: center;
}

[id=footer] .container {
    position: relative;
}

[id=footer] .container:before,
[id=footer] .container:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 20px;
    z-index: 10;
    border-top: 2px solid;
    width: 10%;
    margin-bottom: 10vh;
}

[id=footer] .container:after {
    left: auto;
    right: 20px;
}

[id=footer] * {
    display: block;
}

[id=footer] *+* {
    margin-top: 5vh;
}

[id=footer] .logo {
    font-weight: 600;
    font-size: 1.5em;
}

[id=footer] .copy {
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 600;
}

#why-us ul {
    display: flex;
    flex-wrap: wrap;
    /* Ensures items wrap if they overflow the container */
    justify-content: space-around;
    /* Adjust spacing between items */
    padding: 0;
    list-style: none;
}

#why-us li {
    flex: 1 1 200px;
    /* Flex-grow, flex-shrink, and min-width */
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    /* Optional, to ensure a uniform width */
}

#why-us h2 {
    text-align: center;
    margin-bottom: 20px;
}

