/*START NAVBAR*/
/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header / Navigation */
header {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

header h1 {
    margin: 0;
    margin-left: 10px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    animation: colorChange 6s infinite alternate;
}

/* Keyframes for 3 color change */
@keyframes colorChange {
    0% {
        color: #333;
        /* Initial dark color */
    }

    50% {
        color: #1cc1a3;
        /* Green */
    }

    100% {
        color: #065688;
        /* Tomato Red */
    }
}

.header-content {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    margin-left: 30px;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

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

nav ul li a {
    color: #333;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #f0f0f0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    left: 10px;
    z-index: 1001;
    margin-right: 10px;
}

.hamburger div {
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 5px;
}

/* Mobile view */
@media (max-width: 320px) {
    header h1 {
        margin-left: 1px;
        font-size: 18px;
    }

    .logo {
        width: 60px;
        height: auto;
        margin-left: 10px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 250px;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
        margin: 0;
        z-index: 999;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    nav.active ul {
        display: flex;
    }


}

/* Tablet / iPad View (Portrait) */
@media (min-width: 321px) and (max-width: 902px) {
    header h1 {
        font-size: 22px;
        margin-left: 5px;
    }

    .logo {
        width: 80px;
        margin-left: 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 250px;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px;
        margin: 0;
        z-index: 999;

    }

    nav ul li {

        margin: 10px 0;
    }

    nav ul li a {
        font-size: 15px;
        padding: 10px 20px;
    }

    nav.active ul {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* Laptop View */
@media (min-width: 903px) and (max-width: 1024px) {
    header h1 {
        font-size: 26px;
        margin-left: 15px;
    }

    .logo {
        width: 100px;
        margin-left: 30px;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-right: 30px;
    }

    nav ul li {

        margin-left: 10px;
    }

    nav ul li a {
        font-size: 16px;
        padding: 8px 15px;
    }

    .hamburger {
        display: none;
    }
}

/* Desktop View */
@media (min-width: 1025px) {
    header h1 {
        font-size: 30px;
        margin-left: 30px;
    }

    .logo {
        width: 120px;
        margin-left: 40px;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin-right: 5px;
    }

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

    nav ul li a {
        font-size: 18px;
    }

    .hamburger {
        display: none;
    }
}

/*END NAVBAR*/
/*START HOME*/
/* Home Section */
.hero {
    background: url('../img/slider.jpg') no-repeat center center/cover;
    color: rgb(59, 61, 156);
    text-align: left;
    padding-top: 100px;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15px;
}

/* Hero Content Box */
.hero-content {
    padding: 10px;
    border-radius: 8px;
    width: 60%;
    max-width: 800px;
    position: relative;
    height: 100%; /* Ensure the height is 100% of its container */
}

/* New Slideshow Container */
.new-slideshow-container {
    position: absolute; /* Positioning relative to .hero-content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Take up full height of the .hero-content */
    display: flex;
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
}

/* Hide all slides by default */
.new-slide {
    display: none;
    position: absolute; /* Positioning relative to .new-slideshow-container */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the slide content */
    width: 80%; /* Adjust the width as needed */
    text-align: left;
    padding: 10px;
}

/* Hero Heading */
.hero h2 {
    font-size: 2.5em;
    margin: 0;
    color: rgb(2, 2, 57);
}

/* Hero Paragraph */
.hero p {
    font-size: 1.2em;
    margin-left: 0;
}
/* Slideshow Animation */
.new-slide.fade {
    animation: fade 10s infinite;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Mobile view */
@media (max-width: 320px) {
    .hero {
        padding-top: 30px;
    }
    .hero h2 {
        font-size: 1.3em;
        margin-left: 5px;
    }
    .hero p {
        font-size: 1.0em;
    }
}

/* iPad / Tablet View */
@media (min-width: 321px) and (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }
    .hero h2 {
        font-size: 2em;
        margin-left: 15px;
    }
    .hero p {
        font-size: 1.1em;
        margin-left: 15px;
    }
}

/* Laptop View */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding-top: 90px;
    }
    .hero h2 {
        font-size: 2.3em;
        margin-left: 20px;
    }
    .hero p {
        font-size: 1.2em;
        margin-left: 20px;
    }
}

/* Desktop View */
@media (min-width: 1025px) {
    .hero {
        padding-top: 100px;
    }
    .hero h2 {
        font-size: 3em;
        margin-left: 30px;
    }
    .hero p {
        font-size: 1.3em;
        margin-left: 30px;
    }
}

/*END HOME*/






/*START ABOUT*/
/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    min-height: 650px;
}

.about-text {
    width: 50%;
    /* Adjust width as needed */
    padding-right: 30px;
    /* Space between text and image */
}

.about-image {
    width: 45%;
    /* Adjust width as needed */
}

.about-image img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    /* Optional: Add rounded corners */
}

.about {
    background-color: #4CAF50;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

.about p {
    font-size: 0.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.about-item h3 {
    font-size: 1.6em;
    color: #ffffff;
    font-weight: bold;
}

.about-item p {
    font-size: 1.1em;
    line-height: 1.2;
    color: #f1f1f1;
    margin-top: 10px;
}

/* Mobile View (max-width: 320px) */
@media (max-width: 320px) {
    .about-content {
        flex-direction: column;
        padding: 20px;
    }

    .about-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-image img {
        height: 150px;
        /* Adjust image size */
    }

    .about h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-item h3 {
        font-size: 1.2em;
    }

    .about-item p {
        font-size: 1em;
    }
}

/* iPad / Tablet View (min-width: 321px and max-width: 768px) */
@media (min-width: 321px) and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        padding: 30px 15px;
    }

    .about-text {
        width: 100%;
        padding-right: 0;
    }

    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about h2 {
        font-size: 2.0em;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .about-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-item h3 {
        font-size: 1.4em;
    }

    .about-item p {
        font-size:  1em;
    }
}

/* Laptop View (min-width: 769px and max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content {
        flex-direction: row;
        padding: 40px 20px;
    }

    .about-text {
        width: 50%;
        padding-right: 30px;
    }

    .about-image {
        width: 45%;
    }

    .about h2 {
        font-size: 2.3em;
        margin-bottom: 25px;
    }

    .about p {
        font-size: 1em;
    }

    .about-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .about-item h3 {
        font-size: 1.5em;
    }

    .about-item p {
        font-size:  1em;
    }
}

/* Desktop View (min-width: 1025px) */
@media (min-width: 1025px) {
    .about-content {
        flex-direction: row;
        padding: 20px 20px;
    }

    .about-text {
        width: 50%;
        padding-right: 30px;
    }

    .about-image {
        width: 45%;
    }

    .about h2 {
        font-size: 2.3em;
        margin-bottom: 10px;
    }

    .about p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .about-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .about-item h3 {
        font-size: 1.6em;
    }

    .about-item p {
        font-size:  1em;
    }
  
}

/*END ABOUT*/
/*START PRICING*/
/* Pricing container */
.pricing {
    display: grid;  
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Auto-fill with minimum 350px */
    gap: 40px;  /* Space between cards */
    margin-top: 2px;
    min-height: 700px;
    background-color: #d7f1ec;
    text-align: center;
    padding: 30px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

/* Centering the header and ensuring proper spacing */
.pricing h2 {
    grid-column: 1 / -1; /* Make the header span the entire width of the grid */
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding: 0 15px;
    letter-spacing: 1px;
}

/* Pricing card styling */
.pricing-card {
    display: flex;
    flex-direction: column; /* Ensure card content stays vertically aligned */
    justify-content: space-between; /* This ensures content stays in position */
 
    padding: 20px;  /* Increased padding for card content */
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin: 0 auto; /* Centering cards with auto margin */
}

/* Hover effect on the pricing card */
.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card heading styles */
.pricing-card h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Card price styles */
.pricing-card .price {
    font-size: 1.3em;
    font-weight: bold;
    color: #3a9d88;
    margin-top: 1px;
}

/* List styles inside the pricing card */
.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

/* List item styles */
.pricing-card ul li {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
}

/* Checkmark and cross icons */
.pricing-card ul li::before {
    content: '\2713'; /* Checkmark */
    font-size: 1.5em;
    color: #2a9d8f;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pricing-card ul li.cross::before {
    content: '\2717'; /* Cross */
    color: #e74c3c;
}

/* Feature note style */
.feature-note {
    font-size: 0.9em;
    color: #e74c3c;
    margin-left: 10px;
    font-weight: 300;
    display: inline-block;
}

/* Hover effect for list items */
.pricing-card ul li:hover {
    color: #2a9d8f;
    transition: color 0.3s ease;
}

/* Button styles */
.cta-button {
    background-color: #ffffff;
    color: #1cc1a3;
    padding: 15px 30px;
    font-size: 1.2em;
    border: 2px solid #1cc1a3;
    cursor: pointer;
    margin-top: 30px;
    text-transform: uppercase;
    border-radius: 5px;
}

/* Button hover effect */
.cta-button:hover {
    background-color: #1cc1a3;
    color: white;
}

/* Adjustments for mobile and tablet view */
@media (max-width: 320px) {
    .pricing {
        grid-template-columns: repeat(1, 1fr); /* One card per row */
    }

    .pricing-card {
        width: 100%;
        margin: 10px 0;
        padding: 10px;
    }

    .pricing h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .pricing-card .price {
        font-size: 1.4em;
    }
}

/* Adjustments for tablet (321px to 768px) */
@media (min-width: 321px) and (max-width: 768px) {
    .pricing {
        grid-template-columns: repeat(1, 1fr); /* One card per row */
    }

    .pricing h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .pricing-card .price {
        font-size: 1.6em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1.1em;
    }
}

/* Adjustments for medium screens (769px to 1155px) */
@media (min-width: 769px) and (max-width: 1155px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    }

    .pricing-card {
        padding: 20px; /* Adjust padding for larger screens */
    }

    .pricing h2 {
        font-size: 2em; /* Larger heading */
    }

    .pricing-card .price {
        font-size: 1.8em; /* Larger price */
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1.2em;
    }
}

/* Adjustments for larger screens (1156px to 1655px) */
@media (min-width: 1156px) and (max-width: 1655px) {
    .pricing {
        grid-template-columns: repeat(3, 1fr); /* Three cards per row */
    }

    .pricing h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .pricing-card .price {
        font-size: 1.9em; /* Increase price font size */
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.3em;
    }
}

/* Adjustments for very large screens (1656px and above) */
@media (min-width: 1656px) {
    /* .pricing {
        grid-template-columns: repeat(4, 1fr); /* Four cards per row */
    /* } */ */

    .pricing-card {
        padding: 15px;
        gap: 60px;
    }

    .pricing h2 {
        font-size: 2.5em;
    }

    .pricing-card .price {
        font-size: 2em; /* Larger price */
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.4em;
        margin-top: 5px;
    }
}

/* END PRICING */

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2em;
}

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

/*START SERVICES*/
/* Services Section Styles */
.services {
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
    min-height: 700px;
}

.services h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Service Cards Container */
.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Individual Service Card Styles */
.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Hover Effect */
.service-card:hover {
    transform: scale(1.05);
}

.services_p {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    text-transform: uppercase;
}

/* Mobile View (max-width: 320px) */
@media (max-width: 320px) {
    .services {
        padding: 50px 30px;
    }

    .services h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    /* Service Cards Container */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Adjust gap between stacked cards */
    }

    /* Individual Service Card Styles */
    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.4em;
        /* Reduce heading size */
    }

    .service-card p {
        font-size: 0.9em;
        /* Reduce paragraph size */
    }
}

/* iPad / Tablet View (min-width: 321px and max-width: 768px) */
@media (min-width: 321px) and (max-width: 768px) {
    .services {
        padding: 50px 20px;
    }

    .services h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    /* Service Cards Container */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Individual Service Card Styles */
    .service-card {
        padding: 18px;
    }

    .service-card h3 {
        font-size: 1.6em;
        /* Adjust heading size */
    }

    .service-card p {
        font-size: 1.0em;
        /* Adjust paragraph size */
    }
}

/* Laptop View (min-width: 769px and max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 2.4em;
        margin-bottom: 35px;
    }

    /* Service Cards Container */
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 3 cards per row */
        gap: 30px;
    }

    /* Individual Service Card Styles */
    .service-card {
        padding: 18px;
    }

    .service-card h3 {
        font-size: 1.7em;
        /* Adjust heading size */
    }

    .service-card p {
        font-size: 1.1em;
        /* Adjust paragraph size */
    }
}

/* Desktop View (min-width: 1025px) */
@media (min-width: 1025px) {
    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
    }

    /* Service Cards Container */
    .service-cards {
        grid-template-columns: repeat(4, 1fr);
        /* 4 cards per row */
        gap: 30px;
    }

    /* Individual Service Card Styles */
    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.8em;
        /* Adjust heading size */
    }

    .service-card p {
        font-size: 1.1em;
        /* Adjust paragraph size */
    }
}

/*END SERVICES*/
/*START TESTIMONIAL*/

#testimonials {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

/* Header Styles */
.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1.2em;
    color: #555;
    margin: 0;
}

/* Testimonial Slide Container */
.testimonial-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

/* Individual Testimonial Slide */
.testimonial-slide {
    display: none;
    /* Hide all slides by default */
    padding: 20px;
    font-size: 1.2em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonial Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

.dot:hover {
    background-color: #666;
}

/* Mobile View (320px) */
@media (max-width: 320px) {
    #testimonials {
        padding: 30px 10px;
        /* Reduce padding for mobile */
    }

    .testimonials-header h2 {
        font-size: 1.4em;
        /* Adjust heading font size for mobile */
        margin-bottom: 10px;
    }

    .testimonials-header p {
        font-size: 1em;
        /* Adjust subheading font size */
    }

    .testimonial-slide {
        font-size: 1em;
        /* Adjust font size for mobile */
        padding: 15px;
        /* Reduce padding */
    }

    .testimonial-dots {
        margin-top: 15px;
    }

    .dot {
        height: 12px;
        /* Smaller dots for mobile */
        width: 12px;
        margin: 0 3px;
        /* Adjust spacing between dots */
    }

    .dot.active {
        background-color: #333;
        /* Active dot stays dark */
    }

    .dot:hover {
        background-color: #666;
        /* Hover effect for dots */
    }
}

/*END TESTIMONIAL*/
/*START CONTACT*/
/* Contact Section */
.contact {
    padding: 40px 20px;
    text-align: left;
    background-color: #f9f9f9;
    color: black;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact .contact-intro {
    font-style: italic;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

/* Container for Row Layout */
.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    /* Allow elements to wrap on smaller screens */
}

/* Contact Info */
.contact .contact-details {
    flex: 1;
    max-width: 45%;
    text-align: left;
    color: #333;
}

.contact .contact-details p {
    font-size: 1.1em;
    margin: 8px 0;
}

.contact .contact-details a {
    color: #4CAF50;
    text-decoration: none;
}

/* Contact Form */
.contact .contact-form {
    flex: 1;
    max-width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact .contact-form h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.contact .contact-form label {
    text-align: left;
    color: #333;
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.1em;
}

.contact .contact-form button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
}

.contact .contact-form button:hover {
    background-color: #45a049;
}

/* Mobile View (max-width: 320px) */
@media screen and (max-width: 320px) {

    /* Contact Section */
    .contact {
        padding: 30px 20px;
    }

    .contact h2 {
        font-size: 1.4em;
        margin-bottom: 15px;

        padding: 30px 20px;
    }

    .contact .contact-intro {
        font-size: 1em;
        margin-bottom: 20px;

    }

    /* Row Layout (Contact Info and Form) */
    .contact-row {
        flex-direction: column;
        align-items: center;
    }

    /* Contact Details */
    .contact .contact-details {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .contact .contact-details p {
        font-size: 1em;
    }

    /* Contact Form */
    .contact .contact-form {
        max-width: 100%;
        padding: 20px;
    }

    .contact .contact-form h3 {
        font-size: 1.0em;
        margin-bottom: 15px;
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 1em;
        margin-right: 12px;
    }

    .contact .contact-form button {
        font-size: 12px;
    }
}

/* iPad / Tablet View (min-width: 321px and max-width: 768px) */
@media screen and (min-width: 321px) and (max-width: 768px) {

    /* Contact Section */
    .contact {
        padding: 30px 20px;
    }

    .contact h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .contact .contact-intro {
        font-size: 1.0em;
        margin-bottom: 30px;
    }

    /* Row Layout (Contact Info and Form) */
    .contact-row {
        flex-direction: column;
        align-items: center;
    }

    /* Contact Details */
    .contact .contact-details {
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* Contact Form */
    .contact .contact-form {
        max-width: 100%;
        padding: 20px;
    }

    .contact .contact-form h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 1.1em;
    }

    .contact .contact-form button {
        font-size: 14px;
    }

    /* Contact Details */
    .contact .contact-details {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left;

    }

    .contact .contact-details p {
        font-size: 1em;
    }
}

/* Laptop View (min-width: 769px and max-width: 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    /* Contact Section */
    .contact {
        padding: 40px 20px;
    }

    .contact h2 {
        font-size: 2.4em;
        margin-bottom: 20px;
    }

    .contact .contact-intro {
        font-size: 1.3em;
        margin-bottom: 35px;
    }

    /* Row Layout (Contact Info and Form) */
    .contact-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    /* Contact Details */
    .contact .contact-details {
        max-width: 45%;
    }

    /* Contact Form */
    .contact .contact-form {
        max-width: 45%;
        padding: 20px;
    }

    .contact .contact-form h3 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 1.2em;
    }

    .contact .contact-form button {
        font-size: 15px;
    }
}

/* Desktop View (min-width: 1025px) */
@media screen and (min-width: 1025px) {

    /* Contact Section */
    .contact {
        padding: 40px 20px;
    }

    .contact h2 {
        font-size: 2.0em;
        margin-bottom: 20px;
        padding: 40px 20px;
    }

    .contact .contact-intro {
        font-size: 1.2em;
        margin-bottom: 40px;
    }

    /* Row Layout (Contact Info and Form) */
    .contact-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    /* Contact Details */
    .contact .contact-details {
        max-width: 45%;
    }

    /* Contact Form */
    .contact .contact-form {
        max-width: 45%;
        padding: 10px 40px;

    }

    .contact .contact-form h3 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 1.1em;
    }

    .contact .contact-form button {
        font-size: 16px;
    }
}

/*END CONTACT*/
/* START LOGIN AND REGISTER SIDEBAR*/


/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* Initially hidden off-screen */
    width: 300px;
    height: 100%;
    background-color: white;
    color: rgb(17, 2, 2);
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar-content {
    padding: 20px;
}

.sidebar h2 {
    margin-bottom: 20px;
    display: block;
    /* Ensure h2 is a block element */
    font-size: 1.8em;
    /* Adjust the font size for better visibility */
}

.sidebar p {
    margin-top: 10px;
    /* Add spacing between p and h2 */
    display: block;
    /* Ensure p is a block element */
}

.sidebar a {
    color: #1cc1a3;
    text-decoration: none;
}

.sidebar a:hover {
    text-decoration: underline;
}

.sidebar input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #444;
    color:white;
    border: 1px solid #555;
}

.sidebar button {
    width: 100%;
    padding: 10px;
    background-color: #1cc1a3;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.sidebar button:hover {
    background-color: #1b9e8d;
}

#closeSidebar {
    background-color: white;
    margin-top: 20px;
    color: black;
    text-align: left;
    font-weight: bolder;
}


/* Show Sidebar (when active) */
.sidebar.active {
    right: 0;
    /* Moves the sidebar into view */
}

/* Mobile View */
@media (max-width: 320px) {
    .navbar {
        padding: 15px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* END LOGIN AND REGISTER SIDEBAR*/
/* START FOOTER */

footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    font-size: 1em;
    text-align: left;
    font-family: 'Arial', sans-serif;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* Footer Left - Brand Info */
.footer-left {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-left h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #4CAF50;
}

.footer-left p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ddd;
}

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

.social-icons .social-icon {
    margin-right: 10px;
    font-size: 1.8em;
    color: white;
    transition: color 0.3s;
}

.social-icons .social-icon:hover {
    color: #4CAF50;
}

/* Footer Middle - Quick Links */
.footer-middle {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-middle h4 {
    font-size: 1.6em;
    color: #4CAF50;
    margin-bottom: 20px;
}

.footer-middle ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

.footer-middle ul li a:hover {
    color: #4CAF50;
}

/* Footer Right - Contact Info */
.footer-right {
    flex: 1;
    padding: 5px;
    min-width: 250px;
    text-align: left;
}

.footer-right h4 {
    font-size: 1.6em;
    color: #4CAF50;
    margin-bottom: 5px;
}

.footer-right .address {
    margin-bottom: 5px;
}

.footer-right h5 {
    font-size: 1em;
    color: #f1f1f1;
    margin-bottom: 5px;
}

.footer-right p {
    font-size: 1em;
    color: #ddd;
    margin-bottom: 5px;
}

/* Footer Bottom - Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
}

.footer-bottom p {
    color: #ddd;
    margin: 0;
}

.footer-bottom p a {
    color: #4CAF50;
    text-decoration: none;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

/* GST and Udyam Registration Row */
.registration-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.registration-item {
    display: flex;
    align-items: center;
}

.registration-item h5 {
    margin-right: 10px;
    color: #fff;
}

.registration-item p {
    color: #ddd;
}

/* Mobile Responsive */
@media (max-width: 320px) {

    .footer-container,
    .registration-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right,
    .registration-row {
        min-width: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-left h3 {
        font-size: 1.8em;
    }

    .footer-middle ul li {
        font-size: 1em;
    }

    .footer-right .address p {
        font-size: 1em;
        margin: 0 2px;
    }

    .footer-right .contact-info p,
    .footer-right .working-hours p,
    .footer-right .gst-info p {
        font-size: 1em;
        margin: 0 2px;
    }
}

/* Tablet View (min-width: 321px and max-width: 768px) */
@media screen and (min-width: 321px) and (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        min-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-left h3,
    .footer-middle h4,
    .footer-right h4 {
        font-size: 1.8em;
    }

    .footer-middle ul li {
        font-size: 1.1em;
    }

    .footer-right p {
        font-size: 1em;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .registration-row {
        flex-direction: column;
        align-items: center;
    }

    .registration-item {
        margin-bottom: 15px;
    }
}

/* Laptop View (min-width: 769px and max-width: 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        min-width: 30%;
    }

    .footer-left h3,
    .footer-middle h4,
    .footer-right h4 {
        font-size: 2em;
    }

    .footer-middle ul li {
        font-size: 1.1em;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .registration-row {
        justify-content: space-between;
    }
}

/* Desktop View (min-width: 1025px) */
@media screen and (min-width: 1025px) {

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        min-width: 30%;
    }

    .footer-left h3,
    .footer-middle h4,
    .footer-right h4 {
        font-size: 2.2em;
    }

    .footer-middle ul li {
        font-size: 1.1em;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .registration-row {
        justify-content: space-between;
    }
}

/* END FOOTER */
/*START TEAM*/
/* Team Section */
#team {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    min-height: 700px;
}

#team h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.team-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.team-cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.team-card {
    flex: 0 0 250px;
    margin: 10px;
    perspective: 1000px;
}

.flip-card {
    width: 100%;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
}

.flip-card-front img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.flip-card-front h3 {
    margin: 10px 0;
    color: #333;
}

.flip-card-back {
    background-color: #333;
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: left;
}

.flip-card-back h3 {
    margin-top: 0;
}

.flip-card-back p {
    font-size: 1em;
    margin-bottom: 10px;
}

.prev-next-btns {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.prev-btn,
.next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    font-size: 20px;
    border-radius: 50%;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Existing styles */

.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

.dot:hover {
    background-color: #333;
}

/* mobile view  */
@media screen and (max-width: 320px) {
    #team {
        padding: 30px 10px;
    }

    #team h2 {
        font-size: 1.8em;
        /* Smaller heading for mobile */
        margin-bottom: 20px;
    }

    /* Team Slider Container */
    .team-slider-container {
        max-width: 100%;
        padding: 0 10px;
        /* Reduce padding */
    }

    .team-card {
        flex: 0 0 100%;
        /* Each card takes full width */
        margin: 15px 0;
        /* Adjust margins for better spacing */
    }

    .flip-card {
        height: 350px;
        /* Adjust height for smaller screens */
    }

    .flip-card-inner {
        border-radius: 8px;
        /* Slightly round the corners */
    }

    .flip-card-front img {
        margin-top: 5px;
        height: 80%;
        /* Adjust image height */
    }

    .flip-card-back {
        padding: 15px;
        text-align: center;
    }

    .flip-card-back h3 {
        font-size: 1.2em;
        /* Adjust text size */
    }

    .flip-card-back p {
        font-size: 0.9em;
        /* Reduce font size for readability */
    }

    /* Prev/Next Buttons */
    .prev-next-btns {
        display: none;
        /* Hide the slider navigation buttons on small screens */
    }
}

/*END TEAM*/






@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/*  greather of mobile view  */
/* @media (max-width: 768px) {

            /* header h1 {

                font-size: 1.2em;
                margin-left: 5px;

            }

            .logo {
                width: 40px;
                height: auto;
                margin-left: 24px;
            } */
/* nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 250px;
                background-color: white;
                position: absolute;
                top: 60px;
                left: 0;
                padding: 0;
                margin: 0;
                z-index: 999;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hamburger {
                display: flex;
            }

            nav.active ul {
                display: flex;
            }

            .hamburger {
                display: flex;
            } */

/* .hero h2 {
                font-size: 1.9em;
                margin: 0;
                color: rgb(2, 2, 57);
            }
    
            .hero p {
                font-size: 1.2em;
            } */
/* } */