* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= DISCLAIMER POPUP ================= */

.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.disclaimer-box {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.disclaimer-box h2 {
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #444;
}

.disclaimer-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.disclaimer-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#agreeBtn {
    background: #0d6efd;
    color: #fff;
}

#declineBtn {
    background: #ccc;
}
.disclaimer-box {
    background: #fff;
    padding: 25px;
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
    text-align: left;
    max-height: 80vh;
    overflow-y: auto;
}

.disclaimer-content {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.disclaimer-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.disclaimer-content li {
    margin-bottom: 8px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Top Bar */
.top-bar {
    background: #112335;
    color: #fff;
    font-size: 14px;
}

.top-content {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-bar a:hover {
    color: #d4b26a;   /* Gold hover effect */
}


/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #0b2c4d;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: #0b2c4d;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    transition: 0.3s;
}
/* NAV BUTTON */
.nav-btn a {
    background: #d4af37;
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover */
.nav-btn a:hover {
    background: #b8962e;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    margin-left: 10px;
}
@media (max-width: 768px) {
    .nav-btn a {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

/* ACTIVE MENU */
nav ul li a.active {
    color: #d4af37; /* gold highlight */
    font-weight: 600;
}

/* underline effect */
nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #d4af37;
}

nav ul li a:hover {
    color: #d4af37;
}

/* animated underline on hover */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s ease;
}
/* REMOVE underline for button */
.nav-btn a::after {
    display: none;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center;
}

.slide.active {
    display: block;
}

.overlay {
    background: rgba(0,0,0,0.6);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h1 {
    font-size: 40px;
}

.overlay p {
    margin-top: 10px;
    font-size: 18px;
}

.hero-buttons {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 10px;
    font-weight: bold;
}

.primary {
    background: #0b2c4d;
    color: #fff;
}

.secondary {
    border: 2px solid #0b2c4d;
    background: #fff;
    color: #0b2c4d;
}

/* Founder */
.founder {
    padding: 60px 0;
}

.founder-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    max-width: 350px;
}

.founder-text h2 {
    margin-bottom: 15px;
    color: #0b2c4d;
}
.founder-text p{
    text-align: justify;
}
/* ================= AREA OF PRACTICE ================= */

.practice {
    padding: 70px 0;
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.section-title p {
    color: #555;
    max-width: 700px;
    margin: auto;
}

.practice-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.practice-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 250px;
    max-width: 260px;
    transition: 0.3s ease;
}

.practice-card i {
    font-size: 36px;
    color: #0b2c4d;
    margin-bottom: 15px;
}

.practice-card h3 {
    margin-bottom: 10px;
    color: #0b2c4d;
}

.practice-card p {
    font-size: 14px;
    color: #666;
}

/* Hover Effect */
.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Tablet */
@media (max-width: 992px) {
    .practice-grid {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .practice-card {
        max-width: 100%;
    }
}


/* ================= TESTIMONIALS ================= */

.testimonials {
    padding: 70px 0;
    background: #f4f6fa;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
}

.testimonial h4 {
    color: #0b2c4d;
    margin-bottom: 5px;
}

.testimonial span {
    font-size: 14px;
    color: #777;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial p {
        font-size: 16px;
    }
}

/* ================= VISION & MISSION ================= */

.vision-mission {
    padding: 70px 0;
    background: #ffffff;
}

.vm-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.vm-box {
    background: #f8f9fc;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.vm-icon {
    font-size: 40px;
    color: #0b2c4d;
    margin-bottom: 15px;
}

.vm-box h3 {
    color: #0b2c4d;
    margin-bottom: 15px;
}

.vm-box p {
    color: #555;
    font-size: 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .vm-content {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vm-box {
        padding: 30px;
    }
}

/* ================= CLIENTS ================= */

.clients {
    padding: 80px 0;
    background: #f8f9fc;
    text-align: center;
    overflow: hidden;
}

/* Title spacing */
.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Slider */
.clients-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

/* Track */
.clients-track {
    display: flex;
    gap: 30px;
    animation: scrollClients 30s linear infinite;
    width: max-content; /* IMPORTANT FIX */
}

/* Logo Card */
.client-logo {
    flex: 0 0 220px;
    height: 110px; /* FIXED HEIGHT */
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* Image */
.client-logo img {
    max-width: 100%;
    max-height: 70px; /* CONTROL SIZE */
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

/* Hover */
.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Pause animation */
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* Smooth infinite scroll */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .client-logo {
        flex: 0 0 180px;
        height: 90px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 140px;
        height: 80px;
    }
}
/* Stats */
.stats {
    background: #0b2c4d;
    color: #fff;
    padding: 50px 0;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box i {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.social-links a {
    margin-right: 10px;
    color: #fff;
    border: 1px solid #444;
    padding: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 992px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .stats-content {
        flex-direction: column;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .top-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    /* Show toggle icon */
    .menu-toggle {
        display: block;
    }

    /* Hide desktop nav */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        z-index: 999;
    }

    /* When active */
    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .overlay h1 {
        font-size: 26px;
    }

    .overlay p {
        font-size: 16px;
    }
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}
