/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reveal on scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms cubic-bezier(.2,.9,.2,1), transform 700ms cubic-bezier(.2,.9,.2,1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Direction variants */
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal-left.active, .reveal-right.active { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Navigation Styles */
header {
    background-color: #1a2a44;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Header with Logo and Brand */
header.header-top {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 0;
    border-bottom: 3px solid #d4af37;
    background-color: #1a2a44;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

header.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header.header-top .logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

header.header-top .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    white-space: nowrap;
}

header.header-top .logo span {
    color: white;
}

header.header-top .tagline {
    color: #d4af37;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Navigation Bar */
header.navbar {
    position: fixed;
    width: 100%;
    top: 75px;
    padding: 0;
    background-color: #1a2a44;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

header.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    
}

.logo span {
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    display: block;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hide mobile logo on desktop */
.mobile-logo {
    display: none !important;
}

.btn-consultation {
    background-color: #d4af37;
    color: #1a2a44;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-consultation:hover {
    background-color: #c19b2e;
    color: #1a2a44;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
    padding: 5px 10px;
    transition: transform 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Carousel Styles */
.carousel-section {
    margin-top: 135px;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 5s ease-in;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.1) contrast(1.1);
}

.carousel-slide.active {
    opacity: 1;
}

/* Set background images for each slide */
.carousel-slide:nth-child(1) {
    background-image: url('img/1.webp');
}

.carousel-slide:nth-child(2) {
    background-image: url('img/2.webp');
}

.carousel-slide:nth-child(3) {
    background-image: url('img/3.webp');
}

.carousel-slide:nth-child(4) {
    background-image: url('img/4.webp');
}

.carousel-slide:nth-child(5) {
    background-image: url('img/5.webp');
}

/* Fallback background colors if images are not found */
.carousel-slide:nth-child(1) {
    background-color: #1a2a44;
}

.carousel-slide:nth-child(2) {
    background-color: #2c3e50;
}

.carousel-slide:nth-child(3) {
    background-color: #34495e;
}

.carousel-slide:nth-child(4) {
    background-color: #1a2a44;
}

.carousel-slide:nth-child(5) {
    background-color: #2b3b4b;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(26, 42, 68, 0.9), transparent);
    color: white;
    padding: 40px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 800px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.carousel-control {
    background-color: rgba(26, 42, 68, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background-color: rgba(212, 175, 55, 0.9);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #d4af37;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background-color: #f8f9fa;
    /* margin-top: 60px; */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a2a44;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #d4af37;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a2a44;
}

.service-card p {
    color: #666;
}

/* Features Section Styles */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-left: 4px solid #d4af37;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a2a44;
}

.feature-card p {
    color: #666;
}

/* Consultation CTA Section */
.consultation-cta {
    background: linear-gradient(135deg, #1a2a44 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.consultation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.consultation-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #1a2a44;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
}

.cta-btn:hover {
    background-color: #c19b2e;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: 135px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    color: #1a2a44;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: #d4af37;
    min-width: 30px;
}

.info-item h4 {
    color: #1a2a44;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    margin: 5px 0;
}

.info-item a {
    color: #d4af37;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1a2a44;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background-color: #d4af37;
    color: #1a2a44;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #c19b2e;
    transform: scale(1.02);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: 135px;
}

.blog-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.blog-date {
    color: #d4af37;
    font-weight: bold;
}

.blog-category {
    background-color: #f0f0f0;
    color: #1a2a44;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: #1a2a44;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

.read-more i {
    font-size: 0.8rem;
}

/* Small fixes for blog images and article pages */
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Article Page Styles */
.article-section {
    padding: 80px 0;
    background-color: #fff;
    margin-top: 120px;
}
.article-content {
    max-width: 900px;
    margin: 0 auto;
}
.article-header h1 {
    font-size: 2rem;
    color: #1a2a44;
    margin-bottom: 10px;
}
.article-meta {
    color: #666;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.article-image img {
    width: 100%;
    border-radius: 5px;
    margin: 20px 0;
}
.article-body h2 { color: #1a2a44; margin-top: 20px; }
.article-cta { background: #f8f9fa; padding: 20px; margin-top: 30px; border-radius: 5px; text-align: center; }
.cta-button { background: #d4af37; color: #1a2a44; padding: 12px 24px; border-radius: 4px; text-decoration: none; font-weight: bold; }

/* Contact Page Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
        margin-top: 100px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form {
        padding: 20px;
    }

    .info-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .info-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
        margin-top: 100px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card h3 {
        font-size: 1.2rem;
    }

    .blog-intro {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 0;
        margin-top: 80px;
    }

    .blog-grid {
        gap: 20px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .blog-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .blog-meta {
        gap: 10px;
        font-size: 0.8rem;
    }

    .blog-intro {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 30px 0;
        margin-top: 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .contact-content {
        gap: 30px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
        gap: 10px;
    }

    .info-item i {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 15px;
    }
}

/* Footer */
footer {
    background-color: #1a2a44;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 10px;
    color: #d4af37;
}

.footer-section p a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-weight: 500;
}

.footer-section p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.social-icons {
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-size: 1.5rem;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.whatsapp:hover {
    background-color: #25d366;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* Tablet Responsive Design */
@media (max-width: 992px) {
    .carousel-section {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    header.header-top {
        display: none;
    }

    header.navbar {
        top: 0;
        border-top: none;
        border-bottom: 3px solid #d4af37;
    }

    header.navbar .container {
        padding: 0 16px;
        height: 55px;
        justify-content: flex-end;
        position: relative;
    }

    nav {
        height: 55px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    nav::before {
        content: "A & N COMPANY ADVOCATES";
        color: #d4af37;
        font-weight: bold;
        white-space: nowrap;
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: block;
        position: static;
        transform: none;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background-color: #1a2a44;
        flex-direction: column;
        padding: 70px 14px 20px 14px;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        gap: 0;
        justify-content: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        display: block;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1.05rem;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: #d4af37;
        padding-left: 10px;
    }

    .mobile-logo {
        display: none !important;
    }

    .mobile-logo-text {
        font-size: 1rem;
        font-weight: bold;
        color: #d4af37;
        white-space: nowrap;
    }

    .mobile-logo-text span {
        color: white;
        margin-left: 6px;
    }

    .carousel-section {
        margin-top: 115px;
    }
}

@media (max-width: 576px) {
    header.header-top {
        display: none;
    }

    header.header-top .logo-brand {
        gap: 6px;
    }

    header.header-top .logo {
        font-size: 1rem;
        display: none;
    }

    header.header-top .tagline {
        font-size: 0.65rem;
        letter-spacing: 0px;
    }

    header.navbar {
        top: 0;
    }

    header.navbar .container {
        height: 48px;
    }

    nav {
        height: 48px;
    }

    .mobile-menu-btn {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        font-size: 1.3rem;
    }

    .nav-links {
        width: 80%;
        max-width: 280px;
        padding: 65px 12px 20px 12px;
    }

    .mobile-logo-text {
        font-size: 1.2rem;
    }

    .carousel-section {
        height: 300px;
        margin-top: 100px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}/* ABOUT US SECTION */
.about-us {
    background-color: #ffffff;
    padding: 80px 0;
    margin-top: 135px;
}

.about-block {
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.about-block h3 {
    color: #1a2a44;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.about-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-card h3 {
    color: #1a2a44;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-card p {
    color: #555;
    line-height: 1.7;
}

.expertise-list {
    list-style: none;
    padding-left: 0;
}

.expertise-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.expertise-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .about-us {
        padding: 60px 20px;
    }
}

/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
    margin-top: 135px;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1a2a44;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.team-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #d4af37;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    color: #1a2a44;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.team-info .position {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.team-info p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 20px;
    }

    .team-member img {
        height: 320px;
    }
}