body {
    padding: 0;
    overflow-x: hidden;

}


*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    width: 90%;

}

section {
    width: 100%;
    max-width: 100%;
}


.collapse ul li {
    margin-right: 8px;
}



.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}









.top-bar {
    background-color: #333;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 8px 0;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-left {
    white-space: nowrap;
    gap: 10px;
}

.top-bar-left a,
.top-bar-right a {
    font-size: 16px;
    text-decoration: none;
    color: white;
}

.top-bar-right #gett {
    margin-left: 10px;
    /* Adds spacing to separate "Get a Quote!" */
}



@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: row;
        align-items: center;
    }

    .top-bar-right {
        display: flex;
        gap: 220px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: row;
        gap: 8px;
    }

    .top-bar-right {
        display: flex;
        gap: 140px;
    }

}


@media (max-width: 480px) {

    .top-bar-left a,
    .top-bar-right a {
        font-size: 12px;
    }

    .top-bar-right {
        display: flex;
        gap: 120px;
    }


}

@media (max-width: 400px) {
    .top-bar-right {
        display: flex;
        gap: 60px;
    }
}




/* Navbar Container Styling */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease-in-out;

}

.navbar-brand img {
    width: 150px;
    height: 40px;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}


/* Hover Effects for Navbar Links */
.navbar-nav .nav-link:hover {
    color: #554bea;
    /* Gold color on hover */
    background-color: #f8f9fa;
    /* Light background on hover */
    border-radius: 5px;
    /* Rounded effect */
}

/* Active Link Styling */
.navbar-nav .nav-link.active {
    color: #554bea;
    font-weight: bold;
}

/* Animated Underline Effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #554bea;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Navbar Toggler Styling */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:hover {
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 10px;
        font-size: 14px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .navbar-nav {
        text-align: center;
    }
}

#service-head {
    padding-top: 80px;
}



.carousel-caption .btn-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    animation: fadeInUp 2s ease forwards;
}





.btn-learn-more:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.1);

    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .carousel-caption .btn-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        /* Allow buttons to wrap if space is limited */
    }

    .carousel-caption .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
        border-radius: 5px;
        max-width: 160px;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .carousel-caption p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .carousel-caption .btn-container {
        gap: 10px;
    }

    .carousel-caption .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        max-width: 140px;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem;
    }

    .carousel-caption i {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .carousel-caption p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .carousel-caption .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        max-width: 120px;
    }

    .navbar-nav .nav-link {
        font-size: 0.8rem;
    }
}






.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.btn-container .btn {
    margin: 10px;
    padding: 10px 20px;
    background-color: #0a8f8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border-color: #ffffff;
    margin-top: 20px;
}

.display-4 {
    font-weight: bolder;
}

.display-5 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    justify-content: center;
    text-align: center;
}


.video-caption p {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #fff;
}

@media (max-width: 768px) {
    .video-caption p {
        font-size: 1.2rem;
        /* Slightly smaller for tablets */
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .video-caption p {
        font-size: 1rem;
        /* Smaller size for mobile devices */
        margin-top: 6px;
    }
}

@media (max-width: 400px) {
    .video-caption p {
        font-size: 0.85rem;
        /* Compact size for very small screens */
        margin-top: 5px;
    }
}


/* ............................................................. */

.text-center p{
    text-align: justify;
    width: 80%;
    margin: 0 auto;
}

.title-section {
    text-align: center;
    text-transform: capitalize;
    color: #726a95;
    margin: 20px 0;
    position: relative;
    font-size: 3vw;
    margin-bottom: 60px;
}

.title-section::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: linear-gradient(to left, transparent 5%, #726a95);
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

.our-team-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.our-team {
    padding: 30px 0 40px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid #00325a;
}

.our-team:hover {
    border-bottom: 5px solid #2f2f2f;
}


.our-team .pic {
    display: inline-block;
    width: 130px;
    height: 130px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.our-team .pic:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #00325a;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 1;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}

.our-team:hover .pic:before {
    height: 100%;
    background: #2f2f2f;
}

.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff00;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s linear 0s;
}

.our-team:hover .pic:after {
    background: #7ab92d;
}

.our-team .pic {
    display: inline-block;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.our-team .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
    position: relative;
    z-index: 2;
}

.our-team:hover .pic img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.our-team .team-content {
    margin-bottom: 30px;
}

#team2,
#team3 {
    height: 76px;
}

.our-team .title {
    font-size: 22px;
    font-weight: 700;
    color: #4e5052;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.our-team .post {
    display: block;
    font-size: 15px;
    color: #4e5052;
    text-transform: capitalize;
}

.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #2f2f2f;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social {
    bottom: 0;
}

.our-team .social li {
    display: inline-block;
}

.our-team .social li a {

    display: block;
    padding: 10px;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
    background-color: #7ab92d;
    color: #fff;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .title-section {
        font-size: 4vw;
    }

    .our-team .pic {
        width: 100px;
        height: 100px;
    }

    .our-team .title {
        font-size: 16px;
    }

    .our-team .post {
        font-size: 13px;
    }
}

@media only screen and (max-width: 576px) {
    .our-team {
        padding: 15px;
    }

    .our-team .pic {
        width: 80px;
        height: 80px;
    }

    .our-team .title {
        font-size: 14px;
    }

    .our-team .post {
        font-size: 12px;
    }

    .our-team .social li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

/* ........................................... */


/* Basic Styling */
.services-section {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
}

.service-item {
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
}

.service-title {
    font-size: 1.25rem;
    color: #0056b3;
    margin-top: 15px;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
}

/* Icon Styling */
.service-icon {
    background-color: #fff;
    border-radius: 50%;
    padding: 30px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-icon img {
    width: 40px;
    height: 40px;
}


.service-icon:hover {
    transform: translateY(10px);
    width: 105px;
    height: 105px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon:hover .service-icon {
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease both;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.3s;
}

.service-item:nth-child(3) {
    animation-delay: 0.5s;
}

/* Section Styling */
/* Base Styling for Section */
.company-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a40, #4b0082);
    color: #ffffff;
}

.heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    color: #ffc107;
    animation: typing 3s steps(30, end), blink-caret 0.5s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #eeeeee;
}

.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-size: 1.2rem;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.illustration {
    max-width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.image-container:hover .illustration {
    transform: scale(1);
}

.image-container img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .heading {
        font-size: 2.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }

    .description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .illustration {
        transform: scale(1);
    }

    .company-intro {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 1.6rem;
    }

    .description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .features-list li {
        font-size: 0.85rem;
    }

    .illustration {
        transform: scale(0.95);
    }
}

@media (max-width: 400px) {
    .heading {
        font-size: 1.5rem;
    }
}


.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/parallaxbg1.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(30%);
    z-index: -1;
}


.stats-feedback-section {
    padding: 60px 0;
    color: #ffffff;
}

.content-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.counter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.counter-card {
    flex: 1 1 45%;
    min-width: 150px;
    max-width: 250px;
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    position: relative;
}

.counter-card i {
    font-size: 2.5em;
    color: hsl(0, 0%, 100%);
    margin-bottom: 10px;
}

.counter-card:hover {
    transform: scale(1.3);
}

.counter-card h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    color: white;
}

.counter-card p {
    font-size: 1em;
    margin-top: 10px;
}

.counter {
    animation: count 2s ease-out forwards;
    opacity: 0;
}

@keyframes count {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .counter-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .counter-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .counter-card {
        flex: 1 1 45%;
    }

    .counter-card i {
        font-size: 1.8em;
    }

    .counter-card h2 {
        font-size: 2em;
    }

    .counter-card p {
        font-size: 1em;
    }
}


.feedback-container-full {
    margin-top: -50px;
    width: 100%;
    background-color: white;
    padding: 30px;
}

.feedback-container {
    display: flex;
    max-width: 1000px;
    width: 90%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 30px;
    margin: 0 auto;
    height: 330px;
    animation: float 3s ease-in-out infinite;
}

.feedback-left {
    flex: 1;
    background-color: #4b0082;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    height: 300px;
}

.feedback-left h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #ffc107;
    font-weight: bold;
}

.feedback-left p {
    font-size: 1em;
    margin-bottom: 20px;
}

.feedback-left .quote-icon {
    font-size: 3em;
    opacity: 0.2;
}

.feedback-right {
    flex: 2;
    padding: 40px;
    position: relative;
    text-align: center;
}

.feedback-right .profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.feedback-right img {
    width: 100%;
    height: auto;
}

.feedback-right h3 {
    font-size: 1.2em;
    color: #2e63f6;
    margin-top: 10px;
}

.feedback-right p {
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
    font-size: 0.9em;
}

.custom-carousel-control .carousel-control-prev-icon,
.custom-carousel-control .carousel-control-next-icon {
    background-color: rgb(0, 0, 0);
}

@media (max-width: 992px) {
    .feedback-container {
        flex-direction: column;
        height: auto;
    }

    .feedback-left,
    .feedback-right {
        padding: 20px;
    }

    .feedback-left {
        height: auto;
    }

    .feedback-left h2 {
        font-size: 1.5em;
    }

    .feedback-left p {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .feedback-left h2 {
        font-size: 1.3em;
    }

    .feedback-right h3 {
        font-size: 1.1em;
    }

    .feedback-right p {
        font-size: 0.8em;
    }

    .feedback-right .profile {
        width: 60px;
        height: 60px;
    }
}



/* ................service................. */


.service {
    transition: transform 0.3s, box-shadow 0.3s;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    width: 90%;
    margin: 0 auto;

}

.service-right {
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    width: 90%;
    margin: 0 auto;
}

.service-right:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.service:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.service-image img {
    animation: pulse 3s infinite ease-in-out;
    transition: transform 0.3s;

}

.service-image img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {

    #service-section {
        margin-left: 0px;
    }

    .service,
    .service-right {
        padding: 2rem;
    }

    .section-heading {
        font-size: 2rem;
        padding: 1rem;
    }

    .section-content h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .btn-service {
        padding: 0.4em 1em;
        font-size: 0.9rem;
        width: 100%;
        margin: 0 auto;
    }

    .section-content a {
        padding: 0.4em 1em;
        font-size: 0.9rem;
        margin-left: 200px;
        background-color: #0056b3;
    }
}

@media (max-width: 576px) {

    .service,
    .service-right {
        padding: 1.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
        padding: 0.5rem;
    }

    .service-image img {
        width: 100%;
        height: auto;
    }

    .heading-container {
        margin-top: 150px;
    }

    .section-content h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .section-content a {
        padding: 0.4em 1em;
        font-size: 0.9rem;
        margin-left: 140px;
        background-color: #0056b3;
    }
}

@media(max-width:500px) {
    .section-content a {
        padding: 0.4em 1em;
        font-size: 0.9rem;
        margin-left: 90px;
        background-color: #0056b3;
    }
}

@media (min-width:300px) {
    .section-content h2 {
        margin-top: 25px;
    }
}

@media (max-width: 400px) {

    .service,
    .service-right {
        padding: 1rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .section-content a {
        padding: 0.4em 1em;
        font-size: 0.9rem;
        margin-left: 65px;
        background-color: #0056b3;
    }

    .top-bar {
        font-size: 12px;
    }

    .service-image img {
        width: 100%;
        height: auto;
    }

    .product-section {
        margin-top: 50px;
    }

    .section-content h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

}


#service-section {
    width: 100%;
    box-sizing: border-box;
    /* Ensures padding is included in width calculations */
    background-color: white;
    margin: 0;
    overflow-x: hidden;
}


.section-content h2 {
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 20px;
}



#service-section ul li::before {
    content: "✓";
    color: #dc3545;
    font-size: 1.2em;
    font-weight: bolder;
    padding-right: 0.5em;
}

#service-section ul {
    list-style-type: none;
    padding: 0.5em 1.5em;
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-service {
    background-color: #0056b3;
    color: #fff;
    padding: 0.5em 1.5em;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.538);
    border: none;
    text-decoration: none;

}



.btn-service:hover {
    background-color: #662d90;
    color: #fff;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    transform: translateY(-3px);
}

.btn-service:focus,
.btn-service:active {
    outline: none;
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.service .service-image,
.service .section-content,
.service-right .service-image,
.service-right .col-md-6 {
    opacity: 0;
    transform: translateX(100px);
}

.section-content {
    width: 580px;
    margin: 0 auto;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.service.animate .service-image {
    animation: slideInLeft 0.6s ease-out forwards;
}

.service.animate .section-content {
    animation: slideInRight 0.6s ease-out forwards;
}

.service-right.animate .service-image {
    animation: slideInRight 0.6s ease-out forwards;
}

.service-right.animate .col-md-6 {
    animation: slideInLeft 0.6s ease-out forwards;
}


.section-heading {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 35px;
    margin-top: 0px;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: #2c1818;
    opacity: 1;
    transform: translateY(0);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    margin: 0 auto;
}


.section-heading:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #ff4500;
    border-radius: 3px;
    transition: width 0.5s ease-out;
    opacity: 1;
    z-index: 1;
}

.section-content p {
    margin-bottom: 30px;
}

.section-heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 0;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
    transition: width 0.5s ease-out 0.3s;
    opacity: 1;
    z-index: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    filter: none;
}
@media(max-width:500px) {
    .carousel-control-prev-icon{
        margin-left: -45px;
    }
    .carousel-control-next-icon{
        margin-right: -45px;
    }
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: transparent !important;
    box-shadow: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-heading.animate {
    animation: fadeInDown 0.8s ease-out forwards;
}

.section-heading.animate:before {
    width: 50px;

}

.section-heading.animate:after {
    width: 10px;

}

.row {
    margin-top: 25px;
}


.hidden {
    display: none;
}



.service-details {
    transition: max-height 0.3s ease;
}


.service-image img {
    width: 750px;
    height: 350px;
    object-fit: cover;
}


/* ...........product section ................ */



.btnk {
    display: inline-block;
    padding: 8px 15px;
    font-size: 16px;
    color: #ffffff;
    background-color: #302dc1;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.btnk:hover {
    background-color: #44439a;
    transform: translateY(-3px);
}

.btnk:active {
    background-color: #504f93;

    transform: translateY(0);

}


.product-section,
.page-content {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    background-color: white;

}

.page-content {
    max-width: 1300px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;

}

.product-section {
    padding-top: 20px;
    margin-top: -48px;
    background: url(img/product-bg3.jpeg) no-repeat center / cover;

}


.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow: hidden;
    padding: 10px;
    width: calc(100% - 20px);
    /* Adjust width and account for gap */
    text-align: center;
    color: whitesmoke;
    gap: 20px;
    margin-bottom: 40px;
    /* Adds space between rows */
}

.card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: .4s ease;
}

.card:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(-50%);
    transition: transform .4s ease;
}

.card-mountain:before {
    background: url('img/product1.jpg') no-repeat center / cover;
}

.card-beach:before {
    background: url('img/product5.jpg') no-repeat center / cover;
}

.card-desert:before {
    background: url('img/product7.jpg') no-repeat center / cover;
}

.card-galaxy:before {
    background: url('img/product3.jpg') no-repeat center / cover;
}

.card-sec:before {
    background: url('img/product6.jpg') no-repeat center / cover;
}

.card-section:before {
    background: url('img/product2.jpg') no-repeat center / cover;
}

.card-sec7:before {
    background: url('img/product7.jpg') no-repeat center / cover;
}

.card-sec8:before {
    background: url('img/product8.png') no-repeat center / cover;
}

.card-sec9:before {
    background: url('img/product9.png') no-repeat center / cover;
}
.card-sec10:before {
    background: url('img/product10.png') no-repeat center / cover;
}
.card-sec11:before {
    background: url('img/product11.png') no-repeat center / cover;
}
.card-sec12:before {
    background: url('img/product12.png') no-repeat center / cover;
}
.card-sec13:before {
    background: url('img/product13.png') no-repeat center / cover;
}
.card-sec14:before {
    background: url('img/product14.png') no-repeat center / cover;
}
.card-sec15:before {
    background: url('img/product15.png') no-repeat center / cover;
}
.card-sec16:before {
    background: url('img/product16.png') no-repeat center / cover;
}
.card-sec17:before {
    background: url('img/product17.png') no-repeat center / cover;
}
.card-sec18:before {
    background: url('img/product18.png') no-repeat center / cover;
}
.card-sec19:before {
    background: url('img/product19.png') no-repeat center / cover;
}





.textContent {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    transition: transform .4s ease;
    z-index: 1;

}

.textContent>*+* {
    margin-top: 1rem;
}

.textContent h2 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 50px;
    color: white;
}

.textContent p {
    font-size: 16px;
    font-style: italic;
}

.textContent button {
    cursor: pointer;
    margin-top: 15px;
    padding: 7px 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    border: none;
}

button:hover {
    background-color: #0d0d0d;
}

button:focus {
    outline: 1px dashed yellow;
    outline-offset: 3px;
}


@media (min-width: 300px) {
    .card {
        height: 350px;
    }

    .card:after {
        transform: translateY(0);
    }

    .textContent {
        transform: translateY(calc(100% - 45px));
    }

    .textContent>*:not(h2) {
        opacity: 0;
        transform: translateY(10px);
        transition: transform .4s ease, opacity .4s ease;
    }

    .card:hover,
    .card:focus-within {
        align-items: center;
    }

    .card:hover:before,
    .card:focus-within:before {
        transform: translateY(-4%);
    }

    .card:hover:after,
    .card:focus-within:after {
        transform: translateY(-50%);
    }

    .card:hover .textContent,
    .card:focus-within .textContent {
        transform: translateY(0);
    }

    .card:hover .textContent>*:not(h2),
    .card:focus-within .textContent>*:not(h2) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(.4s / 8);
    }

    .card:focus-within:before,
    .card:focus-within:after,
    .card:focus-within .textContent,
    .card:focus-within .textContent>*:not(h2) {
        transition-duration: 0s;
    }

    .animated-heading,
    .line {
        margin-top: 25px;
    }
}


@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .product-section {
        margin-right: 10px;
        margin-left: 10px;
    }

    .card {
        height: auto;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .textContent h2 {
        font-size: 1.4rem;
    }

    .textContent p {
        font-size: 0.9rem;
    }

    button {
        padding: 5px 10px;
        font-size: 0.9rem;
    }

    .product-section {
        width: 100%;
    }

    .page-content {
        margin: 0 5px;
    }

    .product-section {
        margin-left: -2px;
        background: url(img/product-bg3.jpeg) no-repeat center / cover;

    }

}




/* .........footer................ */



.new_footer_area {
    background: #fbfbfd;
}


.new_footer_top {
    padding: 120px 0px 270px;
    position: relative;
    overflow-x: hidden;
    width: 90%;
    margin: 0 auto;
}



.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.btn_get:hover {
    color: #fff;
    background: #6754e2;
    border-color: #6754e2;
    -webkit-box-shadow: none;
    box-shadow: none;
}









.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

.list-unstyled li a,
.f_social_icon a {
    text-decoration: none;
}

@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .new_footer_top .row {
        display: flex;
        flex-wrap: wrap;
    }

    .new_footer_top .f_widget {
        margin-bottom: 20px;
        text-align: center;
    }

    .f-title {
        font-size: 16px;
    }

    .f_list li {
        margin-bottom: 8px;
    }

    .f_social_icon {
        text-align: center;
    }

    .f_social_icon a {
        margin: 0 8px;
    }
}

@media (max-width: 576px) {
    .footer_bottom .container {
        text-align: center;
    }

    .footer_bottom .row {
        flex-direction: column;
    }

    .footer_bottom .col-lg-6 {
        margin-bottom: 10px;
    }

    .footer_bottom p {
        font-size: 14px;
        margin-bottom: 0;
    }

}

#contact-section {
    background-color: white;

}

#contact-section-content {
    width: 90%;
}
















/* Contact Information and Form Entrance Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations when animate-contact class is added */
.animate-contact .col-xl-6:first-child {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-contact .col-xl-6:last-child {
    animation: slideInRight 1s ease-out forwards;
}

.animate-contact .form-label,
.animate-contact .form-control,
.animate-contact .form-select,
.animate-contact .btn {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* Delay for each form element for staggered effect */
.animate-contact .form-label:nth-child(1) {
    animation-delay: 0.6s;
}

.animate-contact .form-label:nth-child(2) {
    animation-delay: 0.7s;
}

.animate-contact .form-control:nth-child(1) {
    animation-delay: 0.8s;
}

.animate-contact .form-control:nth-child(2) {
    animation-delay: 0.9s;
}

/* Continue with delays for other form elements as needed */



.heading-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}


.line {
    width: 60px;
    /* Set a fixed width for shorter lines */
    height: 2px;
    background-color: #000000;
    opacity: 0;
    transform: scaleX(0);
    animation: lineExpand 1s forwards;
    margin-top: 50px;
}


.animated-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease forwards;
    margin-top: 50px;
}

/* Highlighted Text Styling */
.highlighted-text {
    color: #d82121;
    display: inline-block;
    position: relative;
}

.highlighted-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background-color: #d82121;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.highlighted-text:hover::after {
    transform: scaleX(1);
}

/* Glow Effect */
.animated-heading {
    color: #333;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.animated-heading:hover {
    color: #d82121;
}

/* Slide-in Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Line Expand Animation */
@keyframes lineExpand {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .animated-heading {
        font-size: 1.8rem;
    }

    .line {
        width: 30px;
    }
}

.footer_bottom .col {
    text-align: center;
    /* Centers the text horizontally */
}

.footer_bottom {
    padding: 10px 0;
    /* Adjust vertical spacing for small devices */
}

.footer-content {
    font-size: 14px;
    /* Adjust font size for better readability on small screens */
    text-align: center;
    /* Ensures text is centered */
    word-wrap: break-word;
    /* Handles long texts gracefully */
}


.footer-content {
    font-size: 14px;
    display: flex;
    justify-content: center;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        font-size: 13px;
        /* Adjust font size for smaller screens */
        padding: 0 10px;
        /* Optional: add padding for spacing on small screens */
    }
}

@media (max-width: 576px) {
    .footer-content {
        font-size: 12px;
        /* Further reduce font size for very small screens */
    }

    .footer_bottom {
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 0;
    }
}

p {
    text-align: justify;
}

.counter-card p {
    text-align: center;
}






form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-head {
    color: #333;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.form-label {
    font-weight: bold;
    color: #555;
    transition: color 0.3s;
}

.form-label:hover {
    color: #333;
}

.form-control {
    transition: border-color 0.3s, box-shadow 0.3s;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 10px rgba(108, 117, 125, 0.3);
    outline: none;
}

textarea.form-control {
    resize: none;
}

.btn {
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #333;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



/* ..........loader......... */



.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-figure {
    margin: 0;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.4, 1.4);
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 150px;
    box-sizing: border-box;
    animation: loader-rotation 20s infinite linear;
}

.loader-div:after {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    box-sizing: border-box;
    position: absolute;
    left: 20px;
    top: 20px;
    animation: loader-shuffle 2s infinite;
}

.loader-div:nth-child(1) {
    transform: rotate(0deg);
}

.loader-div:nth-child(1):after {
    animation-delay: -0.5s;
}

.loader-div:nth-child(2) {
    transform: rotate(45deg);
}

.loader-div:nth-child(2):after {
    animation-delay: -1s;
}

.loader-div:nth-child(3) {
    transform: rotate(90deg);
}

.loader-div:nth-child(3):after {
    animation-delay: -1.5s;
}

.loader-div:nth-child(4) {
    transform: rotate(135deg);
}

.loader-div:nth-child(4):after {
    animation-delay: -2s;
}

.loader-div:nth-child(5) {
    transform: rotate(180deg);
}

.loader-div:nth-child(5):after {
    animation-delay: -2.5s;
}

.loader-div:nth-child(6) {
    transform: rotate(225deg);
}

.loader-div:nth-child(6):after {
    animation-delay: -3s;
}

.loader-div:nth-child(7) {
    transform: rotate(270deg);
}

.loader-div:nth-child(7):after {
    animation-delay: -3.5s;
}

.loader-div:nth-child(8) {
    transform: rotate(315deg);
}

.loader-div:nth-child(8):after {
    animation-delay: -4s;
}

@keyframes loader-rotation {
    100% {
        transform: translate(-50%, -50%) rotate(-360deg) scale(1.4, 1.4);
    }
}

@keyframes loader-shuffle {
    50% {
        transform: scale(0.4, 0.4) rotate(-90deg);
        border-radius: 50%;
    }
}

/* Hide loader after fade-out */
.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}















.section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
}

.return-icon {
    position: fixed;
    bottom: 40px;
    right: 25px;
    width: 50px;
    /* Adjust the size of the icon */
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, bottom 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.return-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.return-icon.show {
    opacity: 1;
    visibility: visible;
}

.return-icon:active {
    transform: scale(1.2);
}

@keyframes moveUp {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 100vh;
    }
}


/* our clients */

.clients-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
}

.clients-carousel {
    margin-top: 60px;
    overflow: hidden;
    width: 80%;
    position: relative;
    margin: 0 auto;
}

.logos {
    display: flex;
    gap: 40px;
    animation: scroll 15s linear infinite;
}

.logos img {
    height: 100px;
    object-fit: contain;
    max-width: 150px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logos img {
        height: 60px;
        max-width: 80px;
    }
}