/* primary color: rgb(255, 223, 0); */
/* secondary color: rgb(2, 132, 52); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
}

.heading h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(2, 132, 52);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 15px;
    position: sticky;
    top: 0px;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header.shadow {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    /* Darker and larger shadow for better visibility */
}

.header .logo {
    position: relative;
    top: 5px;
}

.header .logo h1 {
    margin-left: 100px;
    color: rgb(2, 132, 52);
    font-style: normal;
    font-family: "Wendy One", sans-serif;
    font-weight: 400;
}

.call-btn {
    padding: 10px;
}

.phone {
    margin-right: 100px;
    border: 1px solid white;
    padding: 10px;
    background: rgb(2, 132, 52);
    ;
    display: inline-flex;
    align-items: center;
}

.phone a {
    text-decoration: none;
    font-weight: 700;
    color: rgb(255, 255, 255);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.phone a img {
    width: 3.3vh;
    margin-right: 5px;
}


.mobilecall{
    text-align: end;
    position: fixed;
    z-index: 10;
    left: 80%;
    top: 85%;
}

.mobilecall img{
    width: 8vh;
}

/* Banner Section */
#banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
}

#banner .banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 223, 0, 0.3);
    mix-blend-mode: overlay;
    animation: subtlePulse 8s infinite alternate;
}

@keyframes subtlePulse {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 0.5;
    }
}

#banner .content {
    position: relative;
    display: flex;
    width: 90%;
    z-index: 2;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    column-gap: 200px;
}

#banner .box1{
    position: relative;
    width: 40%;
    height: 650px;
    padding: 2rem;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


#banner .box2 {
    position: relative;
    width: 40%;
    height: 650px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(12px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#banner .box2:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 24px rgba(255, 223, 0, 0.4);
}

#banner .box2::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(255, 223, 0, 0.2), transparent 50%);
    transform: rotate(45deg);
    animation: gradientShift 12s infinite linear;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }

    100% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
}

#banner .box1 .text {
    padding: 15px;
}

#banner .box1 h2 {
    font-size: 3rem;
    font-weight: 900;
    color: rgb(255, 223, 0);
    animation: fadeIn 1.5s ease;
    position: relative;
    margin-bottom: 1rem;
}

#banner .box1 .text h1 {
    font-size: 60px;
    font-weight: 700;
}

#banner .box1 .text h1 span {
    text-decoration: line-through;
    font-size: 30px;
}

#banner .box1 .text p {
    font-size: 20px;
    margin-top: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#banner .box2 .form {
    padding: 20px;
}

#banner .box2 .form .title {
    text-align: center;
}

#banner .box2 .form .title p {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    animation: blinkGlowScale 1.5s infinite alternate;
    text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00, 0 0 20px #ffcc00;
}

@keyframes blinkGlowScale {
    0% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00, 0 0 20px #ffcc00;
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
        text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc;
    }

    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00, 0 0 20px #ffcc00;
    }
}


#banner .box2 .form-field {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

#banner .box2 .form-field input,
#banner .box2 .form-field textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#banner .box2 .form-field input:focus,
#banner .box2 .form-field textarea:focus {
    box-shadow: 0px 0px 10px rgba(255, 223, 0, 0.6);
    outline: none;
    transform: scale(1.02);
}

#banner .box2 .form-field textarea {
    resize: none;
    height: 80px;
}

#banner .submit-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: rgb(255, 223, 0);
    color: #333;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#banner .submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(255, 223, 0, 0.4);
}

#banner .box1::after,
#banner .box2::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    border: 2px solid rgba(255, 223, 0, 0.5);
    opacity: 0;
    animation: boxGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes boxGlow {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.6;
        transform: scale(1);
    }
}

#services {
    margin-top: 5%;
}

#services .content {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 50px;
}

#services .content .box {
    width: calc(50% - 25px);
    padding: 25px;
    background: linear-gradient(145deg, #fff, rgba(255, 223, 0, 0.15));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

#services .content .box::before,
#services .content .box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    transition: transform 0.5s ease, opacity 0.5s ease;
    mix-blend-mode: multiply;
}

#services .content .box::before {
    width: 120px;
    height: 120px;
    background: rgba(2, 132, 52, 0.25);
    top: -30px;
    left: -30px;
    transform: rotate(45deg) scale(0.8);
}

#services .content .box::after {
    width: 80px;
    height: 80px;
    background: rgba(255, 223, 0, 0.3);
    bottom: -20px;
    right: -20px;
    transform: rotate(45deg) scale(0.7);
}

#services .content .box:hover::before {
    transform: scale(1.1) translateY(-5px) translateX(5px);
    opacity: 0.6;
}

#services .content .box:hover::after {
    transform: scale(1.2) translateY(5px) translateX(-5px);
    opacity: 0.5;
}

#services .content .box img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.15));
}

#services .content .box:hover img {
    transform: rotate(-10deg) scale(1.1);
    filter: brightness(1.2);
}

#services .content .box h4 {
    font-size: 18px;
    font-weight: bold;
    color: rgb(2, 132, 52);
    margin: 10px 0;
    text-align: center;
    position: relative;
}

#services .content .box h4::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: rgb(255, 223, 0);
    bottom: -6px;
    left: 25%;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.5s, transform 0.5s;
}

#services .content .box:hover h4::before {
    opacity: 1;
    transform: scaleX(1);
}

#services .content .box p {
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.6;
    transition: color 0.4s;
}

#services .content .box:hover p {
    color: rgb(2, 132, 52);
}

#carouselExampleAutoplaying {
    margin-top: 5%;
    background: rgb(234, 233, 233);
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-item .text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.carousel-item .text h1 {
    font-size: 60px;
    color: white;
    font-family: "Passion One", serif;
    word-break: 0px;
    letter-spacing: 8px;
}

.carousel-item .text .btns {
    position: relative;
    display: inline-block;
}

.carousel-item .text .btns button {
    margin: 5px;
    margin-top: 20px;
    padding: 15px 20px;
    width: 200px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: rgb(2, 132, 52);
    position: relative;
    overflow: hidden;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    z-index: 1;
}

.carousel-item .text .btns button::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.carousel-item .text .btns button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.carousel-item .text .btns button:hover {
    border-color: rgb(2, 132, 52);;
    transform: scale(1.05);
}

.carousel-item .text .btns button a {
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 500;
}

#availability {
    margin-top: 5%;
}

#availability .content {
    display: flex;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

#availability .content .box {
    position: relative;
    width: 30%;
    max-width: 280px;
    padding: 20px;
    margin: 10px;
    background: linear-gradient(145deg, rgb(255, 223, 0) 30%, rgb(2, 132, 52) 100%);
    color: #ffffff;
    text-align: center;
    font-size: 1.2em;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#availability .content .box::before,
#availability .content .box::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(2, 132, 52, 0.05));
    z-index: 0;
    transition: transform 0.6s ease;
}

#availability .content .box::after {
    background: radial-gradient(circle, rgba(255, 223, 0, 0.3), rgba(255, 255, 255, 0.05));
    bottom: -20%;
    right: -20%;
    left: auto;
    top: auto;
}

#availability .content .box:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35), inset 0 0 40px rgba(255, 255, 255, 0.2);
}

#availability .content .box:hover::before,
#availability .content .box:hover::after {
    transform: scale(1.2) rotate(15deg);
}

#availability .content .box span {
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-size: 1.3em;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

#counter {
    margin-top: 5%;
    padding: 40px 0;
    background: linear-gradient(to right, rgba(2, 132, 52, 0.916), rgba(87, 203, 131, 0.949));
}

#counter .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

#counter .content .box {
    width: 20%;
    padding: 20px;
    border-radius: 15px;
    background: rgb(255, 223, 0);
    color: rgb(2, 132, 52);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: slideIn 0.5s ease forwards;
}

#counter .content .box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(2, 132, 52, 0.5);
    border-radius: 50%;
    transform: translateY(50%);
    animation: wave 2s ease-in-out infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(50%);
    }

    50% {
        transform: translateY(60%);
    }
}

#counter .content .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

#counter .content .box h1 {
    font-size: 3em;
    margin: 0;
    color: rgb(2, 132, 52);
    font-weight: 700;
}

#counter .content .box p {
    margin-top: 10px;
    font-size: 1.2em;
    color: rgb(2, 132, 52);
    font-weight: 500;
}

@media (max-width: 768px) {
    #counter .content .box {
        width: 100%;
        max-width: 300px;
    }
}

#whychooseus {
    margin-top: 5%;
}

#whychooseus .content {
    display: flex;
    justify-content: center;
    column-gap: 50px;
}

#whychooseus .content .box {
    position: relative;
    width: 25%;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.1), rgba(2, 132, 52, 0.1));
    border: 2px solid rgba(176, 176, 176, 0.864);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
    z-index: 1;
}

#whychooseus .content .box:hover {
    transform: translateY(-10px);
}

#whychooseus .content .box h1 {
    font-size: 1.5em;
    color: rgb(2, 132, 52);
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    transition: color 0.3s;
    font-weight: 700;
}

#whychooseus .content .box p {
    font-size: 1.2em;
    color: #555;
    z-index: 1;
    position: relative;
    transition: color 0.3s;
    margin-top: 20px;
}

#whychooseus .content .box::before,
#whychooseus .content .box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 223, 0, 0.3);
    transition: transform 0.6s ease, background 0.3s ease;
    z-index: 0;
}

#whychooseus .content .box::before {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    transform: scale(1);
}

#whychooseus .content .box::after {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
    transform: scale(1);
}

#whychooseus .content .box:hover::before,
#whychooseus .content .box:hover::after {
    transform: scale(1.8);
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.5), rgba(2, 132, 52, 0.5));
}

#whychooseus .content .box:hover h1,
#whychooseus .content .box:hover p {
    color: rgb(2, 132, 52);
}

.accordion {
    margin-top: 5%;
}

.accordion-item {
    width: 80%;
    margin: auto;
}

.accordion-button:not(.collapsed) {
    font-size: 20px;
    background-color: rgba(2, 132, 52, 0.893);
    color: rgb(255, 223, 0);

}

.accordion-button {
    font-weight: 700;
}

.accordion-body {
    background: #f6f4f4;
}


#footer {
    margin-top: 5%;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 221, 0, 0.978), rgba(2, 132, 52, 0.94));
    color: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 223, 0, 0.3);
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.5s ease;
}

#footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(2, 132, 52, 0.3);
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.5s ease;
}

#footer:hover::before {
    transform: translate(-20px, 20px);
}

#footer:hover::after {
    transform: translate(20px, -20px);
}

#footer .footer {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

#footer .box {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

#footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
}

#footer h2:after {
    content: '';
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 223, 0, 0.8), rgba(2, 132, 52, 0.8));
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

#footer .box p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

#footer .box a {
    color: rgba(255, 223, 0, 0.9);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

#footer .box a:hover {
    color: rgba(2, 132, 52, 0.9);
    transform: translateX(5px);
    text-decoration: underline;
}

#footer .social-link {
    display: inline-block;
    margin-right: 15px;
    color: rgba(255, 223, 0, 0.9);
    font-size: 18px;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

#footer .social-link i {
    margin-right: 8px;
}

#footer .social-link:hover {
    color: rgba(2, 132, 52, 0.9);
    transform: scale(1.1);
}

#footer .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 223, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

#footer .footer-bottom p {
    margin: 0;
    font-size: 14px;
}


#thankyou {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(2, 47, 106, 0.9), rgba(255, 90, 90, 0.9));
    position: relative;
    overflow: hidden;
}

#thankyou::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.05) 75%,
            transparent 75%,
            transparent 100%);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

#thankyou .box {
    position: relative;
    padding: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 2;
    overflow: hidden;
}

#thankyou .box h1 {
    font-size: 60px;
    font-family: "Cookie", cursive;
    color: rgb(2, 47, 106);
}

#thankyou .box p {
    font-size: 18px;
    color: #333;
    margin-top: 15px;
}

#thankyou .btns {
    margin-top: 20px;
    padding: 20px;
    z-index: 100;
}

#thankyou .btns .button {
    padding: 10px 20px;
    background-color: #ff8a5a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#thankyou .btns a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

#thankyou .btns .button:hover {
    background-color: rgb(255, 80, 80);
}