/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #53746c;
    --secondary-color: #d77e5e;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #777777;
    --bg-light: #f9f9f9;
    --bg-dark: #2a3b37;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header.light h2 {
    color: var(--text-light);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(215, 126, 94, 0.3);
}

.btn:hover {
    background-color: #c16a4b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(215, 126, 94, 0.4);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    transition: var(--transition);
}

header.scrolled .logo img {
    max-height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--text-light);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--secondary-color);
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(83, 116, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s, color 0.3s;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* ===== INVESTMENT SECTION ===== */
.invest {
    background-color: var(--primary-color);
    color: var(--text-light);
    background-image: linear-gradient(135deg, rgba(83, 116, 108, 0.95) 0%, rgba(42, 59, 55, 0.95) 100%), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.invest-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.invest-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.invest-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.invest-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.invest-card h3 {
    margin-bottom: 15px;
}

.cta-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.cta-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-container p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--secondary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(83, 116, 108, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: 0.4s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f5f5f5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .services-grid,
    .invest-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #53746c;
    --secondary-color: #d77e5e;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #777777;
    --bg-light: #f9f9f9;
    --bg-dark: #2a3b37;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header.light h2 {
    color: var(--text-light);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(215, 126, 94, 0.3);
}

.btn:hover {
    background-color: #c16a4b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(215, 126, 94, 0.4);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
    /* Fancy Top Bar Styles */
    .fancy-top-bar {
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 70%, var(--secondary-color) 100%);
        padding: 12px 0;
        color: var(--text-light);
        position: relative;
        z-index: 1001;
    }
    
    .fancy-top-bar::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 35%;
        height: 100%;
        background-color: var(--secondary-color);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: -1;
    }
    
    .top-bar-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-contact-wrapper {
        display: flex;
        align-items: center;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
    }
    
    .contact-item i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    .contact-divider {
        width: 1px;
        height: 20px;
        background-color: rgba(255, 255, 255, 0.3);
        margin: 0 15px;
    }
    
    .top-social-wrapper {
        display: flex;
        align-items: center;
    }
    
    .top-social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--text-light);
        margin-left: 8px;
        transition: all 0.3s ease;
    }
    
    .top-social-icon:hover {
        background-color: white;
        color: var(--secondary-color);
        transform: translateY(-3px);
    }
    
    /* Modern Header Styles */
    .modern-header {
        background-color: white;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .modern-header.scrolled {
        padding: 10px 0;
    }
    
    .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo img {
        max-height: 55px;
        transition: all 0.3s ease;
    }
    
    .modern-header.scrolled .logo img {
        max-height: 45px;
    }
    
    .main-navigation {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .nav-menu {
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-menu > li {
        position: relative;
        margin: 0 5px;
    }
    
    .nav-menu > li > a {
        font-weight: 600;
        padding: 10px 15px;
        color: var(--text-dark);
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-menu > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        color: var(--secondary-color);
    }
    
    .nav-menu > li > a:hover::after,
    .nav-menu > li > a.active::after {
        width: 70%;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        display: block;
        color: var(--text-dark);
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(83, 116, 108, 0.1);
        color: var(--primary-color);
        padding-left: 25px;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(83, 116, 108, 0.1);
        color: var(--primary-color);
        margin-right: 15px;
        transition: all 0.3s ease;
    }
    
    .action-icon:hover {
        background-color: var(--primary-color);
        color: white;
    }
    
    .header-btn {
        padding: 10px 20px;
        background: linear-gradient(45deg, var(--secondary-color), #e69875);
        border-radius: 30px;
        color: white;
        font-weight: 600;
        border: none;
        box-shadow: 0 5px 15px rgba(215, 126, 94, 0.3);
        transition: all 0.3s ease;
    }
    
    .header-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(215, 126, 94, 0.4);
    }
    
    .menu-toggle {
        display: none;
        flex-direction: column;
        width: 30px;
        cursor: pointer;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--primary-color);
        margin-bottom: 5px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .nav-menu > li > a {
            padding: 10px 10px;
        }
    }
    
    @media (max-width: 992px) {
        .fancy-top-bar::before {
            display: none;
        }
        
        .fancy-top-bar {
            background: var(--primary-color);
        }
        
        .top-bar-wrapper {
            flex-direction: column;
            align-items: center;
        }
        
        .top-contact-wrapper {
            margin-bottom: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .contact-item {
            margin: 5px 0;
        }
        
        .contact-divider {
            display: none;
        }
        
        .main-navigation {
            justify-content: flex-end;
        }
        
        .menu-toggle {
            display: flex;
        }
        
        .nav-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100%;
            background-color: white;
            flex-direction: column;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            padding: 80px 20px 30px;
            transition: all 0.4s ease;
            overflow-y: auto;
            z-index: 1001;
        }
        
        .nav-menu.active {
            right: 0;
        }
        
        .nav-menu > li {
            margin: 0;
            width: 100%;
        }
        
        .nav-menu > li > a {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .nav-menu > li > a::after {
            display: none;
        }
        
        .dropdown-menu {
            position: static;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            max-height: 0;
            overflow: hidden;
            padding: 0;
            transition: max-height 0.3s ease;
        }
        
        .dropdown.active .dropdown-menu {
            max-height: 500px;
        }
        
        .dropdown-menu a {
            padding-left: 15px;
        }
        
        .header-actions {
            position: relative;
            z-index: 1002;
        }
        
        .action-icon {
            margin-right: 10px;
        }
        
        .header-btn {
            padding: 8px 15px;
            font-size: 14px;
        }
    }
    
    @media (max-width: 576px) {
        .top-contact-wrapper {
            flex-direction: column;
            text-align: center;
        }
        
        .contact-item {
            justify-content: center;
            margin-bottom: 8px;
        }
        
        .header-btn {
            display: none;
        }
    }

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--text-light);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--secondary-color);
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(83, 116, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s, color 0.3s;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* ===== INVESTMENT SECTION ===== */
.invest {
    background-color: var(--primary-color);
    color: var(--text-light);
    background-image: linear-gradient(135deg, rgba(83, 116, 108, 0.95) 0%, rgba(42, 59, 55, 0.95) 100%), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.invest-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.invest-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.invest-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.invest-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.invest-card h3 {
    margin-bottom: 15px;
}

.cta-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.cta-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-container p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--secondary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(83, 116, 108, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ===== SERVICE PAGE STYLES ===== */
.page-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.banner-content {
    color: var(--text-light);
    text-align: center;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-about {
    padding: 80px 0;
}

.service-about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-about-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-about-image img {
    transition: transform 0.5s ease;
}

.service-about-image:hover img {
    transform: scale(1.05);
}

.service-about-text {
    flex: 1;
}

.service-about-text h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    font-size: 24px;
    color: var(--secondary-color);
}

.feature h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.services-offered {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.service-detail-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(83, 116, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background-color: var(--primary-color);
    color: white;
}

.service-detail-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(215, 126, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--secondary-color);
    color: white;
}

.team {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .service-about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: 0.4s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f5f5f5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .services-grid,
    .invest-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
/* Make sure the menu toggle is visible on mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        width: 30px;
        cursor: pointer;
        z-index: 1005;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--primary-color);
        margin-bottom: 5px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Navigation menu positioning and transition */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 30px;
        transition: all 0.4s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    /* When active class is applied, slide in from right */
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        width: 100%;
    }
    
    /* Adjust dropdown handling on mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
        background-color: #f5f5f5;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
}
