/* ---------------------------- */
/* GENERAL STYLING */
/* ---------------------------- */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #f5f7fa, #e4ebf5);
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.main-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 50px;
    background: linear-gradient(90deg, #173E84, #F7941E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-heading {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #555;
}

/* ---------------------------- */
/* TEAM ROW CARDS */
/* ---------------------------- */
.alt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    padding: 25px 50px;
    background: #ffffffcc;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

.alt-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.alt-row.reverse {
    flex-direction: row-reverse;
}

.alt-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.alt-row:hover .alt-image img {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(23, 62, 132, 0.3);
}

.alt-content {
    flex: 1;
    padding: 20px;
}

.alt-content h2 {
    font-size: 1.8rem;
    color: #173E84;
    margin-bottom: 10px;
}

.alt-content h4 {
    font-size: 1rem;
    color: #F7941E;
    margin-bottom: 15px;
}

.alt-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* ---------------------------- */
/* REMOVED ROADMAP LINE + DOTS */
/* ---------------------------- */

.team-alt-section {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 100px;
    counter-reset: step; /* Not needed now, but harmless */
}

/* Removed:
.team-alt-section::before {}
.alt-row::before {}
*/

/* ---------------------------- */
/* RESPONSIVE */
/* ---------------------------- */
@media (max-width: 900px) {
    .alt-row {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .alt-row.reverse {
        flex-direction: column;
    }

    .alt-image img {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------------------------- */
/* NAVBAR */
/* ---------------------------- */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.logo {
    width: 120px;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.08);
}

.navbar-custom .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #F7941E;
    transform: translateY(-2px);
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #F7941E;
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
}

/* NAV BUTTON */
.nav-btn {
    background-color: #F7941E;
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    transition: all 0.3s ease;
        color: white;
}

.nav-btn a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: #df6502;
    transform: scale(1.08);
}

.animate-btn {
    box-shadow: 0 0 10px rgba(247, 148, 30, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 8px rgba(247, 148, 30, 0.4); }
    50% { box-shadow: 0 0 25px rgba(247, 148, 30, 0.7); }
    100% { box-shadow: 0 0 8px rgba(247, 148, 30, 0.4); }
}

.navbar-toggler {
    border: none;
}

.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(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* DROPDOWN MENU */
.nav-item {
    position: relative;
}

.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 160px;
    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;
}

/* MOBILE NAV */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-custom .nav-link {
        display: block;
        padding: 10px 0;
        text-align: center;
    }

    .nav-btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}
.nav-btn {
    background-color: #F7941E;
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    transition: all 0.3s ease;
}


.nav-btn a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: #df6502;
    transform: scale(1.08);
}
/* ---------------- FOOTER 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 color variations */
.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, 
                #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.whatsapp:hover {
    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 */
.footer {
    background: url('images/Footer.png') 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;
}

/* Background animation */
@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 LAYOUT */
.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;
}

/* Logo */
.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

/* Text */
.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f4f4f4;
    max-width: 320px;
}

/* Contact Links */
.futter-num,
.futter-mail {
    text-decoration: none;
    color: white;
}

.futter-num:hover,
.futter-mail:hover {
    text-decoration: none;
    color: white;
}

/* Headings */
.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;
}

/* List Links */
.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 Icons */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #fff;
}

/* Footer bottom */
.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;
}

/* Responsive footer layout */
@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 Floating 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;

}
.services-link::after {
    display: none !important;
}
