* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.navbar-brand .logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff9800 !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #ff9800;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

.nav-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }

    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }

    .navbar-brand .logo {
        width: 120px;
    }
}


/* dropdown section */



.nav-item {
    position: relative;
}

.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 190px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}



.nav-item:hover>.dropdown-menu {
    display: block;
}


.navbar-collapse {
    overflow: visible !important;
}


.nav-item.open>.dropdown-menu {
    display: block !important;
}


.nav-item.open i {
    transform: rotate(180deg);
    transition: 0.3s;
}






/* header section  */



.about-header {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}


.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    object-position: center;

    z-index: -2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6));
    z-index: -1;
}


.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease forwards;
}

.about-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.about-content h1 span {
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.7);
}

.about-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #f1f1f1;
    line-height: 1.6;
}


.about-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #f7941e, #ffb347);
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 16px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(247, 148, 30, 0.6);
    transition: all 0.4s ease;
    animation: pulse 3s infinite ease-in-out;
}

.about-btn:hover {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #df6502, #ff974f);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(247, 148, 30, 0.9);
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width: 992px) {
    .about-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .about-content h1 {
        font-size: 2.3rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about-btn {
        padding: 14px 40px;
        font-size: 1.1rem;
    }
}






/* .about-header {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1.2s ease forwards;
}

.about-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.about-content h1 span {
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.7);
}


.about-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #f1f1f1;
    line-height: 1.6;
}


.about-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #f7941e, #ffb347);
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 16px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(247, 148, 30, 0.6);
    transition: all 0.4s ease;
    animation: pulse 3s infinite ease-in-out;
}

.about-btn:hover {
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #df6502, #ff974f);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(247, 148, 30, 0.9);
}



@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .about-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .about-content h1 {
        font-size: 2.3rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about-btn {
        padding: 14px 50px;
    }
}
 */

/* info section */

.about-text-title {
    font-size: 18px;
}


.aboutus-hero {
    background: #ffffff;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #173E84;
}

.about-title span {
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.7);
}

.about-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #333;
}

.about-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-btn {
    font-size: 1.3rem;
    display: inline-block;
    padding: 14px 50px;
    background: #ff9222;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #f87046;
    transform: scale(1.05);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.6s;
}

.animate-fade-up.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1.2s forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .aboutus-hero {
        text-align: center;
        padding-top: 60px;
    }

    .video-wrapper {
        height: 380px;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .video-wrapper {
        height: 300px;
    }
}

/* our misssion and vision section */


.mission-vision-section {
    background: linear-gradient(135deg, #fff 50%, #fdf3e3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #173E84;
}

.section-title h2 span {
    color: #f7941e;
    text-shadow: 0 0 8px rgba(247, 148, 30, 0.4);
}

.section-title p {
    font-weight: 500;
    color: #555;
    max-width: 650px;
    margin: 10px auto 50px;
    font-size: 1rem;
}

/* Mission & Vision Cards */
.mv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(247, 148, 30, 0.15), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: 0;
}

.mv-card:hover::before {
    left: 0;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(247, 148, 30, 0.3);
}

.icon-box {
    font-size: 50px;
    color: #f7941e;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mv-card:hover .icon-box {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(247, 148, 30, 0.6);
}

.mv-card h3 {
    font-size: 1.6rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mv-card p {
    color: #555;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Scroll Animation */
.animate-title,
.animate-subtitle,
.mv-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-title.show,
.animate-subtitle.show,
.mv-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991px) {
    .mv-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .mv-card h3 {
        font-size: 1.4rem;
    }
}


/*  client feedback section  */

.clients-section {
    background: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #173E84;
}

.section-title span {
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.7);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 10px auto 40px;
}


.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #ff5722;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-review {
    color: #444;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.client-name {
    font-weight: 700;
    color: #111;
}

.client-role {
    font-size: 0.9rem;
    color: #777;
}


.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.3s;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s forwards;
}

.animate-zoom-in.delay-1 {
    animation-delay: 0.3s;
}

.animate-zoom-in.delay-2 {
    animation-delay: 0.5s;
}

.animate-zoom-in.delay-3 {
    animation-delay: 0.7s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}


@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .client-review {
        font-size: 0.95rem;
    }
}


/* futter section */

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #F7941E, #173E84);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icon i {
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon.facebook:hover {
    text-decoration: none;
    background: #3b5998;
}

.social-icon.instagram:hover {
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.linkedin:hover {
    text-decoration: none;
    background: #0077b5;
}

.social-icon.whatsapp:hover {
    text-decoration: none;
    background: #25D366;
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.footer {
    background: url('futter\ image\ \(2\).jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 80px 20px 30px;
    overflow: hidden;
}


.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(50 48 48 / 61%);
    z-index: 0;
}

@keyframes fadeBg {
    0% {
        filter: brightness(0.85) saturate(1);
    }

    50% {
        filter: brightness(1) saturate(1.1);
    }

    100% {
        filter: brightness(0.85) saturate(1);
    }
}

.footer {
    animation: fadeBg 15s ease-in-out infinite;
}

.footer-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f4f4f4;
    max-width: 320px;
}

.futter-num {
    text-decoration: none;
    color: white;
}

.futter-num:hover {
    text-decoration: none;
    color: white;
}

.futter-mail {
    text-decoration: none;
    color: white;
}

.futter-mail:hover {
    text-decoration: none;
    color: white;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-col h4:hover::after {
    width: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f4f4f4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.contact-info li {
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #eee;
}

@media (max-width: 991px) {
    .footer-row {
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-about {
        margin: 0 auto 20px;
    }
}


/* whatsapp icon */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 6px 6px 8px #999;
    z-index: 100;
}

.float:hover {
    color: white;
}

.my-float {
    margin-top: 16px;
}
.dropdown-item:hover {
    color: #ffb84d !important;
    /* light orange */
    text-decoration: underline;

}


/* font */



.font-link {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}