:root {
    --primary-color: #03a9f5;
    --secondary-color: #a5090c;
    --text-color: #111;
    --background-color: #fff;
    --light-shade: #e0f5ff;
    --font-main: "Work Sans", sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.7rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: medium;
}

span {
    font-size: 1rem;
}

a {
    color: #111;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

a:hover {
    color: var(--secondary-color);
}

.b-color {
    color: var(--primary-color);
    font-size:2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.btn-center {
    text-align: center;
}

/* Header styles */
header {
    background-color: white;
    width: 100%;
    top: 0;
    z-index: 1000;
    max-width: 100%;
    margin: auto;
    position: fixed;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .3rem;
    margin: auto;
    max-width: 90%;
}

.main-nav a {
    padding: 0 8px;
}

.logo img {
    height: 50px;
    width: 50px;
}

.menu-items {
    display: none;
}

.cta-button-head {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.cta-button-head a {
    color: #fff;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
}

.menu-items a {
    padding-right: .8rem;
}

.side-nav {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
}

.side-nav.open {
    right: 0;
}

.side-logo {
  height: 50px;
  width: 50px;
  margin-bottom: 15px;
}

.side-nav ul {
    list-style: none;
    padding: 2rem;
    padding-top:3ren;
    padding-bottom: 0;
}

.side-nav li {
    margin-bottom: 2rem;
}

.side-nav .cta-button {
    margin-left: 2rem;
}

/* Hero section styles */
#hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    background: linear-gradient(to bottom, #FFFFFF 59%, #FFFFFF 53%, #C1EBFE 100%);
    width: 100%;
}

.hero-content {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h3,
.hero h1,
.hero p {
    margin-bottom: 1rem;
    text-align: center;
}

.hero-image,
.about-image {
   text-align: center;
}

/* About section styles */
.about {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 2rem 1rem;
    max-width: 95%;
    margin: auto;
}

.about-image, .about-content {
    width: 100%;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services section styles */
.services {
    background-color: var(--light-shade);
    padding: 4rem 1rem;
    text-align: center;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 95%;
    margin: auto;
}

.service-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
}

.service-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-box p {
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 15px;
}

/* Packages section styles */
.packages {
    padding: 2.5rem 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--light-shade) 0%, transparent 50%),
    linear-gradient(225deg, transparent 50%, var(--light-shade) 100%);
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    z-index: -1;
}

.package-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 95%;
    margin: auto;
}

.packages h2 {
    text-align: center;
}

.package-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.package-box img {
    width: 100%;
    height: auto;
}

.package-box h2, .package-box p, .package-box .cta-button {
    margin: 1rem;
}

.package-box h2 {
    text-align:left;
}

/* Achievements section styles */
.achievements {
    padding: 4rem 1rem;
    background-color: var(--light-shade);
}

.ac-boxes {
    max-width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2.5rem;
}

.achievement-item {
    text-align: center;
    margin-bottom: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.achievement-label {
    font-size: 1.2rem;
}

/* Testimonials section styles */
.testimonials {
    padding: 2.5rem 1rem;
    text-align: center;
    background-color: #fff;
    max-width: 95%;
    margin: auto;
}

.testimonials p {
    text-align: left;
}

.testimonial-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 1rem;
}

.testimonial video {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.testimonial p {
    text-align: center;
    font-weight: bold;
    font-style: italic;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.slider-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-button:hover {
    background: var(--secondary-color);
}

.slider-button.prev {
    left: -20px;
}

.slider-button.next {
    right: -20px;
}

/* FAQ section styles */
.faq {
    padding: 2rem 1rem;
    max-width: 95%;
    margin: auto;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-image {
    display: none;
    background: linear-gradient(135deg, var(--light-shade) 0%, transparent 50%),
    linear-gradient(225deg, transparent 50%, var(--light-shade) 100%);
}

/* Footer styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 1rem 2rem;
}

#sub-footer {
    background-color: var(--primary-color);
    color: white;
}

footer h3 {
    margin-top: 1.5rem;
}

footer p {
    font-size: 1.1rem;
    color: #fff;
}

.footer-box {
    max-width: 95%;
    margin: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-info, .footer-links {
    flex: 1 1 300px;
}

.footer-logo {
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #fff;
}

.copyright {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
    opacity: 0;
}

.animate-fade-in-up.animated {
    opacity: 1;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    margin: 0;
    padding-right: 1rem;
}

/* Media Queries */
@media screen and (min-width: 600px) {
    #hero {
      height: 70vh;
      margin-top: 2rem;
    }
    
    .ac-boxes {
        flex-direction: row;
        justify-content: space-around;
    }

    .achievement-item {
        margin-bottom: 0;
    }

    .slider-button.prev {
        left: -10px;
    }
    
    .slider-button.next {
        right: -10px;
    }
}

@media screen and (min-width: 768px) {
    .main-nav {
        max-width: 90%;
        margin: auto;
    }
   
    .about {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
        padding-top: 4rem;
    }

    #hero {
        height: 50vh;
        margin-top: 1rem;
    }

    .about,
    .service-boxes,
    .testimonials,
    .package-boxes,
    .ac-boxes,
    .footer-box,
    .faq {
        max-width: 90%;
        margin: auto;
    }

    .about-content {
        flex-basis: 50%;
    }

    .about-image {
        flex-basis: 49%;
    }

    .service-boxes {
        flex-wrap: wrap;
        max-width: 80%;
    }

    .package-boxes {
        flex-wrap: nowrap;
        margin: auto;
    }

    .slider-button.prev {
        left: -25px;
    }
    
    .slider-button.next {
        right: -25px;
    }
    
    .cta-button-head {
        display: inline-block;
    }
    
    .menu-items {
        display: flex;
        list-style: none;
    }

    .menu-items li {
        margin-left: 1rem;
    }

    .menu-toggle {
        display: none;
    }

    .faq p {
        margin-bottom: 2rem;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        flex-basis: 60%;
        gap: 2rem;
    }

    .footer-info {
        flex-basis: 35%;
    }

}

@media screen and (min-width: 1000px) {
    #hero {
        height: 100vh;
    }
    
    .faq {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3rem
    }

    .faq-content {
        width: 50%;
    }

    .faq-image {
        display: block;
        width: 45%;
    }

    .faq-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .testimonial-container {
        display: flex; /* Keep it as flex */
    }

    .footer-box {
        display: flex;
        justify-content: space-between;
        gap: 3rem;
        align-items: flex-start;
    }

    .service-boxes {
        flex-wrap: nowrap;
    }

    .main-nav,
    .about,
    .service-boxes,
    .testimonials,
    .package-boxes,
    .ac-boxes,
    .footer-box,
    .faq {
        max-width: 85%;
        margin: auto;
    }
}

@media screen and (min-width: 1200px) {
    .main-nav,
    .hero-content,
    .about,
    .service-boxes,
    .testimonials,
    .package-boxes,
    .ac-boxes,
    .footer-box,
    .faq {
        max-width: 80%;
        margin: auto;
    }

    #hero {
        height: 85vh;
    }
}

@media screen and (min-width: 1440px) {
    .main-nav,
    .hero-content,
    .about,
    .service-boxes,
    .testimonials,
    .package-boxes,
    .ac-boxes,
    .footer-box,
    .faq {
        max-width: 77%;
        margin: auto;
    }
}

@media screen and (min-width: 1900px) {
    .main-nav,
    .hero-content,
    .about,
    .service-boxes,
    .testimonials,
    .package-boxes,
    .ac-boxes,
    .footer-box,
    .faq {
        max-width: 70%;
        margin: auto;
    }
}