/* --- Font Declarations --- */
@font-face {
    font-family: 'Vectora LT Std';
    src: url('fonts/VectoraLTStd-Roman.woff2') format('woff2'),
        url('fonts/VectoraLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vectora LT Std';
    src: url('fonts/VectoraLTStd-Bold.woff2') format('woff2'),
        url('fonts/VectoraLTStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vectora LT Std';
    src: url('fonts/VectoraLTStd-Italic.woff2') format('woff2'),
        url('fonts/VectoraLTStd-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Vectora LT Std';
    src: url('fonts/VectoraLTStd-96BlackItalic.woff2') format('woff2'),
        url('fonts/VectoraLTStd-96BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura XBlk';
    src: url('fonts/FuturaExtraBlack.woff2') format('woff2'),
        url('fonts/FuturaExtraBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* --- Dedicated News Page Styles (Overrides & Professional Layout) --- */
.main-content {
    position: relative;
    z-index: 2;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: transparent;
}

.breaking-news {
    background: linear-gradient(90deg, #c48130 0%, #212121 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.featured {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.featured-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.main-article {
    flex: 2;
    min-width: 0;
}

.main-article .article-image {
    background: linear-gradient(135deg, #c48130 60%, #fff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
    text-align: center;
    margin-bottom: 0;
}

.main-article .article-content {
    color: #222;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.main-article .article-meta {
    font-size: 0.95rem;
    color: #c48130;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-article .category-tag {
    background: #c48130;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 1rem;
}

.main-article .article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212121;
}

.main-article .article-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.main-article .read-more {
    display: inline-block;
    background: #c48130;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.main-article .read-more:hover {
    background: #212121;
}

.side-articles {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 2rem;
    min-width: 220px;
}

.side-article {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 1rem 1.2rem;
    color: #222;
}

.side-article h3 {
    font-size: 1.05rem;
    color: #c48130;
    margin-bottom: 0.5rem;
}

.side-article p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.side-article .date {
    font-size: 0.85rem;
    color: #888;
}

.newsletter {
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 0.5rem;
    text-align: center;
}

.newsletter h2 {
    color: #c48130;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.newsletter input[type="email"] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #c48130;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.newsletter button {
    background: #d3d3d3;
    color: #000000;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter button:hover {
    background: #808080;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-links a {
    color: #fff;
    margin-right: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #c48130;
}

.footer-contact span,
.footer-contact a {
    color: #fff;
    margin-right: 1rem;
    font-size: 0.98rem;
}

.footer-bottom {
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem 0.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .featured-grid {
        flex-direction: column;
    }

    .side-articles {
        margin-left: 0;
        margin-top: 1rem;
    }

    .main-article .article-content {
        padding: 1rem;
    }

    .newsletter {
        padding: 1rem 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
}

/* --- Custom News Page Styles --- */
.main-article .article-content {
    color: #222;
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.featured {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.side-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 2rem;
}

.newsletter {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem 0.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .featured-grid {
        flex-direction: column;
    }

    .side-articles {
        margin-left: 0;
        margin-top: 1rem;
    }

    .main-article .article-content {
        padding: 1rem;
    }

    .newsletter {
        padding: 1rem 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: transparent !important;
    background: transparent !important;
}

/* Global paragraph styling */
p {
    font-family: 'Vectora LT Std', Arial, sans-serif !important;
    color: #000 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

/* Global button styling */
button,
.btn,
[class*="-btn"] {
    background: #d3d3d3 !important;
    color: #000000 !important;
}

button:hover,
.btn:hover,
[class*="-btn"]:hover {
    background: #808080 !important;
    color: #ffffff !important;
}

/* General heading styles with Futura Extra Black */
h1,
h2,
h3 {
    color: white !important;
    font-family: 'Futura XBlk', 'Futura', Arial, Helvetica, sans-serif !important;
    font-weight: 900 !important;
    /* Extra Black weight */
    font-size: 2rem !important;
    text-shadow: 2px 2px 4px rgba(128, 128, 128, 0.8),
        0px 0px 6px rgba(128, 128, 128, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(255, 255, 255, 0.6) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    -webkit-text-stroke: 0.45px white;
    letter-spacing: 0.01em;
}

/* Same media queries as above */
@media (max-width: 768px) {

    h1,
    h2,
    h3 {
        font-size: 1.5rem !important;
        -webkit-text-stroke: 0.35px white;
    }
}

@media (max-width: 480px) {

    h1,
    h2,
    h3 {
        font-size: 1.2rem !important;
        -webkit-text-stroke: 0.25px white;
    }
}

/* Background image */
.bg-image {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('images/home.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1 !important;
    opacity: 1 !important;
    /* Full visibility of background */
}

@media (max-width: 768px) {
    .bg-image {
        background-attachment: scroll;
    }
}

/* Removed the overlay to make background fully visible */
.bg-image::before {
    content: none;
    /* Remove the overlay */
}

/* Top contact bar */
.top-bar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(9px);
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 30px 8px 8px;
    font-size: 14px;
    gap: 45px;
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* Hide top bar on scroll for mobile/tablet */
.top-bar.scroll-transition {
    transition: transform 0.3s ease;
}

.top-bar.hide-on-scroll {
    transform: translateY(-100%);
}

header.scroll-transition {
    transition: padding-top 0.3s ease;
}

header.hide-top-padding {
    padding-top: 0;
}

.top-bar i {
    margin-right: 6px;
    margin-top: 2px;
    margin-left: 8px;
    color: #c0c0c0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

/* Phone numbers styling */
.phone-numbers {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between phone items */
}

.phone-item {
    display: flex;
    align-items: center;
}

.phone-item i {
    margin-right: 5px;
}

.phone-numbers a {
    line-height: 1.4;
}

.top-bar a:hover {
    color: #808080;
}

/* Mobile Responsive Top Bar */
@media (max-width: 768px) {

    /* Hide top bar on index.html to prevent overlap with hero section images */
    body.index-page .top-bar {
        display: none;
    }

    .top-bar {
        flex-direction: column;
        padding: 12px 20px;
        gap: 8px;
        font-size: 13px;
        justify-content: center;
        text-align: center;
    }

    .top-bar span,
    .top-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        min-width: 200px;
    }

    /* Phone numbers styling for mobile */
    .phone-numbers {
        flex-direction: column;
        align-items: center;
        padding: 8px 12px !important;
        gap: 8px;
    }

    .phone-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .phone-item i {
        margin-right: 5px;
    }

    .phone-numbers a {
        padding: 0;
        font-size: 12px;
    }

    /* Hide phone number separator on mobile */
    .phone-numbers .separator {
        display: none !important;
    }

    .top-bar span:hover,
    .top-bar a:hover {
        background: rgba(100, 100, 100, 0.8);
        border-color: #676767;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(196, 129, 48, 0.3);
    }

    .top-bar i {
        margin-right: 8px;
        font-size: 14px;
        color: #fff;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 10px 15px;
        gap: 6px;
        font-size: 12px;
    }

    .top-bar span,
    .top-bar a {
        padding: 8px 10px;
        min-width: 180px;
        font-size: 12px;
        border-radius: 15px;
    }

    .top-bar i {
        margin-right: 6px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 8px 10px;
        gap: 5px;
    }

    .top-bar span,
    .top-bar a {
        padding: 6px 8px;
        min-width: 160px;
        font-size: 11px;
        border-radius: 12px;
    }

    .top-bar i {
        margin-right: 5px;
        font-size: 11px;
    }
}

/* Very small screens - make items stack more compactly */
@media (max-width: 360px) {
    .top-bar {
        padding: 6px 8px;
        gap: 4px;
    }

    .top-bar span,
    .top-bar a {
        padding: 5px 6px;
        min-width: 140px;
        font-size: 10px;
        border-radius: 10px;
    }

    .top-bar i {
        margin-right: 4px;
        font-size: 10px;
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    height: 70px;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #c0c0c0;
}


.quote-btn {
    background: #d3d3d3;
    color: #000000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    white-space: nowrap;
}


.quote-btn:hover {
    background: #808080;
    color: #ffffff;
}

/* Mobile menu */
.menu-toggle {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 1000;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-toggle:checked+.hamburger+ul {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .quote-btn {
        margin: 15px 0 0;
    }
}

/* Footer */

footer {
    background: rgba(130, 130, 130, 0.9);
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1px;
    justify-content: center;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

footer img {
    max-width: 280px;
    margin-bottom: 5px;
}

footer h3 {
    margin-bottom: 8px;
    color: #c0c0c0;
}

footer p,
footer a {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #676767;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    background: #bbbbbb;
    color: #fff;
    box-sizing: border-box;
}

.form-section button {
    background: #d3d3d3;
    color: #000000;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.form-section button:hover {
    background: #808080;
    color: #ffffff;
}

/* Make sure content doesn't overlap footer */
main {
    padding-bottom: 250px;
}

/* Social Media Icons */
.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #676767;
    color: #fff;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    footer {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
        text-align: center;
    }

    footer img {
        max-width: 200px;
        margin: 0 auto 15px auto;
        display: block;
    }

    footer h3 {
        margin-bottom: 12px;
        font-size: 16px;
    }

    footer p,
    footer a {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .form-section {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Adjust main padding for mobile */
    main {
        padding-bottom: 350px;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    footer {
        padding: 20px 15px;
        gap: 20px;
    }

    footer img {
        max-width: 180px;
    }

    footer h3 {
        font-size: 15px;
    }

    footer p,
    footer a {
        font-size: 13px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .form-section {
        max-width: 280px;
    }

    .form-section input,
    .form-section textarea {
        font-size: 14px;
    }

    .form-section button {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* Demo button for testing */
.demo-button {
    background: #d3d3d3;
    color: #000000;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin: 20px;
}

.demo-button:hover {
    background: #808080;
    color: #ffffff;
}

/* Modal Overlay */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Modal Content */
.quote-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.quote-modal.show .quote-modal-content {
    transform: scale(1) translateY(0);
}

/* Header */
.quote-header {
    background: linear-gradient(135deg, #686868, #333);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.quote-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quote-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d3d3d3;
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-button:hover {
    background: #808080;
    color: #ffffff;
}

/* Form Content */
.quote-form-container {
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #676767;
    background: white;
    box-shadow: 0 0 0 3px rgba(204, 12, 54, 0.1);
}

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

/* Service Selection */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-item {
    position: relative;
}

.service-item input[type="checkbox"] {
    display: none;
}

.service-item label {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
}

.service-item label i {
    margin-right: 10px;
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.service-item input[type="checkbox"]:checked+label {
    background: #676767;
    border-color: #676767;
    color: white;
}

.service-item input[type="checkbox"]:checked+label i {
    color: white;
}

.service-item label:hover {
    border-color: #676767;
    background: rgba(103, 103, 103, 0.05);
}

/* File Upload */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-label:hover {
    border-color: #676767;
    background: rgba(103, 103, 103, 0.05);
}

.file-upload-label i {
    margin-right: 10px;
    font-size: 24px;
    color: #666;
}

.file-list {
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #e9ecef;
    border-radius: 5px;
    margin-bottom: 5px;
}

.file-item .remove-file {
    background: #676767;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
}

/* Budget Range */
.budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.budget-item input[type="radio"] {
    display: none;
}

.budget-item label {
    display: block;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
}

.budget-item input[type="radio"]:checked+label {
    background: #676767;
    border-color: #676767;
    color: white;
}

.budget-item label:hover {
    border-color: #676767;
}

/* Submit Button */
.submit-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.submit-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(128, 128, 128, 0.4);
    background: #808080;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Loading State */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-modal-content {
        width: 98%;
        margin: 1%;
        max-height: 95vh;
    }

    .quote-header {
        padding: 1.5rem;
    }

    .quote-header h2 {
        font-size: 1.5rem;
    }

    .quote-form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

@media (max-width: 480px) {
    .quote-header h2 {
        font-size: 1.3rem;
    }

    .quote-form-container {
        padding: 1rem;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    color: #28a745;
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

/* Add padding-top to the hero slider on mobile view for index page only to avoid the logo/hamburger overlap */
@media (max-width: 768px) {
    body.index-page .hero-slider {
        padding-top: 100px;
        /* Significantly increase space at the top to prevent overlap with header */
        margin-top: 30px;
        /* Additional margin to create more separation */
    }

    /* Adjust slide spacing */
    .hero-slider .slide {
        padding-top: 25px;
        /* Add more space between elements */
        gap: 15px;
        /* Space between image and text */
    }

    /* Adjust slide text spacing */
    .hero-slider .slide-text {
        padding: 0 15px;
        /* Add horizontal padding */
        margin-bottom: 20px;
        /* More space below text */
        margin-top: 10px;
        /* Add space above text */
    }
}

.slides-container {
    display: flex;
    transition: transform 0.7s ease-in-out;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slide-text {
    flex: 1;
    color: #fff;
    max-width: 50%;
    margin-left: 210px;
}

.slide-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.slide-image img {
    max-width: 95%;
    /* Increased from 80% to 95% */
    max-height: 400px;
    /* Increased from 350px to 400px for better proportion */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Navigation buttons */
.hero-slider .prev,
.hero-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3a3a3a;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.hero-slider .prev {
    left: 30px;
}

.hero-slider .next {
    right: 30px;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
    background: #808080;
}

/* Mobile responsive navigation buttons */
@media (max-width: 768px) {
    .slide-image img {
        object-position: center 20%;
        max-height: 300px;
    }

    .hero-slider .prev {
        left: 15px;
    }

    .hero-slider .next {
        right: 15px;
    }

    .hero-slider .prev,
    .hero-slider .next {
        font-size: 1.5rem;
        padding: 6px 10px;
    }
}

/* About Section */
.about-company {
    padding: 80px 30px;
    background: transparent !important;
    color: #333;
    text-align: center;
}

.about-company .container {
    background: transparent !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: none !important;
}

.about-company h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #676767;
}

.founder-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    background: transparent;
}

.founder-photo-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    background-color: transparent !important;
}

.h5 {
    color: #000;
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    border: 5px solid transparent;
    z-index: 2;
    position: relative;
}

.decor-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 12px solid transparent;
    /* Increased from 8px to 12px for thicker lines */
    border-top-color: #000000;
    border-right-color: #000;
    border-radius: 50%;
    width: 230px;
    /* Reduced from 280px to 220px for shorter lines */
    height: 220px;
    /* Reduced from 280px to 220px for shorter lines */
    transform: translate(-50%, -50%);
    animation: founderSpin 8s linear infinite;
    z-index: 1;
}

.circle-red {
    width: 320px;
    /* Made larger to be outside the image - bigger than black (220px) */
    height: 320px;
    /* Made shorter vertically to create oval shape */
    border: 20px solid transparent;
    border-top-color: #c48130;
    /* 2/4 circle - top and right */
    border-right-color: #c48130;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    animation: founderSpin 6s linear infinite reverse;
    z-index: 3;
    /* Between black and gray */
}

.circle-black {
    width: 280px;
    /* Reduced from 260px - made much shorter */
    height: 280px;
    /* Reduced from 260px - made much shorter */
    border: 20px solid transparent;
    transform: translate(-50%, -50%);
    border-top-color: #000000;
    /* 1/4 circle - just top */
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    animation: founderSpin 12s linear infinite;
    z-index: 3;
    /* Outermost circle */
}

/* Text section */
.founder-text {
    max-width: 600px;
    text-align: left;
    padding-left: 20px;
    background-color: transparent !important;
}

.founder-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #4f4f4f;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
}

.founder-text span {
    display: block;
    font-size: 1rem;
    color: #383838;
    margin-bottom: 15px;
    font-weight: bold;
    font-style: italic;
}

.founder-text p {
    font-size: 0.8rem;
    line-height: 1.7;
    position: relative;
    color: #000;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
}

.founder-text p::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 7px;
    height: 60%;
    width: 13px;
    background-color: #da9408;
}

/* Our Principle Section */
.our-principle {
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.principle-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.principle-content.in-view {
    opacity: 1;
    transform: translateY(0);
}

.principle-text {
    max-width: 700px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease-out;
}

.principle-content.in-view .principle-text,
.principle-content.in-view .principle-image {
    opacity: 1;
    transform: translateX(0);
}

.our-principle h2 {
    font-size: 2rem;
    color: #676767;
    padding-top: 40px;
    font-weight: bold;
}

.principle-text .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.6;
    padding: 12px 15px;
    border-radius: 8px;
    animation: floatQuote 4s ease-in-out infinite alternate;
}

.principle-text .tagline {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #000;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 0;
}

.principle-image {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.principle-image img {
    max-width: 420px;
    /* Increased from 250px */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.principle-image img:hover {
    transform: scale(1.05) rotate(-1deg);
}

@keyframes floatQuote {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .slide {
        flex-direction: column-reverse;
        text-align: center;
    }

    .slide-text {
        max-width: 90%;
        margin-left: 0;
    }

    .slide-image img {
        max-height: 300px;
        max-width: 95%;
    }

    .slide-text h1 {
        font-size: 1.8rem;
    }

    .slide-text p {
        font-size: 0.95rem;
    }

    .hero-slider {
        height: 480px;
    }

    /* Increase height to accommodate content */

    .founder-section {
        flex-direction: column;
        text-align: center;
    }

    .founder-text {
        text-align: left !important;
        max-width: 600px !important;
        padding-left: 20px !important;
    }

    .founder-text h3 {
        color: white !important;
        font-family: 'Lexend Giga', Arial, Helvetica, sans-serif !important;
        font-weight: 900 !important;
        font-size: 2rem !important;
        text-shadow: 2px 2px 4px rgba(128, 128, 128, 0.8),
            0px 0px 6px rgba(128, 128, 128, 0.6),
            1px 1px 3px rgba(0, 0, 0, 0.5),
            0 0 1px rgba(255, 255, 255, 0.6) !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        -webkit-text-stroke: 0.45px white !important;
        letter-spacing: 0.01em !important;
    }

    .founder-text span {
        display: block !important;
        font-size: 1rem !important;
        color: #383838 !important;
        margin-bottom: 15px !important;
        font-weight: bold !important;
        font-style: italic !important;
    }

    .founder-text p {
        font-size: 0.8rem !important;
        line-height: 1.7 !important;
        position: relative !important;
        color: #000 !important;
    }

    .founder-text p::before {
        content: '' !important;
        position: absolute !important;
        left: -20px !important;
        top: 9px !important;
        height: 60% !important;
        width: 13px !important;
        background-color: #da9408 !important;
    }

    .founder-photo-wrapper {
        position: relative !important;
        width: 250px !important;
        height: 250px !important;
    }

    .founder-photo {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        object-position: center 30% !important;
        border: 5px solid transparent !important;
        z-index: 2 !important;
        position: relative !important;
    }

    .decor-circle {
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        border: 15px solid transparent !important;
        border-top-color: #000000 !important;
        /* 1/4 circle - just top */
        border-right-color: transparent !important;
        border-bottom-color: transparent !important;
        border-left-color: transparent !important;
        border-radius: 50% !important;
        width: 280px !important;
        height: 280px !important;
        animation: founderSpin 12s linear infinite !important;
        z-index: 1 !important;
    }

    .circle-red {
        width: 320px !important;
        height: 320px !important;
        border: 15px solid transparent !important;
        border-top-color: #c48130 !important;
        /* 2/4 circle - top and right */
        border-right-color: #c48130 !important;
        border-bottom-color: transparent !important;
        border-left-color: transparent !important;
        border-radius: 50% !important;
        animation: founderSpin 6s linear infinite reverse !important;
        z-index: 2 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
    }


    .principle-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .principle-text,
    .principle-image {
        max-width: 100%;
    }

    .principle-image img {
        max-width: 320px;
        /* Increased from 200px */
    }
}

@media (max-width: 768px) {
    nav ul {
        top: 60px;
    }

    .founder-text h3 {
        font-size: 1.5rem !important;
        -webkit-text-stroke: 0.35px white !important;
    }
}

@media (max-width: 576px) {
    .slide-image img {
        max-height: 220px;
        max-width: 100%;
    }

    .slide-text h1 {
        font-size: 1.4rem;
    }

    .slide-text p {
        font-size: 0.85rem;
    }

    .quote-btn {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .hero-slider {
        height: 550px;
        padding-top: 120px;
        margin-top: 40px;
    }

    /* Further increase height and padding for smaller screens */

    .founder-text h3 {
        font-size: 1.2rem !important;
        -webkit-text-stroke: 0.3px white !important;
    }
}

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

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

/* General Section Styling */
section {
    padding: 60px 20px;
    background-color: transparent;
}



/* Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #676767;
    /* Accent color */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Intro Text */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(204, 12, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(204, 12, 54, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Services Grid - 2 rows, 3 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin-bottom: 2rem;
}

/* Professional Service Cards */
.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.45) 0%, rgba(248, 248, 248, 0.4) 80%);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Animated Top Border */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #606060, #848484, #2e2e2e, #636363);
    background-size: 200% 100%;
    animation: borderSlide 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(113, 113, 113, 0.1),
        inset 0 1px 0 rgba(78, 78, 78, 0.9);
}

/* Icon Container */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #454545, #8f8f8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #353535, #949494, #000000);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: iconPulse 1.5s ease-in-out infinite;
}

.service-icon i {
    font-size: 2.2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

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

.service-card:hover .service-icon i {
    transform: rotate(10deg);
}

/* Typography */
.service-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* Animations */
@keyframes borderSlide {
    0% {
        background-position: 200% 0;
    }

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

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 25px;
        margin-bottom: 2rem
    }

    .service-card {
        padding: 40px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-icon,
    .service-icon i {
        transition: none;
    }

    .service-card::before {
        animation: none;
    }

    .service-card:hover .service-icon::before {
        animation: none;
    }
}

/* Beliefs Section */
.beliefs-section {
    background: transparent;
    text-align: center;
    padding: 60px 20px;
}

.beliefs-text {
    max-width: 850px;
    margin: 15px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Enhanced Visionaries Section */
.visionaries {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(238, 238, 238, 0.55) 0%, rgba(221, 221, 221, 0.5) 50%, rgba(237, 237, 237, 0.55) 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.visionaries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(204, 12, 54, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(204, 12, 54, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.visionaries .container {
    position: relative;
    z-index: 2;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.visionaries .intro {
    max-width: 800px;
    margin: 0 auto 70px;
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Professional Team Member Cards */
.team-member {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    padding: 40px 30px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 15px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0e0e0, #676767, #656565, #676767);
    background-size: 200% 100%;
    animation: borderSlide 3s linear infinite;
}

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

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

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(204, 12, 54, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* PROFESSIONAL ENHANCED IMAGE WRAPPER - FIXED RINGS */
.image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

/* Professional rotating rings - simplified and elegant */
.image-wrapper .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(127, 127, 127, 0.6);
    border-right: 2px solid rgba(123, 123, 123, 0.3);
    border-radius: 50%;
    animation: professionalSpin 12s linear infinite;
    z-index: 1;
}

/* Outer ring - slower rotation */
.image-wrapper .circle::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    border: 1px solid transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: professionalSpin 18s linear infinite reverse;
}

/* Inner accent ring - faster rotation */
.image-wrapper .circle::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border: 1px solid transparent;
    border-right: 1px solid rgba(83, 83, 83, 0.6);
    border-bottom: 1px solid rgba(147, 147, 147, 0.3);
    border-radius: 50%;
    animation: professionalSpin 8s linear infinite;
}

/* Enhanced Image Styling */
.image-wrapper img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    border: 4px solid #ffffff;
    position: relative;
    z-index: 3;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Hover effects for professional interaction */
.team-member:hover .image-wrapper img {
    border-color: #676767;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(166, 128, 4, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Pause animation on hover for better UX */
.team-member:hover .image-wrapper .circle,
.team-member:hover .image-wrapper .circle::before,
.team-member:hover .image-wrapper .circle::after {
    animation-play-state: paused;
}

/* Professional rotation animation - smooth and subtle */
@keyframes professionalSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Enhanced Typography */
.team-member h5 {
    font-family: 'Vectora LT Std', Arial, sans-serif !important;
    font-size: 1.5rem;
    font-weight: 900 !important;
    /* 96 Black weight */
    font-style: italic !important;
    color: #000000 !important;
    /* Black color */
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member .position {
    color: #676767;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #676767, #303030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-member .bio {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}

/* Special styling for the Director (first member) */
.team-member:first-child {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(248, 248, 248, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-member:first-child::before {
    height: 6px;
    background: linear-gradient(90deg, #676767, #232323, #676767);
}

.team-member:first-child .image-wrapper img {
    border-color: #676767;
    box-shadow:
        0 20px 40px rgba(255, 255, 255, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* All Animation Keyframes */
@keyframes founderSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Alternative: Static rings option for maximum professionalism */
.image-wrapper.static .circle,
.image-wrapper.static .circle::before,
.image-wrapper.static .circle::after {
    animation: none;
}

/* Static professional rings styling */
.image-wrapper.static .circle {
    border: 2px solid rgba(94, 94, 94, 0.3);
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
}

.image-wrapper.static .circle::before {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.image-wrapper.static .circle::after {
    border: 1px solid rgba(198, 198, 198, 0.2);
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.05) 70%);
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

    .image-wrapper .circle,
    .image-wrapper .circle::before,
    .image-wrapper .circle::after {
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 20px;
    }

    .visionaries {
        padding: 60px 15px;
    }

    .visionaries .intro {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        max-width: 100%;
    }

    .team-member {
        padding: 30px 25px;
        max-width: none;
        width: 100%;
    }

    .image-wrapper img {
        width: 170px;
        height: 170px;
        object-position: center 45%;
    }

    .image-wrapper .circle {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .visionaries .team-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .team-member {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .image-wrapper img {
        width: 150px;
        height: 150px;
        object-position: center 30%;
    }

    .image-wrapper .circle {
        width: 180px;
        height: 180px;
    }
}

/* Extra mobile rules for visionaries single column */
@media (max-width: 480px) {
    .visionaries .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .visionaries .team-member {
        padding: 20px 15px;
        margin: 0 auto;
        max-width: 350px;
    }
}

/* The A Team Section */
.a-team {
    padding: 120px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.a-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(147, 147, 147, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(121, 121, 121, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.a-team::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(196,129,48,0.02)"/><circle cx="80" cy="40" r="0.8" fill="rgba(196,129,48,0.015)"/><circle cx="40" cy="80" r="1.2" fill="rgba(196,129,48,0.02)"/><circle cx="90" cy="90" r="0.5" fill="rgba(196,129,48,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {

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

    25% {
        transform: translate(-10px, -10px) rotate(0.5deg);
    }

    50% {
        transform: translate(10px, -5px) rotate(-0.5deg);
    }

    75% {
        transform: translate(-5px, 10px) rotate(0.3deg);
    }
}

.a-team .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.a-team .team-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.a-team .team-header::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #676767, transparent);
    border-radius: 2px;
}

.a-team .team-header::after {
    content: '✦';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #676767;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.a-team h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background: #cecece;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #676767;
    display: inline-block;
}

.a-team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #676767;
    border-radius: 1px;
}

.a-team .team-subtitle {
    font-size: 1.4rem;
    color: #676767;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 35px;
    font-style: italic;
    position: relative;
}

.a-team .team-subtitle::before,
.a-team .team-subtitle::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #676767;
    opacity: 0.6;
}

.a-team .team-subtitle::before {
    left: -30px;
}

.a-team .team-subtitle::after {
    right: -30px;
}

.a-team .team-description {
    color: #5a6c7d;
    line-height: 1.9;
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    text-align: center;
}

.team-network {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
    position: relative;
}

.team-network::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 129, 48, 0.3), transparent);
}

/* Director - Featured at top center */
.team-member-circle.member-1 {
    order: 1;
    margin-bottom: 40px;
}

.team-member-circle.member-1 .member-circle {
    width: 180px;
    height: 180px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 3px 8px rgba(255, 255, 255, 0.8),
        0 0 0 5px #676767,
        0 0 0 10px rgba(184, 184, 184, 0.2),
        0 0 30px rgba(155, 155, 155, 0.3);
}

.team-member-circle.member-1 .member-initials {
    font-size: 3rem;
}

.team-member-circle.member-1 .member-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.team-member-circle.member-1 .member-title {
    font-size: 1.1rem;
    padding: 8px 20px;
    background: linear-gradient(135deg, #676767, #a6a6a6);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.team-member-circle.member-1::after {
    content: '★';
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 1.5rem;
    color: #676767;
    animation: sparkle 2s ease-in-out infinite;
}

/* Rest of team in grid layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    width: 100%;
    order: 2;
}

/* Hide member-1 from grid since it's featured above */
.team-grid .team-member-circle.member-1 {
    display: none;
}

.team-member-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-member-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.team-member-circle:hover::before {
    opacity: 1;
}

.team-member-circle:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.3);
}

.member-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 0.8),
        0 0 0 4px #676767,
        0 0 0 8px rgba(173, 173, 173, 0.2);
    position: relative;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.member-circle::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, #676767, transparent, #a6a6a6, transparent);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    animation: rotate 8s linear infinite;
}

.member-circle:hover::before {
    opacity: 0.6;
}

.member-circle::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 2px solid rgba(179, 179, 179, 0.2);
    border-top: 2px solid rgba(78, 78, 78, 0.6);
    border-right: 2px solid rgba(149, 149, 149, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotateReverse 6s linear infinite;
}

.member-circle:hover::after {
    opacity: 1;
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

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

.member-initials {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    z-index: 2;
    background: linear-gradient(135deg, #2c3e50, #676767);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.member-info {
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #676767, transparent);
    border-radius: 1px;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic !important;
    /* Made italic */
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.member-title {
    font-size: 1rem;
    color: #676767;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 15px;
    background: rgba(196, 129, 48, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(196, 129, 48, 0.2);
}

/* A Team Mobile Responsive */
@media (max-width: 768px) {
    .a-team {
        padding: 80px 20px;
    }

    .a-team .team-header {
        margin-bottom: 60px;
    }

    .a-team h2 {
        font-size: 2.8rem;
        letter-spacing: 2px;
        padding: 15px 30px;
    }

    .a-team .team-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .a-team .team-subtitle::before,
    .a-team .team-subtitle::after {
        display: none;
    }

    .a-team .team-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .team-network {
        gap: 40px;
        margin-top: 50px;
    }

    /* Director styling for mobile */
    .team-member-circle.member-1 {
        margin-bottom: 20px;
    }

    .team-member-circle.member-1 .member-circle {
        width: 140px;
        height: 140px;
    }

    .team-member-circle.member-1 .member-initials {
        font-size: 2.5rem;
    }

    .team-member-circle.member-1 .member-name {
        font-size: 1.2rem;
    }

    .team-member-circle.member-1 .member-title {
        font-size: 1rem;
        padding: 6px 16px;
    }

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

    .team-member-circle {
        padding: 25px 15px;
    }

    .member-circle {
        width: 110px;
        height: 110px;
        margin-bottom: 20px;
    }

    .member-initials {
        font-size: 2rem;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-title {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .a-team {
        padding: 60px 15px;
    }

    .a-team .team-header::before {
        width: 80px;
    }

    .a-team h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        padding: 12px 25px;
    }

    .a-team .team-subtitle {
        font-size: 1rem;
    }

    .a-team .team-description {
        font-size: 0.95rem;
    }

    .team-network {
        gap: 30px;
    }

    /* Director styling for small mobile */
    .team-member-circle.member-1 .member-circle {
        width: 120px;
        height: 120px;
    }

    .team-member-circle.member-1 .member-initials {
        font-size: 2.2rem;
    }

    .team-member-circle.member-1 .member-name {
        font-size: 1.1rem;
    }

    .team-member-circle.member-1 .member-title {
        font-size: 0.95rem;
        padding: 5px 14px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-member-circle {
        padding: 20px 10px;
    }

    .member-circle {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08),
            inset 0 1px 3px rgba(255, 255, 255, 0.8),
            0 0 0 3px #676767,
            0 0 0 6px rgba(196, 129, 48, 0.15);
    }

    .member-initials {
        font-size: 1.6rem;
    }

    .member-name {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .member-title {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

@media (max-width: 320px) {
    .a-team h2 {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    /* Director for very small screens */
    .team-member-circle.member-1 .member-circle {
        width: 100px;
        height: 100px;
    }

    .team-member-circle.member-1 .member-initials {
        font-size: 1.8rem;
    }

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

    .member-circle {
        width: 80px;
        height: 80px;
    }

    .member-initials {
        font-size: 1.4rem;
    }
}

/* Prestigious Clients Section */
.prestigious-clients {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.75) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(248, 249, 250, 0.75) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.prestigious-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(204, 12, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(204, 12, 54, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.prestigious-clients .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.clients-header {
    text-align: center;
    margin-bottom: 80px;
}

.clients-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.clients-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #676767, #888888);
    border-radius: 2px;
}

/* Copyright section - full width at bottom */
.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px 30px 15px 30px;
    /* Increased padding */
    margin-top: 25px;
    /* Increased margin */
    border-top: 1px solid #676767;
    font-size: 12px;
    color: #373737;
    background: rgba(112, 112, 112, 0.95);
    width: 100%;
    box-sizing: border-box;
}

.footer-copyright .copyright-symbol {
    color: #c89b09;
    font-weight: bold;
}

.footer-copyright .brand-name {
    color: #ccc;
    font-weight: 600;
}

.footer-copyright .separator {
    color: #c89b09;
    margin: 0 8px;
}

.footer-copyright .developer-credit {
    color: #363636;
    font-style: italic;
}

.clients-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Client Slider Container */
.clients-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 40px 0;
}

/* Sliding Track */
.clients-track {
    display: flex;
    animation: slideClients 30s linear infinite;
    gap: 60px;
    align-items: center;
}

/* Individual Client Cards */
.client-card {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 12, 54, 0.1);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #676767, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(204, 12, 54, 0.1);
}

.client-card:hover::before {
    opacity: 1;
}

/* Client Logo Styling */
.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

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

/* Duplicate track for seamless loop */
.clients-track-duplicate {
    display: flex;
    animation: slideClients 30s linear infinite;
    gap: 60px;
    align-items: center;
}

/* Sliding Animation */
@keyframes slideClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.clients-slider:hover .clients-track,
.clients-slider:hover .clients-track-duplicate {
    animation-play-state: paused;
}

/* Navigation Dots */
.clients-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(183, 142, 6, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: dotPulse 2s ease-in-out infinite alternate;
}

.nav-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.nav-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dotPulse {
    0% {
        background: rgba(138, 100, 6, 0.3);
    }

    100% {
        background: rgba(113, 113, 113, 0.8);
    }
}

/* Stats Counter */
.clients-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #676767;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .clients-track {
        gap: 40px;
    }

    .client-card {
        width: 180px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .prestigious-clients {
        padding: 60px 15px;
    }

    .clients-header h2 {
        font-size: 2rem;
    }

    .clients-header p {
        font-size: 1rem;
    }

    .clients-track {
        gap: 30px;
    }

    .client-card {
        width: 160px;
        height: 90px;
    }

    .clients-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .client-card {
        width: 140px;
        height: 80px;
    }

    .clients-stats {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .clients-track,
    .clients-track-duplicate,
    .nav-dot {
        animation: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #333333 0%, #676767 100%);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
}

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

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 320px;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(89, 89, 89, 0.9), rgba(88, 88, 88, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .image-overlay {
    opacity: 1;
}

.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.news-card:hover .article-content {
    transform: translateY(0);
}

.article-date {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
    font-weight: 500;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #676767;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-section {
        padding: 40px 15px;
    }

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

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-card {
        height: 280px;
    }

    .article-content {
        padding: 25px 20px;
    }

    .article-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .news-card {
        height: 260px;
    }

    .article-content {
        padding: 20px 15px;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
    }
}

/* Touch device support */
@media (hover: none) and (pointer: coarse) {
    .news-card.touch-active .image-overlay {
        opacity: 1;
    }

    .news-card.touch-active .article-content {
        transform: translateY(0);
    }
}

/* Animation class for intersection observer */
.news-card.animate {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.button-container {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.read-more-btn {
    position: relative;
    background: #c9c9c9;
    color: rgb(88, 88, 88);
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    z-index: 1;
}

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

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

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(128, 128, 128, 0.4);
    background: #808080;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover::after {
    width: 300px;
    height: 300px;
}

.read-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(74, 74, 74, 0.6);
}

.btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.read-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Particle effect */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-float 1s ease-out forwards;
}

@keyframes particle-float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--random-x), var(--random-y)) scale(0);
    }
}

/* Glow effect */
.read-more-btn.glowing {
    animation: glow-pulse 1.5s infinite alternate;
}

@keyframes glow-pulse {
    from {
        box-shadow: 0 8px 25px rgba(204, 159, 12, 0.3), 0 0 20px rgba(204, 12, 54, 0.1);
    }

    to {
        box-shadow: 0 8px 25px rgba(171, 141, 9, 0.5), 0 0 30px rgba(204, 12, 54, 0.3);
    }
}

/* Loading state */
.read-more-btn.loading {
    pointer-events: none;
    background: linear-gradient(45deg, #95a5a6, #bdc3c7);
}

.read-more-btn.loading .btn-text {
    opacity: 0.7;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

.read-more-btn.loading .spinner {
    display: block;
}

.read-more-btn.loading .arrow {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.read-more-btn.success {
    background: linear-gradient(45deg, #00b894, #00cec9);
}

.checkmark {
    display: none;
    font-size: 16px;
}

.read-more-btn.success .checkmark {
    display: block;
}

.read-more-btn.success .arrow {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .read-more-btn {
        padding: 16px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .read-more-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Main Content */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.services-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('im viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23cc0c36" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23000000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 0;
}

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

.services-hero h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #676767;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem
}

.service-category {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-header {
    padding: 2rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.service-header:hover {
    background: linear-gradient(135deg, #676767 0%, #000 100%);
}

.service-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-header .icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-header p {
    opacity: 0.9;
    margin-bottom: 1rem;
}


/* Service Content */
.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.service-category.expanded .service-content {
    max-height: 0px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 0px;
}


.service-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #676767, #000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-item-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-item-image .placeholder-icon {
    opacity: 0.3;
}

.service-item h3 {
    color: #000;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: #676767;
    font-weight: bold;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

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

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: #676767;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    background: #676767;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(115, 86, 6, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #676767;
}

.cta-btn.secondary:hover {
    background: #676767;
    color: white;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    /* in case padding is adding extra space */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Services Grid */
    .services-grid {
        gap: 1rem;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-header h2 {
        font-size: 1.5rem;
        gap: 0.5rem;
    }

    .service-header .icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .service-items {
        grid-template-columns: 1fr;
        /* single column on mobile */
        gap: 15px;
        margin-top: 15px;
    }

    .service-item {
        padding: 1rem;
    }

    .service-item-image {
        height: 150px;
        font-size: 2.5rem;
    }

    .service-item h3 {
        font-size: 1.1rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .services-cta {
        margin-top: 2rem
    }

    .services-cta h2 {
        font-size: 2rem;
    }

    .services-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-btn.secondary {
        padding: 0.8rem 1.5rem;
    }
}

/* Extra small devices (<480px) */
@media (max-width: 480px) {
    .service-header {
        padding: 1rem;
    }

    .service-header h2 {
        font-size: 1.2rem;
    }

    .service-header .icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .service-item-image {
        height: 120px;
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1rem;
    }

    .service-item p {
        font-size: 0.85rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .services-cta h2 {
        font-size: 1.7rem;
    }

    .services-cta p {
        font-size: 0.95rem;
    }
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

#scrollToTop.show {
    opacity: 1;
}

#scrollToTop i {
    position: absolute;
    font-size: 1.2rem;
    color: #676767;
    pointer-events: none;
}

.progress-circle {
    transform: rotate(-90deg);
    position: absolute;
}

.progress-circle circle {
    transition: stroke-dashoffset 0.3s linear;
}


/* Base submenu styling */
nav ul li {
    position: relative;
}

nav ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    z-index: 1000;
}

nav ul li .submenu li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

nav ul li .submenu li a:hover {
    background: #f0f0f0;
}

/* Desktop: show on hover */
@media (min-width: 768px) {
    nav ul li:hover>.submenu {
        display: block;
    }

    nav ul li .submenu-label,
    nav ul li #submenu-toggle {
        display: none;
        /* hide toggle on desktop */
    }
}

/* Mobile: expand on click */
@media (max-width: 767px) {
    nav ul li {
        position: static;
        /* keep inside flow */
    }

    nav ul li .submenu {
        position: static;
        border: none;
    }

    nav ul li #submenu-toggle {
        display: none;
    }

    nav ul li .submenu-label {
        cursor: pointer;
        padding-left: 10px;
        font-size: 14px;
        color: #666;
    }

    nav ul li #submenu-toggle:checked~.submenu {
        display: block;
    }
}