/* primary color = rgb(2, 47, 106); */
/* secondary =  #ff5a5a;  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.heading {
    text-align: center;
    margin-bottom: 40px;
}

.heading h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #133a84;
    position: relative;
    display: inline-block;
}

.heading h1::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 4px;
    background-color: #133a84;
    bottom: -10px;
    left: 10%;
}

.header {
    display: flex;
    justify-content: space-between;
    background: rgb(2, 47, 106);
    padding: 15px;
    position: sticky;
    top:0;
    z-index:1000;
}

.header .logo{
    position: relative;
    top: 5px;
}

.header .logo h1 {
    margin-left: 100px;
    color: white;
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.call-btn{
    padding: 10px;
}

.phone {
    margin-right: 100px;
    border: 1px solid white;
    padding: 10px;
    background: transparent;
    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;
}

#front-section {
    position: relative;
    width: 100%;
    padding: 0;
}

#front-section .box {
    position: relative;
    width: 100%;
}

#front-section .box video {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

#front-section .box .content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: -50px;
}

#front-section .box .content .box1 {
    width: 50%;
    color: white;
    padding: 50px;
}

#front-section .box .content .box1 h2 {
    font-size: 35px;
}

#front-section .box .content .box2 {
    position: relative;
    width: 40%;
    height: 100%;
    padding: 20px;
    margin-top: 50px;
}

#front-section .box .content .box2 .text2 {
    z-index: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 3px solid rgb(2, 47, 106);
    padding: 20px;
}

#front-section .box .content .box2 .text2 h4 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

#front-section .box .content .box2 .text2 p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 15px;
}

#front-section .box .content .box2 .text2 p span {
    text-decoration: line-through;
    color: #ff5a5a;
}

#front-section .box .content .box2 .pricing {
    margin: 20px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

#front-section .box .content .box2 .pricing h1 {
    font-size: 50px;
    color: #ff5a5a;
    font-weight: bold;
}

#front-section .box .content .box2 .text2 .form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#front-section .box .content .box2 .text2 .field {
    margin-bottom: 10px;
    width: 100%;
    text-align: start;
}

#front-section .box .content .box2 .text2 label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-align: start;
    color: white;
}

#front-section .box .content .box2 .text2 input[type="text"],
#front-section .box .content .box2 .text2 input[type="email"],
#front-section .box .content .box2 .text2 input[type="tel"] {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 2px solid rgb(2, 47, 106);
    background-color: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s ease;
}

#front-section .box .content .box2 .text2 textarea {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 2px solid rgb(2, 47, 106);
    background-color: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s ease;
}

#front-section .box .content .box2 .text2 textarea:focus {
    border-color: #ff5a5a;
    outline: none;
}

#front-section .box .content .box2 .text2 input[type="text"]:focus,
#front-section .box .content .box2 .text2 input[type="email"]:focus,
#front-section .box .content .box2 .text2 input[type="tel"]:focus {
    border-color: #ff5a5a;
    outline: none;
}

#form_submit {
    padding: 8px 15px;
    border: none;
    width: 200px;
    border-radius: 8px;
    color: white;
    background: rgb(2, 47, 106);
}

#services {
    margin-top: 5%;
    padding: 50px 0;
    background: linear-gradient(135deg, #f7f9fc, #e2ebf0);
}

#services .content {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    flex-wrap: wrap;
}

#services .content .box {
    width: 30%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

#services .content .box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(19, 58, 132, 0.15);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.3s ease;
}

#services .content .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#services .content .box:hover::before {
    transform: scale(1.2) rotate(20deg);
}

#services .content .box .title h3 {
    font-size: 1.8rem;
    color: #133a84;
    margin-bottom: 20px;
    position: relative;
}

#services .content .box .title h3::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #133a84;
    bottom: -5px;
    left: 0;
}

#services .content .box .points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

#services .content .box .points ul li {
    padding: 5px 0;
    font-size: 1rem;
    color: #555;
    transition: color 0.3s ease;
}

#services .content .box .points ul li:hover {
    color: #133a84;
}

#services .content .box .points ul li:last-child {
    border-bottom: none;
}

#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: linear-gradient(45deg, #ff5a5a, #ff8a5a);
    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: #ff8a5a;
    transform: scale(1.05);
}

.carousel-item .text .btns button a {
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#availability {
    margin-top: 5%;
}

#availability .content {
    display: flex;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

#availability .content .box {
    position: relative;
    width: 30%;
    max-width: 200px;
    padding: 20px;
    margin: 10px;
    background-color: #133a84;
    color: white;
    text-align: center;
    font-size: 1.2em;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#availability .content .box::before,
#availability .content .box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: all 0.4s ease;
}

#availability .content .box::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(-15deg);
    opacity: 0.5;
    z-index: 0;
}

#availability .content .box::after {
    background: #ff5a5a;
    transform: scaleX(0);
    z-index: 1;
    transition: transform 0.5s ease;
}

#availability .content .box:hover {
    background-color: #1e4a9f;
    transform: translateY(-5px);
}

#availability .content .box:hover::after {
    transform: scaleX(1);
}

#availability .content .box span {
    position: relative;
    z-index: 2;
}

#counter {
    margin-top: 5%;
    background-color: rgb(2, 47, 106);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

#counter::before,
#counter::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
    animation: move 8s infinite alternate;
}

#counter::before {
    top: -50px;
    left: -50px;
}

#counter::after {
    bottom: -50px;
    right: -50px;
}

@keyframes move {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.3) translateX(20px);
    }
}

#counter .points {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

#counter .points .box {
    width: 200px;
    padding: 20px;
    text-align: center;
    background-color: #ff5a5a52;
    border-radius: 10px;
    color: white;
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#counter .points .box:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#counter .points .box::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease;
}

#counter .points .box:hover::before {
    transform: scale(1.2);
}

#counter .points .box img {
    width: 50px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

#counter .points .box:hover img {
    transform: rotate(15deg) scale(1.1);
}

#counter .points span {
    font-size: 38px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

#counter .points p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

#choose-us {
    margin-top: 5%;
}

#choose-us .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 100%;
    padding: 50px;
    column-gap: 20px;
    row-gap: 20px;
}

#choose-us .content .box {
    position: relative;
    width: 30%;
    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f0f0, #dcdcdc);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

#choose-us .content .box::before,
#choose-us .content .box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s;
}

#choose-us .content .box::before {
    top: -5px;
    left: -5px;
    background: rgba(19, 58, 132, 0.1);
}

#choose-us .content .box::after {
    bottom: -5px;
    right: -5px;
    background: rgba(19, 58, 132, 0.2);
}

#choose-us .content .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#choose-us .content .box h4 {
    margin-top: 20px;
    font-size: 1.5em;
    color: #133a84;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#choose-us .content .box h4::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: #133a84;
    border-radius: 1px;
    transition: width 0.3s;
}

#choose-us .content .box h4:hover::before {
    width: 60%;
}

#choose-us .content .box p {
    margin-top: 30px;
}

.accordion {
    margin-top: 5%;
}

.accordion-item {
    width: 80%;
    margin: auto;
}

.accordion-button {
    font-weight: 700;
}

.accordion-body {
    background: #f6f4f4;
}

#footer {
    margin-top: 5%;
    padding: 40px 20px;
    background: linear-gradient(135deg, #133A84, #1C73B8);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

#footer .footer {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

#footer .box {
    flex: 1;
    min-width: 250px;
}

#footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

#footer h2:after {
    content: '';
    width: 50px;
    height: 4px;
    background: #19E1D8;
    display: block;
    margin-top: 8px;
}

#footer .box p {
    margin: 10px 0;
    color: #ccc;
}

#footer .box a {
    color: #19E1D8;
    text-decoration: none;
}

#footer .social-link {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

#footer .social-link i {
    margin-right: 8px;
}

#footer .social-link:hover {
    color: #19E1D8;
}

#footer .box a:hover {
    text-decoration: underline;
}

#footer .footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
}

#footer .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #19E1D8;
    color: #ccc;
}

#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);
}