/* =============================================
   TRADEWIND - Modern Responsive Website
   Refurbished Laptops & IT Products in India
   ============================================= */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #000000;
    --secondary-color: #FFFFFF;
    --accent-color: #2563EB;
    --accent-hover: #1d4ed8;
    --dark-grey: #1F2937;
    --light-grey: #F3F4F6;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --error-color: #EF4444;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    font-size: 14px;
}

.btn-secondary:hover {
    background: var(--dark-grey);
    transform: translateY(-2px);
}

.btn-reset {
    background: var(--light-grey);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-reset:hover {
    background: var(--border-color);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.btn-submit:hover {
    background: var(--accent-hover);
}

/* =============================================
   HEADER SECTION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary-color);
    z-index: 1000;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100px;      /* Adjust as needed */
    width: auto;       /* Maintain aspect ratio */
    display: block;
}


.logo:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-base);
}

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

.nav-link:hover {
    color: var(--accent-color);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.call-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pulse-icon {
    animation: pulse 2s infinite;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition-base);
    z-index: 999;
    padding: 20px;
}

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

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover {
    color: var(--accent-color);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* =============================================
   FULL WIDTH IMAGE SECTION
   ============================================= */
.fullwidth-section {
    padding: 60px 0 0;
    background: var(--secondary-color);
}

.fullwidth-section .section-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.fullwidth-section .section-description {
    max-width: 800px;
}

.fullwidth-image {
    width: 100%;
    margin-top: 40px;
}

.fullwidth-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* =============================================
   VISION MISSION VALUES SECTION
   ============================================= */
.vmv-section {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vmv-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-base);
}

.vmv-card:hover .vmv-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.vmv-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.vmv-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.vmv-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   WHY CHOOSE TRADEWIND SECTION
   ============================================= */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
    background: var(--light-grey);
    transition: var(--transition-base);
}

.why-choose-card:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--primary-color);
    transform: rotateY(360deg);
}

.why-choose-icon i {
    font-size: 28px;
    color: var(--secondary-color);
}

.why-choose-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================
   SERVICES TAB SECTION
   ============================================= */
.services-section {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 14px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    background: var(--secondary-color);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* =============================================
   IT INVENTORY GALLERY SECTION
   ============================================= */
.inventory-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.inventory-layout {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.inventory-info {
    padding-right: 20px;
}

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

.inventory-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.inventory-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
    height: 415px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay span {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}

/* =============================================
   FOUNDER SECTION
   ============================================= */
.founder-section {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.founder-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.founder-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 25px;
    text-align: center;
}

.founder-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.founder-designation {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link i {
    font-size: 18px;
    color: var(--text-primary);
}

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

.social-link:hover i {
    color: var(--secondary-color);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 0;
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info {
    background: var(--dark-grey);
    padding: 50px 40px;
    color: var(--secondary-color);
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 15px;
}

.contact-info > p {
    font-size: 15px;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
  display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-color);
}

.contact-item span {
    font-size: 15px;
    color: #D1D5DB;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-icon i {
    font-size: 18px;
    color: var(--secondary-color);
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 50px 40px;
    background: var(--secondary-color);
    position: relative;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--light-grey);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.error-message {
    display: block;
    font-size: 12px;
    color: var(--error-color);
    margin-top: 5px;
    min-height: 18px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-buttons .btn {
    flex: 1;
    padding: 14px 24px;
}

/* Success Message */
.success-message {
    display: none;
}
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.success-message p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 300px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--primary-color);
    padding: 25px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: #9CA3AF;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .vmv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inventory-layout {
        grid-template-columns: 1fr;
    }
    
    .inventory-info {
        text-align: center;
        padding-right: 0;
    }
    
    .inventory-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-row: span 1;
        height: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        display: inline-block;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .nav-list {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-card {
        padding: 30px 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .services-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .inventory-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        height: 250px;
    }
    
   .founder-grid {
    display: grid;
    gap: 30px;
    margin: 0 auto;
}
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .fullwidth-image img {
        height: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .inventory-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* =============================================
   ANIMATIONS & UTILITIES
   ============================================= */

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Desktop */
@media (min-width: 992px) {
    .founder-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .founder-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .founder-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.address-link {
    color: inherit;
    text-decoration: none;
}

.address-link:hover {
    text-decoration: underline;
}