/********** Template CSS **********/
p {
    color: black;
}
.logo-img {
            height: 55px;
            width: auto;
            transition: 0.3s;
        }

/* =========================
   BACK TO TOP BUTTON
========================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* show animation */
.back-to-top.show {
    display: block;
    animation: popIn 0.4s ease;
}

/* =========================
   POP IN ANIMATION
========================= */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   OUTER CIRCLE
========================= */
.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    overflow: hidden;
    position: relative;
    background: #fff;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    /* glow pulse */
    animation: pulseGlow 2.5s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* glow animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(0, 198, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 198, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 rgba(0, 198, 255, 0.2);
    }
}

/* hover effect */
.back-to-top:hover .circle {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.4);
}

/* =========================
   WATER CONTAINER
========================= */
.water {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    overflow: hidden;

    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 50%, #0072ff 100%);

    transition: height 0.2s ease;

    filter: brightness(1.1);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.3);
}

/* =========================
   WAVES
========================= */
.wave {
    position: absolute;
    top: -20px;
    left: 0;
    width: 200%;
    height: 40px;

    background: rgba(255,255,255,0.25);
    border-radius: 50%;

    animation: waveMove 3s linear infinite;
}

.wave2 {
    top: -15px;
    opacity: 0.5;
    animation-duration: 5s;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   BUBBLES (optional but cool)
========================= */
.bubble {
    position: absolute;
    bottom: -20px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: floatUp 4s infinite ease-in;
}

.b1 { left: 20%; animation-delay: 0s; }
.b2 { left: 50%; animation-delay: 1s; }
.b3 { left: 70%; animation-delay: 2s; }

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-80px);
        opacity: 0;
    }
}

/* =========================
   ICON
========================= */
.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0d6efd;
    font-size: 18px;
    z-index: 2;
}

/* =========================
   SMOOTH INTERACTION
========================= */
.back-to-top {
    transition: transform 0.3s ease;
}

.back-to-top:active {
    transform: scale(0.95);
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** 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: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #2596be;
}

.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 ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}



@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 1px;
        height: 1px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 1px;
        height: 1px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/car-2.png) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

/* SECTION BACKGROUND */
.about-section {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

/* IMAGE */
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    transition: 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* FLOATING BADGE */
.about-badge {
    position: absolute;
    top: 20px;          
    left: 20px;
    
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

.about-badge span {
    font-size: 22px;
    display: block;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* TITLE */
.section-title {
    font-weight: 700;
    font-size: 32px;
    color: #0d1b2a;
}

/* FEATURE BOX */
.feature-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* TAG CONTAINER */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* TAG STYLE */
.about-tags span {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 30px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-weight: 500;
    transition: 0.3s;
    cursor: default;
    border: 1px solid rgba(13, 110, 253, 0.15);
}

/* HOVER EFFECT */
.about-tags span:hover {
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(13,110,253,0.25);
}

/* MODERN LIST */
.about-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list-modern li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    transition: 0.3s;
}

/* ICON STYLE */
.about-list-modern li i {
    color: #0d6efd;
    font-size: 16px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.about-list-modern li:hover {
    transform: translateX(5px);
    color: #0d6efd;
}

.about-list-modern li:hover i {
    transform: scale(1.2);
}

/* BUTTON */
.btn-gradient {
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
    font-weight: 600;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}
.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Newsletter ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/ser-1.png) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}
.top{
    color: black !important;
}
.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.btn-link{
    text-decoration: none !important;
}
.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

/* counter */
/* Simple responsive layout */
.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
}

.counter-card {
    /* background: #f7f7f7; */
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.counter-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.counter-label {
    font-size: 0.95rem;
    color: #666;
}

.counter-card {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-icon {
    font-size: 35px;
    color: #007bff;
    margin-bottom: 10px;
    display: block;
}

.counter-number {
    font-size: 35px;
    font-weight: 700;
    color: #222;
    display: block;
}

.counter-label {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

@media (min-width: 640px) {
    .counter-number {
        font-size: 2.6rem;
    }

    .counter-label {
        font-size: 1rem;
    }
}

/* Vertical Social Icons */
.social-icons {
    position: fixed;
    top: 40%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;

    animation: moveSide 6s ease-in-out infinite alternate;
}

/* Animation */
@keyframes moveSide {
    0% {
        right: 15px;
        left: auto;
    }
    100% {
        right: auto;
        left: 15px;
    }
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a.whatsapp {
    background: #25D366;
}

.social-icons a.facebook {
    background: #1877F2;
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.linkedin {
    background: #0077B5;
}

.social-icons a.phone {
    background: #28a745;
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* calltoaction */
.contact-map-section {
    padding: 60px 20px;
        background: linear-gradient(135deg, #f8fbff, #eef5ff) !important;

}

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Map Styling */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Form Box */
.contact-form-box {
    /* background: black(255, 255, 255, 0.08); */
    padding: 30px;
    background-color: black;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: fadeUp 1s ease forwards;
}

.contact-form-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-box p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 15px;
    outline: none;
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.6);
}

.contact-btn:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 1);
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Container */
.contact-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Map Styling */
.contact-map,
.mapouter,
.gmap_canvas {
    width: 100%;
    height: 100%;
    max-width: 700px;
}

.gmap_canvas iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Hide generated link */
.gme-generated-link {
    display: none !important;
}

/* Form Box */
.contact-form-box {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
}

.contact-form-box h2 {
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: none;
    outline: none;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        width: 100%;
    }

    .contact-form-box {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 15px;
    }

    .gmap_canvas iframe {
        height: 300px;
    }
}


/* milestone */
/* SECTION */
.timeline-section {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    position: relative;
}

/* TITLE */
.timeline-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b2a;
}

/* CENTER LINE */
.timeline {
    position: relative;
    margin: auto;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #0d6efd, #00c6ff);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ITEMS */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

/* CONTENT BOX */
.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* YEAR */
.year {
    font-weight: bold;
    color: #0d6efd;
    font-size: 14px;
}

/* ICON */
.timeline-icon {
    position: absolute;
    top: 25px;
    right: -20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(13,110,253,0.3);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-icon {
        left: 0;
    }
}
.timeline-section {
    padding: 80px 20px;
    background-color: #2596be !important;
    color: #fff;
}

.timeline-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #00d4ff);
    transform: translateX(-50%);
    border-radius: 10px;
    animation: glowline 3s infinite alternate;
}

@keyframes glowline {
    0% {
        box-shadow: 0 0 10px #0099ff;
    }

    100% {
        box-shadow: 0 0 25px #00eaff;
    }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 25px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    width: 55px;
    height: 55px;
    background: #0a0a12;
    border: 3px solid #00eaff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: absolute;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-content {
    /* background: rgba(255, 255, 255, 0.06); */
    background-color: #789A3B;
    backdrop-filter: blur(6px);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 3px solid #00eaff;
    transition: 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(0, 238, 255, 0.4);
}

.timeline-content .year {
    font-size: 22px;
    color: black;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.timeline-content h3 {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: black;
}

@media(max-width: 768px) {
    .timeline:before {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 30px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }
}

.text {
    color: white;
}

/* megamenu */
/* Mega Menu Container */
.mega-menu {
    width: 900px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    background: #C1E2EB !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.35s ease;
}

/* Show on hover */
.mega-dropdown:hover .mega-menu,
.mega-dropdown.show .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

/* Title Styling */
.mega-menu h5 {
    font-weight: 700;
    font-size: 18px;
    color: #1e1e1e;
    border-left: 4px solid #2596be;
    padding-left: 10px;
}

/* Dropdown links */
.mega-menu .dropdown-item {
    padding: 8px 0;
    font-size: 15px;
    color: black !important;
    transition: 0.3s ease;
    position: relative;
}

/* Hover Animation */
.mega-menu .dropdown-item:hover {
    color: #2596be !important;
    padding-left: 8px;
    color: black !important;
}

/* Decorative bullet on hover */
.mega-menu .dropdown-item:hover::before {
    content: "•";
    color: #2596be;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Image Styling */
.mega-menu img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}

/* Image Hover Zoom */
.mega-menu img:hover {
    transform: scale(1.03);
}

/* Mobile responsive */
@media (max-width: 992px) {
    .mega-menu {
        width: 100%;
        left: 0;
        transform: translateY(10px) !important;
    }
}

.dropdown-toggle-split {
    padding-left: 0;
}

.mega-dropdown {
    position: relative;
}

.blog-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-meta span {
    font-size: 14px;
    color: #555;
    margin-right: 20px;
}

.sticky-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.sidebar-box h5 {
    border-left: 4px solid #0d6efd;
    padding-left: 10px;
    font-weight: 600;
}

.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.recent-post img {
    width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
.text-dark{
    text-decoration: none !important;
}
/* jobfilter */

        /* Main Layout */
        .job-container {
            display: flex;
            padding: 20px;
            gap: 20px;
        }

        /* Sidebar */
        .sidebar {
            width: 280px;
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .sidebar h3 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .sidebar label {
            font-weight: bold;
            margin-top: 12px;
            display: block;
        }

        .sidebar input,
        .sidebar select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            margin-top: 5px;
        }

        .btn-search {
            width: 100%;
            background: #007bff;
            border: none;
            padding: 12px;
            color: #fff;
            font-size: 16px;
            border-radius: 6px;
            margin-top: 20px;
            cursor: pointer;
        }

        .btn-search:hover {
            background: #0056b3;
        }

        /* Job Results */
        .job-results {
            flex: 1;
        }

        .job-results h2 {
            margin-bottom: 20px;
        }

        .job-card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
        }

        .job-card h3 {
            margin-top: 0;
        }

        .apply-btn {
            margin-top: 10px;
            padding: 10px 15px;
            background: #28a745;
            border: none;
            color: #fff;
            border-radius: 6px;
            cursor: pointer;
        }

        .apply-btn:hover {
            background: #1e7e34;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .job-container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
            }
        }

        .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-box i {
    font-size: 30px;
    color: #ee0979;
    margin-bottom: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6a00;
}

.about-badge {
    position: absolute;
    left: 20px;
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-gradient {
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
}
.timeline-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
}

.timeline-subtitle {
    /* color: white; */
    font-size: 16px;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    color: black !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h5 {
    font-weight: 700;
    margin-top: 10px;
}

.timeline-icon {
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    color: #fff;
    padding: 15px;
    border-radius: 50%;
}
.modern-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    background: #fff;
}

.modern-card:hover {
    transform: translateY(-8px);
}

.service-text h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-gradient {
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    display: inline-block;
    margin: 15px;
}

.btn-gradient:hover {
    color: #fff;
    transform: scale(1.05);
}
.contact-map-section {
    padding: 60px 0;
}

.form-subtext {
    color: #ccc;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: solid black;
}

.contact-btn {
    width: 100%;
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.success-msg {
    display: none;
    margin-top: 15px;
    color: #00ff88;
    font-weight: bold;
    text-align: center;
}
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-content {
    padding: 20px;
}

.blog-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-gradient {
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    display: inline-block;
}
.testimonial-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-8px);
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
/* FORM CONTAINER */
.contact-form-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    max-width: 420px;
    margin: auto;
}

/* TITLE */
.contact-form-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0d1b2a;
}

/* SUBTEXT */
.form-subtext {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

/* LABEL */
.contact-form-box label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* INPUT + TEXTAREA */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.3s;
    outline: none;
}

/* FOCUS EFFECT */
.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,0.1);
}

/* BUTTON */
.contact-form-box button {
    width: 100%;
    padding: 11px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.contact-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}

/* SUCCESS MESSAGE */
.success-msg {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: #e6f9f0;
    color: #0a8f5c;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}
/* SECTION */
.testimonial-section {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

/* TITLE */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b2a;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
}

/* FLOATING IMAGE GRID */
.testimonial-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* FLOAT ANIMATION */
.float-img {
    width: 100%;
    border-radius: 12px;
    animation: float 4s ease-in-out infinite;
}

.delay1 { animation-delay: 0.5s; }
.delay2 { animation-delay: 1s; }
.delay3 { animation-delay: 1.5s; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* TESTIMONIAL CARD */
.testimonial-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 14px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(13,110,253,0.2);
}

/* USER */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* TEXT */
.testimonial-card p {
    font-size: 13px;
    color: #555;
}

/* STARS */
.stars {
    font-size: 13px;
    color: #ffc107;
}

/* CAROUSEL DOTS */
.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 3px;
}

.owl-dot.active span {
    background: #0d6efd;
}
/* LOCATION ICON */
.social-icons a.location {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: #fff;
}

/* HOVER EFFECT */
.social-icons a.location:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 75, 43, 0.5);
}
