* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    background-color: white;
    overflow-x: hidden;
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;

}


/*----------------------------------- Top-header--------------------- */

.top-header {
    background-color: black;
}

.top-header .row {
    display: flex;
    align-items: center;
    justify-content: end;
}

.top-header .row .col-lg-3 p {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10px;
}

.a {
    text-decoration: none;
}

.top-header .row .col-lg-3 p:hover {
    color: gold;
}

.top-header #datetime {
    padding-left: 10px;
}

.top-header #datetime:hover {
    color: gold;
}
.top-header .row .col-lg-3 i:hover {
    color: gold;

}
.top-header a{
    text-decoration: none;
    color: white;
}
.top-header a:hover{
    color: gold;
}




/*------------------------ navbar------------------------------------ */
.container .navbar-brand img {
    max-width: 8vw;


}


.navbar {
    font-size: 18px;
    font-weight: 500;
    z-index: 1000;
    border-bottom: 2px solid black;

}

.navbar p {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
}

/* Hover dropdown open */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* dropdown position fix */
}

/* Optional: smooth hover effect */
.dropdown-menu {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #0d6efd;
    color: black;
}

.navbar-nav .nav-link {
    color: black;
    position: relative;
    /* padding: 10px 20px; */
    transition: all 0.3s ease;
}

/* Hover effect (top border only) */
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: red;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

/* Active link styling (Home active) */
.navbar-nav .nav-link.active::before {
    width: 100%;
    background-color: red;
}

.navbar-nav .nav-link.active {
    color: black;
    font-weight: 600;
}


.navbar-nav .nav-link {
    border-top: 3px solid transparent;

}





/*----------------------------- carousel-slider----------------------------- */
.carousel .slide {
    width: 100%;
    display: flex;
    justify-content: center;
    /* object-fit: cover; */
    margin-top: 5px;

}

.carousel-inner {
    width: 90%;
    border-radius: 25px;

}


/* ------------------------------------box-container--------------------------------- */



section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 800;

}


.box-container {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    margin-top: 10px;
    /* border: 1px solid black; */
}

.box-container h1 {
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    color: rgb(64, 0, 255);
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 35px;
    font-weight: 500;
}

.card-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 5px;
    margin-bottom: 10px;
    padding-top: 12px;
}

.card {
    position: relative;
    width: 300px;
    height: 280px;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
    filter: brightness(50%);

}

.card .info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(129, 102, 233), rgba(100, 19, 240, 0.1));
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: 0.5s ease;
}

.card:hover .info {
    bottom: 0;
}

.info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: rgb(245, 245, 248);

    font-weight: 700;
}

.info p {
    font-size: 15px;
    line-height: 1.4;
}

/*-------------------------------------- page-text---------------------------------------------- */
.page-text .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 6%;
    background: #ffffff;
    margin-top: 10px;
    margin-bottom: 0px;
    z-index: 700;

}

.page-text .row h2 {
    color: blue;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 30px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.page-text .row p {
    color: #444;
    font-size: clamp(1rem, 2vw, 1rem);
    align-items: center;
    overflow: hidden;
}

.page-text .row img {
    display: flex;
    max-width: 40vw;
    margin-left:0%;
    


}

.row .button-box {
    display: flex;
}


.row .button-box .btn1 button {
    display: flex;
    border: none;
    margin-right: 30px; 
    margin-top: 10px;
    background-color: rgb(250, 248, 248);
    width: 300px;
    overflow: hidden;

}

.row .button-box .btn2 button {
    display: flex;
    background-color: rgb(250, 248, 248);
    border: none;
    margin-top: 10px;
    align-items: center;
    text-align: center;
    justify-content: start;
    width: 300px;
    overflow: hidden;

}


.btn {
    position: relative;
    overflow: hidden;
    background: white;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(220, 246, 244), #9bf0d5);
    transition: all .9s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

/*------------------------------------------ best servicess------------------------------ */
.big-services {
    padding: 10px 0;
    z-index: 600;
}

.big-services h1 {
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 20px;
    color: #0a2a66;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.big-services p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.big-services img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.big-services h3 {
    margin-top: 10px;
    color: #0a2a66;
    font-weight: 600;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.big-services h4 {
    margin-top: 25px;
    font-weight: 600;
    color: #0a2a66;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.big-services .list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* margin-top: 10px; */
}

.big-services ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;

}

.big-services ul li {
    padding: 1px 0;
    font-size: 1rem;
    color: #333;
    position: relative;
}

.big-services ul li::before {
    content: "✔";
    color: #28a745;
    margin-right: 18px;
}

/*----------------------------------- stickey card------------------------------------ */

.heading {
    position: sticky;
    top: 0;
    text-align: center;
    padding: 10px;
    z-index: 10;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
}

.heading h1 {
    font-size: 35px;
    color: blue;
    font-weight: 500;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.heading h1 p {
    margin-bottom: 100px;
    width: 10px;
}

.heading p {
    color: #555;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 100px;

}

/* Container */
.cards {
    width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 600;
    margin-bottom: 50px;
}

/* Sticky Card Design */
.box {
    position: sticky;
    top: 30%;
    transform: translateY(-10%);
    display: flex;
    border-radius: 20px;
    padding: 20px 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    /* overflow: hidden; */
    /* flex-direction: column; */
    justify-content: space-between;
    /* Equal spacing for text + image */
    align-items: center;
    background: white;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* min-height: 250px; ✅ fix height for all cards */
    text-align: center;
}

/* Layered stacking with gaps */
.box:nth-child(1) {
    margin-top: 0;
    z-index: 1;
    width: 100%;

}

.box:nth-child(2) {
    margin-top: 10px;
    z-index: 2;
    width: 100%;
    padding: 40px 50px;
}

.box:nth-child(3) {
    margin-top: 10px;
    z-index: 3;
    width: 100%;
    padding: 40px 50px;

}

.box:nth-child(4) {
    margin-top: 10px;
    z-index: 4;
    width: 100%;
    padding: 40px;

}

/* Text Section (left) */
.text {
    flex: 1;
    padding-right: 40px;
}

.text h2 {
    font-size: 28px;
    margin-bottom: 10px;

    color: blue;
    font-weight: 700;
}

.text p {
    color: #555;
    line-height: 1.7;
}

/* Image Section (right) */
.image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); */
}

/* Subtle lift effect */
/* .box:hover {
    transform: translateY(-5%);
}  */

.sticky-container::after {
    content: "";
    display: block;
    height: 1vh;
}


/* --------------------support----------------------------- */

.container .support {

    z-index: 1000;
    margin-left: 110px;
    margin-bottom: 30px;
    background-color: #ffff;

}

.container .support .col-lg-3 {

    margin-left: 57px;

}

.container .support .col-lg-3 img {

    height: 50px;
    width: 50px;
    margin-bottom: 10px;
    margin-left: 60px;
}

.container .support h1,
h6 {
    display: flex;
    flex-wrap: wrap;
    word-wrap: break-word;
    align-items: center;
    margin-right: 100px;
    justify-content: center;
    margin-bottom: 10px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.container .support p {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 15px;
}

/*---------------------------------- logo slider--------------------------------------- */

.logo-slider {
    overflow: hidden;
    width: 100%;
    background-color: white;
    padding: 20px 0;
    z-index: 700;
    margin-bottom: 40px;
}

.logo-slider h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    color: blue;
    font-weight: 700;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

}

.slide-track {
    display: flex;
    width: calc(250px * 10);
    /* 10 slides total (5 unique x 2 repeat) */
    animation: scroll 10s linear infinite;
}

.logo {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 800;
}

.logo img {
    width: 80px;
    height: 60px;
    /* filter: brightness(0) invert(1); makes white logo if dark bg */
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
        /* move half (5 logos) */
    }
}

/*------------------------------ footer------------------------------------------------------------- */

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(10, 0, 0);
    padding: 10px;
    background-color: rgb(246, 243, 243);
    padding-top: 20px;
    z-index: 700;
}

.footer .col-lg-3{
    justify-content: center;
}

.footer .row .app-img img {
    max-width: 15vw;
    margin: 12px 0px;

}


.footer a {
    text-decoration: none;
    color: rgb(8, 8, 8);
    display: inline;

}

.footer i {
    cursor: pointer;
    color: goldenrod;
    
}


.footer .last-col a{
    cursor: pointer;
    padding-left: 10px;
    color: goldenrod;

  
}

