/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Favicon Styles - Circular appearance in browser tabs */
/* Note: Most browsers will automatically make favicons circular in tabs */
/* These styles help ensure proper display across different browsers */

/* For browsers that support custom favicon styling */
link[rel="icon"] {
    border-radius: 50%;
}

/* Additional meta tags for better favicon support */
/* The favicon will appear circular in most modern browsers automatically */

:root {
    --primary-color: #194e60;
    --primary-dark: #0f3a4a;
    --secondary-color: #059669;
    --accent-color: #dc2626;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --gradient-primary: linear-gradient(135deg, #194e60 0%, #0f3a4a 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-accent: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-dark: linear-gradient(135deg, #194e60 0%, #0f3a4a 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(25, 78, 96, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    opacity: 1;
    transform: translateX(0);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.gst-info {
    margin: 20px 0;
    padding: 12px 20px;
    background: rgba(25, 78, 96, 0.1);
    border-left: 4px solid #194e60;
    border-radius: 8px;
    text-align: center;
}

.gst-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 1;
    transform: translateX(0);
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.hero-img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(25, 78, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.brand-category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.95);
}

.brand-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.brand-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.brand-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 25px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.brand-item:hover::before {
    opacity: 0.05;
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(25, 78, 96, 0.3);
}

.brand-item.main-distributor {
    background: linear-gradient(135deg, rgba(25, 78, 96, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(25, 78, 96, 0.2);
}

.brand-item.main-distributor:hover {
    border-color: rgba(25, 78, 96, 0.5);
    box-shadow: 0 10px 30px rgba(25, 78, 96, 0.2);
}

.brand-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.brand-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.brand-img.loaded {
    background: none;
    animation: none;
}

.brand-item:hover .brand-img {
    transform: scale(1.1);
}

.brand-info {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.brand-item:hover .brand-info h4 {
    color: var(--primary-color);
}

.brand-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Main distributor special styling */
.brand-item.main-distributor .brand-info h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.brand-item.main-distributor .brand-info p {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Brands */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-items {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .brand-item {
        padding: 20px 15px;
    }

    .brand-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .brands {
        padding: 80px 0;
    }

    .brand-category {
        padding: 30px 20px;
    }

    .brand-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-item {
        padding: 20px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(25, 78, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.features-list i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.95);
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(25, 78, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    justify-items: center;
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.team-member:hover::before {
    opacity: 0.05;
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.95);
}

.member-image {
    margin-bottom: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.member-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    opacity: 1;
    transform: scale(1);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: rgba(25, 78, 96, 0.3);
}

.member-info h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.member-role {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.member-bio {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(25, 78, 96, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

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

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
    overflow-x: hidden;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.address-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.address-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-card i {
    color: var(--primary-color);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.map-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 300px;
    max-width: 100%;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 78, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0f3a4a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 78, 96, 0.3);
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-method:hover {
    background: #e9ecef;
}

.contact-method i {
    color: #3498db;
    font-size: 1.5rem;
    width: 30px;
}

.contact-method h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-method p {
    color: #555;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links .social-link {
    background: #34495e;
    color: white;
}

.social-links .social-link:hover {
    background: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* ===========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-First Approach
   =========================================== */

/* Mobile-First Base Styles */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
}

/* Prevent horizontal scroll on all elements */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure all sections don't overflow */
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {

    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }

    /* Optimize images for mobile */
    .hero-img,
    .member-image img {
        will-change: transform;
    }

    /* GST info mobile styling */
    .gst-info {
        margin: 15px 0;
        padding: 10px 15px;
    }

    .gst-text {
        font-size: 13px;
    }
}

/* Mobile device specific styles */
.mobile-device {
    -webkit-overflow-scrolling: touch;
}


.mobile-device .btn,
.mobile-device .nav-link,
.mobile-device .social-link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Base Mobile Styles (320px and up) */
@media (max-width: 575.98px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Typography */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 16px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        word-wrap: break-word;
    }

    /* Navigation */
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 2px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active .nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
        border-radius: 12px;
        display: block;
        width: 200px;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
        min-height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-img {
        max-width: 280px;
        width: 100%;
        height: auto;
        max-width: min(280px, 90vw);
        margin: 0 auto;
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Sections */
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }

    /* Team Section */
    .team {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
        justify-items: center;
    }

    .team-member {
        padding: 30px 20px;
    }

    .member-image img {
        width: 120px;
        height: 120px;
    }

    .member-info h3 {
        font-size: 1.4rem;
    }

    .member-bio {
        font-size: 0.9rem;
    }

    /* Brands Section */
    .brands {
        padding: 60px 0;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .brand-category {
        padding: 24px 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .brand-items {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .brand-item {
        padding: 20px 16px;
    }



    /* Location Section */
    .location {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .address-card,
    .contact-info {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        margin-bottom: 20px;
    }

    .map-container {
        width: 100%;
        box-sizing: border-box;
    }

    .map-container iframe {
        width: 100%;
        height: 250px;
        max-width: 100%;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
    }

    .contact-item i {
        margin-bottom: 5px;
    }

    .address-card h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .address-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.6;
    }

    .contact-item span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    /* Staff Section */
    .staff {
        padding: 60px 0;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-category {
        padding: 20px 16px;
    }

    .staff-members {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }

    .staff-category:first-child .staff-member:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }

    .staff-img {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    /* Gallery Section */
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    /* Floating WhatsApp Button */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }

    /* Touch-friendly improvements */
    .btn,
    .nav-link,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve text readability on mobile */
    .about-text p,
    .member-bio,
    .contact-info p {
        line-height: 1.7;
    }

    /* Better spacing for mobile */
    .section-header {
        padding: 0 20px;
    }

    /* Mobile-optimized forms */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 14px 16px;
    }


}

/* Small Mobile Landscape (576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .hero-container {
        gap: 40px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-img {
        margin: 0 auto;
        display: block;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .brand-items {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Tablet Portrait (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-img {
        margin: 0 auto;
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
        justify-items: center;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .address-card,
    .contact-info {
        width: 100%;
        box-sizing: border-box;
    }

    .map-container {
        width: 100%;
        box-sizing: border-box;
    }

    .map-container iframe {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet Landscape (992px - 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-container {
        gap: 60px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .about-content {
        grid-template-columns: 1.5fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
        justify-items: center;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

}

/* Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-container {
        gap: 80px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .about-content {
        grid-template-columns: 2fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .hero-img,
    .member-image img,
    .staff-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .floating-whatsapp,
    .hamburger {
        display: none !important;
    }

    .hero {
        padding: 20px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove loading animations for immediate display */
.hero-content,
.team-member,
.stat-item {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.team-member,
.stat-item,
.address-card,
.contact-info {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover,
.stat-item:hover,
.address-card:hover,
.contact-info:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Logo Letter Styles */
.logo-letter {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-right: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.logo-letter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-logo {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 48px;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.footer-logo-letter {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.footer-logo-letter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Staff Section */
.staff {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(25, 78, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: var(--bg-primary);
    aspect-ratio: 4/3;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.gallery-img.loaded {
    background: none;
    animation: none;
}

@keyframes loading-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Loading states for slow internet */
img.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

img.loaded {
    background: none;
    animation: none;
}

img.error {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* Optimize for slow connections - these attributes are set in HTML */

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

/* Gallery responsive design */
@media (max-width: 768px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 3/2;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.staff-category {
    background: var(--bg-primary);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.staff-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.staff-count {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.staff-category p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.staff-members {
    display: grid;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    width: 100%;
}

/* Accountants: 2 above, 1 below centered */
.staff-category:first-child .staff-members {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    max-width: 500px;
    margin: 15px auto;
    gap: 20px;
}

.staff-category:first-child .staff-member:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 250px;
}

/* Salesmen: 2 above, 2 below */
.staff-category:nth-child(2) .staff-members {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    max-width: 500px;
    margin: 15px auto;
    gap: 20px;
}

/* Store Keepers: 2 above with same circle sizes */
.staff-category:last-child .staff-members {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 15px auto;
    gap: 20px;
}

.staff-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
    opacity: 1;
    transform: scale(1);
}

.staff-img:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.staff-member h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 100px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    padding: 60px;
    border: 1px solid var(--border-color);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.privacy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-primary);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .privacy-section h2 {
        font-size: 22px;
        padding-left: 15px;
    }

    .privacy-section h2::before {
        width: 3px;
        height: 25px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    min-width: 60px;
    min-height: 60px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

.floating-whatsapp i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Image Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-caption {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    padding: 0 20px;
    text-align: center;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Gallery item cursor */
.gallery-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 0 10px;
    }

    .modal-content img {
        max-height: 70vh;
    }

    .close {
        top: -35px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .modal-caption {
        font-size: 16px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
    }

    .modal-content img {
        max-height: 60vh;
    }

    .close {
        top: -30px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }

    .modal-caption {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 15px;
        min-width: 55px;
        min-height: 55px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 20px;
        right: 10px;
        min-width: 50px;
        min-height: 50px;
    }
}