/********** Template CSS **********/

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

.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: var(--bs-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 ***/
.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;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 4rem;
    }
}

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


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.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;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

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

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

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** 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;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** 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;
    opacity:0.8 !important;
}

.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 ***/
@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);
    }
}


/*** Appoinment ***/
.newsletter {
    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;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    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;
}

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

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

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

/*
new style csss develoer custom*/

.annual-report-section {
    padding: 50px 0;
}

.report-heading {
    background: #1f2d4a;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.annual-report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.annual-report-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    font-weight: 500;
}

.annual-report-list li span {
    color: #1f2d4a;
}

.download-icon {
    font-size: 18px;
    color: #1f2d4a;
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .annual-report-list li {
        font-size: 14px;
        padding: 12px 8px;
    }
}
.report-width-wrap {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .report-width-wrap {
        max-width: 800px;
    }
}

@media (max-width: 991px) {
    .report-width-wrap {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .report-width-wrap {
        padding: 0 10px;
    }
}


/*
new csss*/
.award-section {
    padding: 70px 0;
}

.award-title {
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #0a2540;
}

.award-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.award-card img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    background: #fff;
}

/* Overlay */
.award-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 15px;
}

.award-overlay h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffb703;
}

.award-overlay p {
    font-size: 14px;
    margin: 0;
}

/* Hover Effect */
.award-card:hover .award-overlay {
    opacity: 1;
}

/*!**/
/*client scc*!*/
.client-logo-section {
    padding: 50px 0;
    background: #fff;
}

.client-logo-carousel .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.client-logo-carousel .logo-item img {
    max-height: 70px;
    max-width: 140px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo-carousel .logo-item img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}


/*
navnbar css*/
/* Topbar logo */
.top-logo img {
    max-height: 60px !important;
    width: auto;
}

/* Navbar logo */
.nav-logo {
    max-height: 40px;
    width: auto;
}

/* Tablet */
@media (max-width: 992px) {
    .top-logo img {
        max-height: 38px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nav-logo {
        max-height: 34px;
    }
}

/* ===== MULTI LEVEL DROPDOWN (BOOTSTRAP 5.0 SAFE) ===== */
/* ===== MEGA MENU ===== */

.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px 0;
    border: none;
    background: #0b0f3b; /* dark blue like screenshot */
    display: none;
}

.mega-dropdown:hover > .mega-menu {
    display: block;
}

/* Titles */
.mega-title {
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Links */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 6px;
}

.mega-list li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.mega-list li a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

/* prevent overlap */
.navbar,
.mega-menu {
    z-index: 1050;
}

/* Mobile */
@media (max-width: 991px) {
    .mega-dropdown:hover > .mega-menu {
        display: none;
    }

    .mega-menu {
        position: static;
        background: #0b0f3b;
    }
}
/*gallery*/
.app-tabs .nav-link {
    background: none;
    border-radius: 0;
    color: #0a1a44;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.app-tabs .nav-link.active {
    color: #000000;
}

.app-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #f57c00;
    left: 0;
    bottom: -6px;
}

.app-img {
    overflow: hidden;
}

.app-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .4s ease;
}

.app-img:hover img {
    transform: scale(1.08);
}

/*new css
*/

.bg-top-color {
    background-color: #eaeaea !important;
}
.text-darkblack{
    color:#000;

}




.team-img {
    position: relative;
    overflow: hidden;
}

/* overlay */
.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 150, 18, 0.9); /* same orange */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
}

/* hover trigger */
.team-item:hover .team-social {
    opacity: 1;
}

/* icons */
.social-icons a {
    color: #fff;
    font-size: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
}

/* paragraph text */
.team-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px;
    max-width: 90%;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s ease;
}

/* paragraph appear on hover */
.team-item:hover .team-desc {
    opacity: 1;
    transform: translateY(0);
}

.team-social {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
}
.team-item:hover .team-social {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}




/*  bording css
*/
.committee-card{
  border:1px solid #e5e5e5;
  border-radius:8px;
  padding:20px;
  margin-bottom:25px;
  background:#fff;
}

.committee-title{
  font-weight:700;
  margin-bottom:5px;
}

.committee-subtitle{
  font-size:14px;
  color:#777;
  margin-bottom:15px;
}

.member-row{
  display:grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap:15px;
  padding:10px 0;
  border-top:1px dashed #ddd;
}

.member-row:first-child{
  border-top:none;
}

@media(max-width:768px){
  .member-row{
    grid-template-columns:1fr;
  }
  .ol.process-chart {
    display: block !important;  
  }
}

/*css product step
*/


ol.process-chart {
    color: #000;
    counter-reset: item;
    display: flex;
    list-style: none;
    margin: 0 0 0 1em;
    padding: 0;
}

ol.process-chart>li:nth-of-type(6n+1) {
    background-color: #ffc925;
}

ol.process-chart>li {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, transparent 25%);
    background-color: #ffc925;
    counter-increment: item;
    flex-basis: 0;
    flex-grow: 1;
    margin: 1em 1em 1em -1em;
    min-width: 11.25em;
    padding: 1em 1em 1em 2em;
}

ol.process-chart>li, ol.process-chart>li>div {
    font-size: 11px;
    position: relative;
}

ol.process-chart>li:before {
    content: 'Step';
    display: inline-block;
    font-weight: 300;
    left: 2em;
    letter-spacing: 0.1em;
    position: absolute;
    top: 1em;
    transform: rotate(90deg);
    transform-origin: 25% 50%;
}

ol.process-chart>li:before, ol.process-chart>li>div:before {
    color: rgba(0, 0, 0, 0.75);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

*, ::after, ::before {
    box-sizing: border-box;
}
ol.process-chart>li, ol.process-chart>li>div {
    font-size: 11px;
    position: relative;
}

ol.process-chart>li:nth-of-type(6n+1):after {
    border-left-color: #ffc925;
}

ol.process-chart>li:after {
    border-bottom: 1em solid transparent;
    border-left: 1em solid #ffc925;
    border-right: 0 solid transparent;
    border-top: 1em solid transparent;
    content: '';
    height: 100%;
    position: absolute;
    right: -1em;
    top: 0;
    width: 0;
    z-index: 1;
}

ol.process-chart>li>div {
    padding: 0 0 0 1em;
}

ol.process-chart>li, ol.process-chart>li>div {
    font-size: 11px;
    position: relative;
}
ol.process-chart>li>div:before {
    content: counter(item, decimal-leading-zero);
    font-size: 3em;
    font-weight: 500;
    line-height: 1;
}
ol.process-chart>li:before, ol.process-chart>li>div:before {
    color: rgba(0, 0, 0, 0.75);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.process-chart h2 {
    line-height: 25px;
}

/* 📱 Mobile view */
@media (max-width: 768px) {
    ol.process-chart {
        display: block;   /* ✅ flex → block */
        margin-left: 0;
    }

    ol.process-chart > li {
        width: 100%;
        margin: 0 0 15px 0;
    }

    /* arrows remove (optional but recommended) */
    ol.process-chart > li::after {
        display: none;
    }
}


.spec-box {
    background-color: #ffde78;
    border: 1px solid #000;
    color: #000;
}

/* Row */
.spec-row {
    display: grid;
    grid-template-columns: 35% 65%;
    border-bottom: 1px solid #000;
}

/* Remove last border */
.spec-row:last-child {
    border-bottom: none;
}

/* Left column */
.spec-title {
    padding: 12px;
    font-weight: 700;
    border-right: 1px solid #000;
    background: rgba(0,0,0,0.05);
}

/* Right column */
.spec-value {
    padding: 12px;
    text-align: left;
    line-height: 1.5;
}
@media (max-width: 576px) {
    .spec-row {
        grid-template-columns: 100%;
    }

    .spec-title {
        border-right: none;
        border-bottom: 1px solid #000;
    }
}

.dark-bg {
    background-color: #121628;
}

.position-relative {
    position: relative !important;
}
section {
    padding: 40px 0;
}
.dark-bg h2 {
    color: rgb(255, 255, 255);
}

.theme-bg .section-title p, .dark-bg .section-title p {
    color: rgba(255, 255, 255, 0.8);
}
.section-title p {
    font-size: 16px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.img-side {
    padding: 0;
    position: absolute !important;
    top: 0px;
    height: 100%;
    overflow: hidden;
    z-index: 9;
}

/* newlatter css
*/



.newsletter-section {
    background: #f8f9fa; /* light grey */
}

.newsletter-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Title */
.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Text */
.newsletter-text {
    font-size: 16px;
    color: #555;
    gap: 15px;
}

.newsletter-icon {
    font-size: 36px;
    color: #d89b05; /* brand gold */
}

/* Form */
.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    height: 55px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 15px;
}

.newsletter-input:focus {
    box-shadow: none;
    border-color: #d89b05;
}

.newsletter-btn {
    background: #d89b05;
    color: #fff;
    padding: 0 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #b88404;
}

@media (max-width: 767px) {
    .newsletter-card {
        padding: 25px;
        text-align: center;
    }

    .newsletter-text {
        justify-content: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        height: 55px;
    }
}

.product_img_section img {
    border: 1px solid #f9a305;
    width: 100%;
}


.app-img img {
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.app-img:hover img {
    transform: scale(1.05);
}


