@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap");

body {
font-family: 'Gabriela', serif;

h1, h2, h3, h4, h5, h6{
    font-family: 'Gabriela', serif;
}

p {
    font-family: 'Lato', sans-serif;
}
p {
    font-size: medium;
}

.background-image {
    background-position: center center;
    background-repeat: no-repeat;
    object-fit: cover;
}

.owl-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 15px;
    position: relative;
    top: -80px;
}
.owl-dots div.owl-dot {
    width: 15px;
    height: 15px;
    color: transparent;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin-left: 10px;
}
.owl-dots div.owl-dot.active {
    background-color: red;
}
.owl-dots div.owl-dot:focus {
    outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav button:focus {
    outline: none;
}

.dropdown-menu_one {
    display: none;
    background-color: #fff;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    text-align: left;
    min-width: 300px;
    padding: 20px;
    margin-top: -30px;
    border-top: 2px solid red;
}
.dropdown-menu_one a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}
.dropdown-menu_one a:hover {
    background-color: #f0f0f0;
}
.dropdown-menu_one.horizontal {
    flex-direction: row;
    justify-content: center;
}
.sub-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    font-weight: bold;
}

.text-dark {
    color: black !important;
}

.justified-text {
    text-align: justify;
}
.services-icons-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
}

.bx {
    font-size: 20px;
}

.sidebar-sticky {
    /* display: ; */
    float: right;
    padding: 20px 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: fixed;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

.sidebar-content {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-content li {
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.sidebar-content li:last-child {
    border-bottom: none;
}

.sidebar-content li a {
    text-decoration: none;
    color: #333;
}

.sidebar-content li a:hover {
    color: #100a14;
}

.sidebar-content li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icon-link {
    position: relative;
    /* display: inline-block; */
}

.icon-link .fa {
    color: #100a14;
}
.icon-text {
    position: absolute;
    top: 10%;
    left: 0;
    padding: 5px 10px;
    background-color: #100a14;
    color: white;
    border-radius: 5px;
    transition: left 0.5s ease-in-out;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}

.icon-link:hover .icon-text {
    left: -120px;
    opacity: 1;
}

.icon-text:hover {
    opacity: 0;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/* IT INFO */
#it-info .fa {
    color: red;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

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

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

.fact-item p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#fact-item p:hover {
    white-space: wrap;
}

/*** Section Title Start ***/
.section-title {
    max-width: 100%;
    text-align: justify;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
    width: 100%;
}

.responsive-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block; /* Ensures no extra space around the image */
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    border: 1px solid var(--bs-primary) !important;
}

@media only screen and (min-width: 640px) {
    .sub-title {
        width: auto;
    }
    .sub-title::after {
        margin-right: -50px;
    }
    .sub-title::before {
        margin-right: -100px;
    }
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Open Sans", sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 10px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

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

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 65px;
}

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

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

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: 0.5s;
    opacity: 1;
}

header-carousel .item {
  height: 70vh;               /* adjust height as desired */
  background-size: cover;
  background-position: center;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/about-3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, 0.3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;
}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, 0.5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, 0.5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    transition: 0.5s;
}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    justify-content: center;
    border-radius: 5px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/

/*** Appointment Start ***/
.appointment {
    background: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)
        ),
        url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

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

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

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

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

#videoModal .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;
}
/*** Youtube Video End ***/
/*** Appointment End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, 0.3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/

/*** testimonial Start ***/
figure > blockquote > .quote-text {
    position: relative;
    padding-top: 32px;
}

figure > blockquote > .quote-text::before {
    content: "❝";
    position: absolute;
    z-index: 2;
    top: 17px;
    left: -18px;
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
}

.testimonial {
    background: linear-gradient(
            rgba(21, 185, 217, 0.9),
            rgba(21, 185, 217, 0.9)
        ),
        url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
}

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

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial
        .testimonial-carousel
        .testimonial-item
        .testimonial-inner
        p.fs-7 {
        font-size: 20px;
    }
}

/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, 0.5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(
            rgba(218, 12, 12, 0.9),
            rgba(220, 12, 64, 0.9)
        ),
        url(../img/);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}

/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
background-color: #000000;    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 20px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

.input-form {
    border-radius: 10px;
    border: 2px solid black;
    padding: 10px;
    width: 70%;
}

.form-btn {
    border: none;
    width: 80px;
    border-radius: 10px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

.icons-header i {
    color: red; /* Default icon color */
}

.icons-header:hover i {
    color: white; /* Icon color on hover */
}

.img-logo {
    width: 100px;
    height: auto;
    animation: scroll 60s linear infinite;
}

.slide-track {
    width: 100%;
    display: flex;
    gap: 2em;
    overflow: hidden;
}

.slider-logo {
    padding: 3em 2em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translatex(-1000%);
    }
}

.address {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

/* Topbar Styles */
.topbar {
    background-color: #dc3545; /* Bootstrap Danger Red */
}
.announcement-label {
    white-space: nowrap;
    font-weight: bold;
    color: #fff;
    padding: 0.5rem 0;
}

/* Marquee Wrapper & Content */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}
.marquee-content {
    white-space: nowrap;
    transition: opacity 0.5s ease;
    color: #fff;
    font-size: 1rem;
}

/* Controls Styling */
.marquee-controls button {
    border: none;
    background: none;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 5px;
    cursor: pointer;
}
.marquee-controls button:focus {
    outline: none;
}

/* Modified to match navigation menu style */
.feature-item {
    position: relative;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon img {
    filter: brightness(0.8);
}

.feature-icon img {
    width: 70px;
    height: auto;
    transition: all 0.3s ease;
}

.feature-item p {
    color: #2d3748;
    font-weight: 600;
    margin: 15px 0;
    position: relative;
}

/* Submenu styling matching navigation */
.feature-submenu.active {
    visibility: visible;
    /* Expand submenu on hover */
    max-height: 100%; /* Set high enough to accommodate content */
    opacity: 1; /* Fade in */
    margin-top: 15px; /* Add space below lines */
    /* transition delays match line container appearance */
    transition: max-height 0.5s ease-in-out 0.2s, opacity 0.4s ease-in-out 0.3s,
        margin-top 0.5s ease-in-out 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-top: 15px;
}

/* --- Submenu Styling --- */
.feature-submenu {
    /* Hide submenu initially by setting max-height to 0 */
    max-height: 0;
    overflow: hidden; /* Important to hide content */
    opacity: 0; /* Start fully transparent */
    transition: max-height 0.5s ease-in-out,
        /* Smooth height transition */ opacity 0.4s ease-in-out 0.1s,
        /* Fade in (delay slightly) */ margin-top 0.5s ease-in-out; /* Animate margin */
    margin-top: 0; /* No margin initially */
    border-top: none; /* Remove potential top border when collapsed */
}

.feature-submenu-container {
    background: white;
    padding: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Optional: small connector from container back to vertical line */
.feature-submenu::after {
    content: "";
    position: absolute;
    top: 0px;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background-color: #c00;
}

.feature-submenu:nth-child(1)::after {
    left: 24%;
}

.feature-submenu:nth-child(2)::after {
    left: calc((1 * 33.3%) + (17.5% + 1px));
}

.feature-submenu:nth-child(3)::after {
    /* left: calc((2 * 33.3%) + (10.5% + 1px)); */
    left: 76%;
}

/* Top line in submenu */
.feature-submenu-container::before {
    content: "";
    position: absolute;
    top: 0;
    width: 80%;
    height: 2px;
    background-color: #c00;
    transform: scaleX(0); /* Start scaled down */
    transform-origin: center; /* Scale from the center */
    transition: transform 0.8s 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Easing for extend */
}

.feature-submenu.active .feature-submenu-container::before {
    transform: scaleX(1); /* Extend line on hover */
}

/* Horizontal layout for sub-items */
.feature-submenu-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}

@media only screen and (min-width: 1024px) {
    .feature-submenu-container {
        flex-direction: row;
    }
}


/* Commitment Section Styles */
.commitment-card {
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.commitment-header {
    padding: 1.5rem;
    background: #fff;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
}

.text-content h3 {
    margin: 0;
    font-size: 1.25rem;
}

.text-content p {
    margin: 0.5rem 0 0;
    color: #666;
}

.arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.commitment-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--card-bg);
    border-radius: 0 0 8px 8px;
}

.content-inner {
    padding: 0 1.5rem 1.5rem;
}

.commitment-content.active {
    max-height: 1000px;
}

.commitment-header.active .arrow {
    transform: rotate(180deg);
}

ul {
    list-style: none;
    padding-left: 1.5rem;
}

ul li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bullet-color);
    font-size: 1.2em;
}

/* Vision/Mission Cards */
.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon {
    color: #c31919;
}

.bg-primary-gradient {
    background: linear-gradient(45deg, #1a73e8, #0d47a1);
}

.bg-success-gradient {
    background: linear-gradient(45deg, #00c853, #1b5e20);
}

.shadow-hover {
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vision-mission-card {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .commitment-header {
        padding: 1rem;
    }

    .text-content h3 {
        font-size: 1.1rem;
    }
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 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: 0.5s;
}

.header-carousel .carousel-img {
        width: 100%;
        height: 500px; /* Adjust this to your desired fixed height */
        object-fit: cover;
    }

    .header-carousel {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .header-carousel-item {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
