/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/head1.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header1 {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/head4.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header2 {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/head3.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header3 {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../NEWIMAGES/head2.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.emoji {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

/* Button Styling */
.btn1 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}

.btn1:hover {
    background: linear-gradient(45deg, #0056b3, #003b7a);
    transform: scale(1.1);
}









/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/* NEW Changes Made BY BS */

.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}



/* video container starts */
/* Fullscreen Video Styling */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Content */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Typewriter Effect */
.hero-text {
    font-size: 2.5rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    color: white;
    border-right: 3px solid white;
    /* Cursor effect */
    width: 0;
    animation: typing 3s steps(30, end) forwards, blinkCursor 0.6s infinite;
}

/* Subtext Animation */
.hero-subtext {
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 3s;
}

/* Animated Button */
.btn-animated {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #2c4aee, #279ff0);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(255, 61, 0, 0.3);

    /* Initial hidden position */
    opacity: 0;
    transform: translateX(100px) scale(0.5);
    animation: slideInZoom 1s ease-out forwards 1.2s, floating 3s ease-in-out infinite 2.5s;
}

.btn-animated:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 15px rgba(255, 61, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInZoom {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.5);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-10px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Floating Effect After Appearing */
@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Keyframes */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 1.8rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 1.5rem;
        font-weight: bold;
        white-space: break-spaces;
        overflow: hidden;
        color: white;
        border-right: 3px solid white;

        width: 0;
        animation: typing 3s steps(30, end) forwards, blinkCursor 0.6s infinite;
    }

    .video-container {
        position: relative;
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }
}


/* video container ends */

.img-fluid1 {
    height: 150px;
}


/* retuns starts */
.container-fluid2 {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: -webkit-center;
    width: 100%;
}

.container3 {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 800px;
}

.container3 h1,
h2,
h3 {
    color: #333;
    text-align: justify;
}

.container3 p {
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

.container3 ul {
    padding-left: 20px;
    text-align: justify;
}

/* Contact section */
.contact {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 5px solid #007bff;
}

/* Responsive Design for screens 768px and below */
@media (max-width: 768px) {
    .container-fluid2 {
        padding: 10px;
    }

    .container3 {
        width: 100%;
        padding: 15px;
    }

    .container3 h1,
    h2,
    h3 {
        font-size: 20px;
        text-align: center;
    }

    .container3 p,
    .container3 ul {
        text-align: center;
    }

    .contact {
        padding: 10px;
        font-size: 14px;
    }
}

/* returns ends */


/* mission starts */
.container-fluid2 {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    margin: 0;
}

.container5 {
    display: flex;
    gap: 20px;
}

/* Flip Card Container */
.flip-card {
    width: 400px;
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

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

/* Front & Back Side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Front Side Styling */
.flip-card-front {
    background: white;
}

.flip-card-front img {
    width: 388px;
    height: 375px;
    margin-bottom: -9px;
    padding: 20px;
}

.flip-card-front h3 {
    font-size: 20px;
    color: #007bff;
}

/* Back Side Styling */
.flip-card-back {
    background: #007bff;
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}

@media(max-width:400px) {
    .container5 {
        display: block;
        gap: 20px;
        padding: 20px;
    }

    .container-fluid2 {
        padding: 20px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 50px;
    }
}



/* mission ends */

/* service starts */
.container8 {
    max-width: 1200px;
    margin: auto;
}

/* Section Styling */
.section2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.content2 {
    width: 50%;
}

.content2 h2 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.content2 p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    text-align: justify;
}

/* Image Styling */
.image2 {
    width: 47%;
    text-align: center;
}

.image2 img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Alternate Sections */
.section2:nth-child(even) {
    flex-direction: row-reverse;
}


.image2 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 15px;
    /* Adds spacing for the square corners */
}

.image2 img {
    width: 100%;
    height: 394px;
    display: block;
    border-radius: 10px;
}

/* Common style for all four corner squares */
.corner-square {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #007bff;
    /* Blue color - change as needed */
}

/* Positioning the squares */
.top-left {
    top: 0;
    left: 0;
    border-radius: 5px 0 0 0;
}

.top-right {
    top: 0;
    right: 0;
    border-radius: 0 5px 0 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 5px;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-radius: 0 0 5px 0;
}

.content2 {
    position: relative;
    display: inline-block;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 600px;

    text-align: left;
}

.content2 h2 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.content2 p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Square corner design */


/* Positioning the squares */
.content-top-left {
    top: 0;
    left: 0;
    border-radius: 5px 0 0 0;
}

.content-top-right {
    top: 0;
    right: 0;
    border-radius: 0 5px 0 0;
}

.content-bottom-left {
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 5px;
}

.content-bottom-right {
    bottom: 0;
    right: 0;
    border-radius: 0 0 5px 0;
}

/* Hover effect */
.content2:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .section2 {
        display: block;
        padding: 20px;
    }

    .content2,
    .image2 {
        width: 100%;
    }

    .content2 {
        margin-bottom: 20px;
        text-align: justify;
    }
}

/* service ends */


/* projects starts */


.gallery {
    position: relative;
    z-index: 2;
    padding: 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    transform: translateZ(0);
}

.gallery.pop {
    filter: blur(10px);
}

.gallery figure {
    flex-basis: 33.333%;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery figure img {
    width: 100%;
    transition: all 0.3s ease-in-out;
    height: 300px;
}

.gallery figure figcaption {
    display: none;
}

.popup {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0.2s;
}

.popup.pop {
    opacity: 1;
    transition: opacity 0.2s ease-in-out 0s;
}

.popup.pop figure {
    margin-top: 0;
    opacity: 1;
}

.popup figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    margin-top: 30px;
    opacity: 0;
    animation: poppy 500ms linear both;
}

.popup figure img {
    position: relative;
    z-index: 2;
}

.popup figure figcaption {
    position: absolute;
    bottom: 50px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78));
    z-index: 2;
    width: 100%;
    padding: 100px 20px 20px 20px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
}

.popup figure figcaption small {
    font-size: 11px;
    display: block;
    text-transform: uppercase;
    margin-top: 12px;
    text-indent: 3px;
    opacity: 0.7;
    letter-spacing: 1px;
    color: white;
    text-align: justify;
}

.popup figure .shadow {
    position: relative;
    z-index: 1;
    top: -56px;
    margin: 0 auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 98%;
    height: 50px;
    opacity: 0.9;
    filter: blur(16px) contrast(1.5);
    transform: scale(0.95, -0.7);
    transform-origin: center bottom;
}

.popup .close {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.popup .close svg {
    width: 100%;
    height: 100%;
}

/* Keyframe Animation */
@keyframes poppy {
    0% {
        transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    3.4% {
        transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, -94.672, -91.573, 0, 1);
    }

    4.3% {
        transform: matrix3d(0.408, 0, 0, 0, 0, 0.54, 0, 0, 0, 0, 1, 0, -122.527, -121.509, 0, 1);
    }

    4.7% {
        transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, -134.908, -134.843, 0, 1);
    }

    6.81% {
        transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, -197.77, -200.879, 0, 1);
    }

    8.61% {
        transform: matrix3d(0.82, 0, 0, 0, 0, 1.097, 0, 0, 0, 0, 1, 0, -245.972, -246.757, 0, 1);
    }

    10.21% {
        transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, -282.462, -275.93, 0, 1);
    }

    14.11% {
        transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, -342.273, -299.395, 0, 1);
    }

    17.52% {
        transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, -362.348, -278.88, 0, 1);
    }

    21.32% {
        transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, -358.864, -240.617, 0, 1);
    }

    29.93% {
        transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, -314.277, -202.202, 0, 1);
    }

    44.44% {
        transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, -289.763, -232.215, 0, 1);
    }

    75.28% {
        transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -300.341, -225.696, 0, 1);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, -225, 0, 1);
    }
}

@media(max-width:768px) {
    .gallery {
        display: block;
    }



}

@media (max-width: 768px) {
    .gallery {
        display: block;

        align-items: center;
        padding: 5px;
    }

    .gallery figure {
        flex-basis: 100%;
        /* Full width for smaller screens */
        padding: 5px;
    }

    .gallery figure img {
        width: 100%;
        transition: all 0.3s ease-in-out;
        height: 200px;
    }



    .popup figure {
        width: 90%;
        max-width: 400px;
        /* Restrict popup width for better visibility */
    }

    .popup figure figcaption {
        font-size: 24px;
        padding: 60px 15px 15px;
        position: relative;
        left: 139px;
        bottom: 330px;
        color: white;
    }

    .popup .close {
        top: 5px;
        left: 89%;
        width: 20px;
        height: 20px;
    }

    .image2 img {
        width: 100%;
        height: 247px;
        display: block;
        border-radius: 10px;
    }
}


.formbg {
    padding: 20px;
    background: linear-gradient(45deg, #0a476e, #00000036);
    box-shadow: 0px 0px 10px #00000038;
    border-radius: 20px;
}
.formbg .btn.btn-primary{
    background-color: black;
    color: white;
}
.section2 p.pricepara{
    font-size: 20px;
    font-weight: 800;
}