/********** Template CSS **********/
:root {
    --primary: red;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

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

.fw-medium {
    font-weight: 500;
}


/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.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 ***/
.sticky-top .btn {

    background-color: #1C2035;
}

.top-navbar {
    background-color: #1C2035 !important;
}

.top-navbar .btn {
    color: #1C2035 !important;
}

.sticky-top .fab {
    color: white !important;
}

.top-navbar .btn:hover {
    color: red !important;
}

.top-navbar .ms-4 {
    text-align: center;
}

.logo {
    height: 40px;
    width: 120px;
    margin-right: 20px;
}

.fab {
    color: black;

}

.fab:hover {
    color: red;
    transform: scale(1.2);
}

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

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: bold;
    outline: none;

}

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

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

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

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel {
    height: 100vh;
    /* Set a fixed height for the carousel */
    min-height: 600px;
    /* Minimum height for smaller screens */
}

#header-carousel .carousel-inner {
    height: 100%;
}

#header-carousel .carousel-item {
    height: 100%;
    position: relative;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the area while maintaining aspect ratio */
    object-position: center;
    /* Centers the image */
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
    height: auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.0rem;
    height: 3.0rem;
    border-radius: 3.0rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel {
        height: 70vh;
        /* Slightly smaller height on mobile */
        min-height: 400px;
    }

    #header-carousel .carousel-item {
        height: 100%;
    }

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

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 2.5rem;
        background-color: var(--primary);
        border: 15px solid var(--primary);
    }
}

/* Additional styles for page header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

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

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about-bg {
    background-image: url(../img/texture.webp);
    background-repeat: no-repeat;
}

section .Service {
    background-image: url(../img/texture.webp);
    background-repeat: no-repeat;
    margin-bottom: 60px;
}

.main-sec {
    background-image: url(../img/texture.webp);
    background-repeat: no-repeat;
}

.about {
    background-color: transparent !important;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 1440px;
    width:100%;
    height: auto;
    width: auto;
    margin: 60px auto 0 auto;
}
.modal-dialog {
    position: relative;
    max-width: 900px;
    width:100%;
    height: auto;
    width: auto;
    margin: 60px auto 0 auto;
}

.modal-body img {
    width:100%;
    max-width: 150%;   /* Prevents overflow on smaller screens */
    max-height: 150%; /* Fits within viewport height */
    height: auto;     /* Maintains aspect ratio */
    object-fit: fill; /* Prevents stretching or cropping */
}
.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.message .paragraph p {
    color: #6B7280;
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    /* Or center, left, etc. */
    margin-bottom: 10px;
    padding: 10px 50px;
}



/*** Project ***/

.overlay-container {
    position: relative;
    overflow: hidden;
}

.hover-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.overlay-container:hover .hover-text-overlay {
    opacity: 1;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

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

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.our-ser-new-sec {
    padding: 150px 0;
}

.sec-pb {
    padding-bottom: 100px;
}

.sec-heading-new {
    color: #4A6CF7;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.serbox-new {
    padding: 30px 20px;
    margin: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.serbox-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.serbox-new img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.serbox-new h4 {
    color: #2E3A59;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px 0;
    line-height: 1.3;
}

.serbox-new a {
    text-decoration: none;
    color: inherit;
}

.serbox-new a:hover {
    color: #4A6CF7;
}

.serbox-new p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Custom Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #4A6CF7;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover {
    background: #2E3A59;
    transform: scale(1.1);
}

.owl-nav .owl-prev {
    left: -25px;
}

.owl-nav .owl-next {
    right: -25px;
}

.owl-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dots */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active,
.owl-dots .owl-dot:hover {
    background: #4A6CF7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .owl-nav .owl-prev {
        left: -15px;
    }

    .owl-nav .owl-next {
        right: -15px;
    }

    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.carousel-container {
    position: relative;
    padding: 0 50px;
}

/*** Testimonial ***/
.testimonial {
    background: #07036e;
    background: linear-gradient(90deg, rgba(7, 3, 110, 1) 0%, rgba(11, 11, 179, 1) 34%, rgba(6, 173, 207, 1) 100%);
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 100px;
}

.testimonial-item {
    transition: .5s !important;
    background-color: white !important;
    border-radius: 50px !important;
    margin-bottom: 20px !important;
    padding: 100px 30px 100px 30px !important;
    transition: all .3s ease-in-out;
    position: relative;
}

.testimonial-item::before {
    content: "";
    width: 80px;
    height: 80px;
    background: 0 0;
    border: 0 solid #72c2db;
    border-width: 0 0 10px 10px;
    border-radius: 0 0 0 50px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.testimonial-item:hover {
    background: linear-gradient(#e6faff 0, #dce3e5 100%);
    transform: scale(.9);
}

.testi {
    padding-top: 50px;
    padding-bottom: 50px;
}

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



.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

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

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/*** Partners ***/
.brand-item img {
    height: auto;
}

.partners {
    background-color: white;
    padding-top: 40px;
}

.brand-carousel {
    background-color: white;
    border-radius: 30px;
}


/*** Footer ***/
.Office a {
    margin-top: 50px;

}

.Office .mb-2 {
    color: #B0B9AE;
}
.Office .mb-2 a{
    color: #B0B9AE;
}

.Office .mb-2:hover {
    color: blue;
}

.footer {
    color: #B0B9AE;
    padding-bottom: 20px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    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;
    margin-right: 10px;
}

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

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

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









/*** Page Service ***/


.Service img {
    width: 100%;
}

.Service .Why {
    background-color: transparent !important;
}



/*** Page About ***/

.About-2 img {
    margin-top: 30px;
    width: 100%;
}






/*** Page Contact ***/
.new-editing-bg {
    background-image: url(../img/contact-texture.webp);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    padding: 140px 0 0 !important;
}

.contact-us {
    padding: 50px 0;
}

.contact-us .contact-us-heading {
    text-align: center;
}

.contact-us .contact-us-heading p:first-child {
    color: #292929;
    font-size: 24px;
    font-weight: 600;
    position: relative;
}

.contact-us .contact-us-heading p:first-child:before {
    content: "";
    height: 1px;
    width: 13%;
    background-color: #000;
    position: absolute;
    bottom: 45%;
    left: 18%;
}

.contact-us .contact-us-heading p:first-child:after {
    content: "";
    height: 1px;
    width: 13%;
    background-color: #000;
    position: absolute;
    bottom: 45%;
    right: 18%;
}

.contact-us .contact-us-heading h5 {
    text-transform: capitalize;
    color: #a80f34;
    font-size: 60px;
    font-weight: 700;
}

.contact-us .contact-us-heading p:last-child {
    color: #bfbfbf;
    font-size: 18px;
    font-weight: 400;
}

.contact-us .ways-to-connect {
    justify-content: center;
    display: flex;
}

.contact-us .ways-to-connect {
    margin: 0 0 50px;
}

.contact-us .ways-to-connect .ways-to-connect-connect {
    align-items: center;
    display: flex;
}

.contact-us .ways-to-connect .ways-to-connect-connect {
    padding: 10px 25px;
}

.contact-us .ways-to-connect .ways-to-connect-connect i {
    color: rgb(255, 163, 45);
    font-size: 24px;
}

.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para {
    margin: 0 0 0 14px;
    display: inline-block;
}

.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para a,
.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para p {
    color: #272137;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

ul,
li,
p {
    /* font-family: "Brinnan_Regular"; */
    font-family: "Poppins", sans-serif;
}

.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para a,
.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para p {
    color: #272137;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

a {
    text-decoration: none;
}

.contact-us .row input {
    width: 100%;
    height: 50px;
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    margin: 0 0 40px;
    padding: 0 20px;
    font-size: 15.99px;
    font-weight: 300;
}

.contact-us .row input:nth-child(2) {
    margin: 0 0 0 35px;
}

.contact-us .row input {
    width: 100%;
    height: 50px;
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    margin: 0 0 40px;
    padding: 0 20px;
    font-size: 15.99px;
    font-weight: 300;
}

.contact-us .row .ways-to-connect-top-form-heading {
    margin: 0 0 25px;
}

.contact-us .row .ways-to-connect-top-form-heading h5 {
    text-transform: capitalize;
    color: #292929;
    font-size: 60px;
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Brinnan_Bold"; */
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.contact-us .row .ways-to-connect-top-form-heading p {
    color: #bfbfbf;
    font-size: 16px;
    font-weight: 400;
}



/*** Page NovaCity ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}





.sec {
    background-color: white;
}

.nav-pills .nav-link {
    background: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overlay-container {
    position: relative;
    overflow: hidden;
}

.overlay-container img {
    width: auto;
    height: 300px;
    max-width: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay-container:hover img {
    transform: scale(1.1);
}

.hover-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.8), rgba(108, 117, 125, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.overlay-container:hover .hover-text-overlay {
    opacity: 1;
}

.hover-text-overlay h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hover-text-overlay span {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sec-pb .btn-primary {
    background: linear-gradient(45deg, #0d6efd, #6c757d);
    border: none;
    transition: all 0.3s ease;
}


.btn-primary:hover {
    background: linear-gradient(45deg, #0b5ed7, #5a6268);
    transform: scale(1.05);
}

.pt-portfolio-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.project-item {
    flex: 0 0 auto;
    width: auto;
    max-width: 400px;
}

@media (max-width: 768px) {
    .pt-portfolio-wrap {
        justify-content: center;
    }

    .project-item {
        max-width: 300px;
    }

    .overlay-container img {
        max-width: 300px;
    }

    .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-pills .nav-link {
        margin: 5px;
        font-size: 0.9rem;
    }
}

.wow {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease;
}

/* Prevent dropdown from closing on hover */
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.about-img {
    width: 100%;
}


container-fluid {
    padding: 80px 0;
}



.email-form {
    background-color: #4861FB;
    border-radius: 15px;
    padding: 3rem 5rem;
}

.email-form h2 {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.email-form .btn {
    background-color: #1C2035;
    color: white;
}




.about-footer .fab {
    background-color: white !important;
}

.about-footer .btn {
    background-color: white !important;
}




.Details img {
    width: 100%;
}

.Details .pic {
    width: 60%;
    height: auto;
}





.sideblogbar {
    border-radius: 20px;
    background-color: #1C2035;
    padding: 20px 20px 20px 20px;
    background-color: white;
}

.sideblogbar a {
    color: black;
}

.sideblogbar a:hover {
    color: blue;
}

.sideblogbar li {
    margin: 10px 0px;
}

.sideblogbar h5 {
    color: black;
    margin-left: 30px;
}

.blogpost h2 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.blogpost h4 {
    margin-bottom: 10px;
    margin-top: 40px;
}

.blogpost {
    padding-right: 50px;
    background-color: white;
    border-radius: 30px;
    padding-left: 20px;
}

.blog-post {
    background: #07036e;
    background: linear-gradient(90deg, rgba(7, 3, 110, 1) 0%, rgba(11, 11, 179, 1) 34%, rgba(6, 173, 207, 1) 100%);
    padding-bottom: 50px;
}

.Details {
    padding: 150px 00px 150px 00px
}


.blogpage {
    background-image: url(../img/texture.webp);
    background-repeat: no-repeat;
}

.Quote {
    background-image: url(../img/texture.webp);
    background-repeat: no-repeat;
}