:root {    
    --primary: #FF6F0D;
    --primary-dark: #E65C00;
    --primary-light: #FF8F3D;
    --dark: #000000;
    --light: #FFFFFF;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --accent: #FFD700;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px rgba(255, 111, 13, 0.15);
    --font-size-base: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    --font-size-h1: clamp(2.5rem, 5vw + 1rem, 4rem);
    --font-size-h2: clamp(2rem, 4vw + 1rem, 3rem);
    --font-size-h3: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    --font-size-h4: clamp(1.5rem, 2vw + 1rem, 2rem);
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(1rem, 2vw, 1.5rem);
    --spacing-md: clamp(1.5rem, 3vw, 2rem);
    --spacing-lg: clamp(2rem, 4vw, 3rem);
    --spacing-xl: clamp(3rem, 6vw, 4rem);
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.playfair {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.bg-primary {
    background-color: var(--primary);
}


.textdesign{
    color: #FF6F0D;
}
.border-primary {
    border-color: var(--primary);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.15;
    z-index: 1;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { opacity: 0.1; }
    50% { opacity: 0.2; }
    100% { opacity: 0.1; }
}

.typing-effect {
    position: relative;
    display: inline-block;
}

.typing-effect::after {
    content: "|";
    position: absolute;
    right: -5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn-primary, .btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary::after, .btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after, .btn-outline:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 111, 13, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 13, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(255, 111, 13, 0.1);
    transform: translateY(-2px);
}

.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark) 25%, transparent 25%);
    transform: skewX(-45deg);
    transform-origin: bottom left;
}

.service-card, .partner-card, .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.service-card::before, .partner-card::before, .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before, .partner-card:hover::before, .testimonial-card:hover::before {
    opacity: 0.1;
}

.service-card:hover, .partner-card:hover, .testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 111, 13, 0.3);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(255, 111, 13, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.service-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-card {
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.practice-area {
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.practice-area:hover {
    border-bottom: 2px solid var(--primary);
    transform: translateY(-5px);
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 111, 13, 0.5);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-icon:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 111, 13, 0.3);
}

.animated-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.animated-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 61px;
}

.animated-wave .shape-fill {
    fill: rgba(255, 111, 13, 0.15);
}

.diagonal-section {
    position: relative;
    padding: 5rem 0;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right bottom, var(--dark) 49%, rgba(255, 111, 13, 0.1) 50%);
}





.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    display: block;
    color: #ffffff !important;
    font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.mobile-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.5s; }

#menu-toggle {
    display: none;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

#menu-toggle:hover {
    color: var(--primary);
}

#close-menu {
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

#close-menu:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }
    
    .nav-link {
        display: none;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('/api/placeholder/1900/1000');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
}

.team-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: transform 0.3s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 13, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 8px 25px rgba(255, 111, 13, 0.4);
}

.expertise-tag {
    background: rgba(255, 111, 13, 0.1);
    color: var(--primary);
    padding: 0.35rem 0.75rem;         /* smaller padding */
    border-radius: 1.5rem;            /* slightly smaller pill shape */
    font-size: 0.75rem;               /* smaller font */
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 111, 13, 0.2);
}

.expertise-tag:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 13, 0.3);
}

/* Base Responsive Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
}

/* Responsive Container */
.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Responsive Typography */
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

/* Responsive Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Responsive Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--spacing-sm) 0;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-link {
        display: none;
    }

    #menu-toggle {
        display: block;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    h1, .h1 {
        font-size: 2rem;
    }

    h2, .h2 {
        font-size: 1.75rem;
    }

    .mobile-link {
        font-size: 1.25rem;
        padding: 0.75rem;
    }
}

/* Responsive Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        text-align: center;
    }
}

/* Responsive Cards */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Forms */
.form-input {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 111, 13, 0.2);
}

/* Responsive Buttons */
.btn {
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (min-width: 640px) {
    .btn {
        width: auto;
    }
}

/* Responsive Team Cards */
.team-card {
    flex-direction: column;
}

@media (min-width: 768px) {
    .team-card {
        flex-direction: row;
    }
}

/* Responsive Testimonials */
.testimonial-card {
    padding: var(--spacing-md);
}

@media (max-width: 640px) {
    .testimonial-card {
        padding: var(--spacing-sm);
    }
}

/* Footer Styling */
.footer {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-logo {
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-link {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: 15px;
    margin-top: 20px;
    font-size: 0.875rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Social Media Icons Styling */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--light);
    background: var(--gradient);
    
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-icons a {
    margin: 0 0.5rem;
}

/* Responsive Footer and Social Icons */
@media (max-width: 768px) {
    .footer-logo {
        margin-bottom: 0.5rem;
    }

    .footer-link {
        font-size: 1rem;
        padding-left: 10px;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        margin: 0.25rem;
    }
}

@media (max-width: 576px) {
    .footer-link {
        font-size: 0.875rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }
}

/* Responsive Spacing Utilities */
@media (max-width: 768px) {
    .py-20 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
    .px-4 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
    .gap-8 { gap: var(--spacing-md); }
    .space-y-8 > * + * { margin-top: var(--spacing-md); }
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .hover-effect {
        display: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}

/* Client Section Styles */
.client-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.client-logo {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: rgba(255, 111, 13, 0.05);
}

.client-logo img {
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.client-info {
    padding: 1rem 0;
}

.client-info h5 {
    color: var(--light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.client-card:hover .client-info h5 {
    color: var(--primary);
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card .textdesign {
    transition: transform 0.3s ease;
}

/* Responsive Client Section */
@media (max-width: 768px) {
    .client-card {
        padding: 1rem;
    }
    
    .client-logo {
        padding: 0.5rem;
    }
    
    .client-logo img {
        height: 60px;
    }
    
    .client-info h5 {
        font-size: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}
/* Team Filter Button Styles */
.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Water Drop Animation */
.filter-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.filter-btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.4);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 13, 0.2);
}

.filter-btn.active {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 111, 13, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active::before {
    opacity: 1;
}

/* Responsive Filter Buttons */
@media (max-width: 768px) {
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Responsive Team Image */
@media (max-width: 768px) {
    .team-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 250px;
    }
}


 /* Custom Cursor Styles */
 * {
    cursor: none !important;
}

.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    backdrop-filter: invert(1);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transition: all 0.1s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(255, 111, 13, 0.1);
    border-color: var(--primary);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 111, 13, 0.2);
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .cursor, .cursor-dot {
        display: none;
    }
    
    * {
        cursor: auto !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #FF6F0D;;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 111, 13, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Enhanced Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.6); /* glassy dark */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);

    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    display: block;
    color: #ffffff !important;
    font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.mobile-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.5s; }

#menu-toggle {
    display: none;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

#menu-toggle:hover {
    color: var(--primary);
}

#close-menu {
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

#close-menu:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }
    
    .nav-link {
        display: none;
    }
}

/* Enhanced Disclaimer Modal */
.disclaimer-modal {
    backdrop-filter: blur(10px);
}

.disclaimer-content {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.disclaimer-modal.show .disclaimer-content {
    transform: scale(1);
    opacity: 1;
}

/* Image Lazy Loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Disclaimer Modal Styles */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
}

.disclaimer-content {
    position: relative;
    background: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 111, 13, 0.2);
    border: 1px solid rgba(255, 111, 13, 0.3);
}

.disclaimer-content h2 {
    color: #FF6F0D;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.disclaimer-text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.disclaimer-text::-webkit-scrollbar {
    width: 8px;
}

.disclaimer-text::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.disclaimer-text::-webkit-scrollbar-thumb {
    background: #FF6F0D;
    border-radius: 4px;
}

.disclaimer-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.disclaimer-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: none !important;
    transition: all 0.3s ease;
}

.disclaimer-btn.accept {
    background: #FF6F0D;
    color: white;
}

.disclaimer-btn.accept:hover {
    background: #e6660c;
    transform: translateY(-2px);
}

.disclaimer-btn.proceed {
    background: transparent;
    color: #FF6F0D;
    border: 2px solid #FF6F0D;
}

.disclaimer-btn.proceed:hover {
    background: rgba(255, 111, 13, 0.1);
    transform: translateY(-2px);
}

.disclaimer-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: #e0e0e0;
    cursor: none !important;
}

.disclaimer-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FF6F0D;
    cursor: none !important;
}

.disclaimer-checkbox label {
    cursor: none !important;
}

.practice-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.fbtn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #FF6F0D;
    border-radius: 25px;
    color: #FF6F0D;
    background: transparent;
    transition: all 0.3s ease;
    cursor: none !important;
}

.fbtn:hover,
.fbtn.active {
    background: #FF6F0D;
    color: white;
}

.practice-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 111, 13, 0.1);
}

.practice-card:hover {
    transform: translateY(-5px);
    border-color: #FF6F0D;
    box-shadow: 0 10px 20px rgba(255, 111, 13, 0.1);
}

.practice-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 111, 13, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.practice-icon i {
    font-size: 1.5rem;
    color: #FF6F0D;
}

.practice-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 1rem;
    background: rgba(255, 111, 13, 0.1);
    border-radius: 15px;
    font-size: 0.875rem;
    color: #FF6F0D;
}

/* Responsive Sections */
.section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }
}

/* Responsive Cards */
.card {
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .card {
        padding: 1rem;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Forms */
.form-group {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 0.75rem;
    }
}

/* Responsive Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* Responsive Testimonials */
.testimonial-grid {
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive Footer */
.footer {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive Utility Classes */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .mt-mobile {
        margin-top: 1rem !important;
    }
    
    .mb-mobile {
        margin-bottom: 1rem !important;
    }
}

/* Scroll Animation Classes */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay classes for multiple elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Brochure Download Button */
.brochure-button {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #FF6F0D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.brochure-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brochure-button:hover {
    background-color: #E65C00;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Optional: Backdrop for sidebar */
#mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
    display: none;
}
#mobile-backdrop.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
    #mobile-backdrop {
        display: none !important;
    }
}

.text-cd{
    color: #FF6F0D;
}