/*
Theme Name: Diamond Architects
Description: Professional WordPress theme for Diamond Architects - Modern architectural design portfolio and business website
Version: 1.0
Author: Diamond Architects Team
Text Domain: diamond-architects
*/

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

body {
    font-family: 'Poppins', 'Libre Franklin', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 0.95rem;
    /* padding-top: -50px; */
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Color Variables - Based on Diamond Architects Logo Green */
:root {
    --primary-color: #059669;
    --secondary-color: #d69e2e;
    --accent-color: #10b981;
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
}

/* Font size adjustments */
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { font-size: 0.95rem; }

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header Top Bar */
.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    min-height: 44px;
}

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

/* Welcome Text */
.welcome-text {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

/* Header Social Links */
.header-social {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.header-top .social-links {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-top .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(244, 242, 242, 0.878);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    line-height: 1;
}

.header-top .social-links a:hover {
    background: hsla(0, 0%, 97%, 0.845);
    transform: translateY(-1px);
}

/* Social Icon Colors - Show original brand colors always, change intensity on hover */
.social-links a i.fa-facebook-f,
.social-links a i.fa-facebook {
    color: #1877f2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-facebook-f,
.social-links a:hover i.fa-facebook {
    opacity: 1;
}

.social-links a i.fa-tiktok,
.social-links a i.fa-tiktok {
    color: #000000;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-tiktok {
    opacity: 1;
}

.social-links a i.fa-instagram {
    color: #e4405f;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-instagram {
    opacity: 1;
}

.social-links a i.fa-linkedin-in,
.social-links a i.fa-linkedin {
    color: #0077b5;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-linkedin-in,
.social-links a:hover i.fa-linkedin {
    opacity: 1;
}

.social-links a i.fa-youtube {
    color: #ff0000;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-youtube {
    opacity: 1;
}

.social-links a i.fa-whatsapp {
    color: #25d366;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-whatsapp {
    opacity: 1;
}

.social-links a i.fa-pinterest {
    color: #bd081c;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-pinterest {
    opacity: 1;
}

.social-links a i.fa-telegram {
    color: #0088cc;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover i.fa-telegram {
    opacity: 1;
}

/* Footer-specific Social Icons - Only affect footer social icons */
.main-footer .footer-social a i.fa-facebook-f,
.main-footer .footer-social a i.fa-facebook {
    color: #1877f2 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-facebook-f,
.main-footer .footer-social a:hover i.fa-facebook {
    opacity: 1;
}

.main-footer .footer-social a i.fa-tiktok {
    color: #000000 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-tiktok {
    opacity: 1;
}

.main-footer .footer-social a i.fa-instagram {
    color: #e4405f !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-instagram {
    opacity: 1;
}

.main-footer .footer-social a i.fa-linkedin-in,
.main-footer .footer-social a i.fa-linkedin {
    color: #0077b5 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-linkedin-in,
.main-footer .footer-social a:hover i.fa-linkedin {
    opacity: 1;
}

.main-footer .footer-social a i.fa-youtube {
    color: #ff0000 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-youtube {
    opacity: 1;
}

.main-footer .footer-social a i.fa-whatsapp {
    color: #25d366 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-whatsapp {
    opacity: 1;
}

.main-footer .footer-social a i.fa-pinterest {
    color: #bd081c !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-pinterest {
    opacity: 1;
}

.main-footer .footer-social a i.fa-telegram {
    color: #0088cc !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .footer-social a:hover i.fa-telegram {
    opacity: 1;
}

/* Footer Widget Social Icons */
.main-footer .social-icons a i.fa-facebook-f,
.main-footer .social-icons a i.fa-facebook {
    color: #1877f2 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-facebook-f,
.main-footer .social-icons a:hover i.fa-facebook {
    opacity: 1;
}

.main-footer .social-icons a i.fa-tiktok {
    color: #000000 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-tiktok {
    opacity: 1;
}

.main-footer .social-icons a i.fa-instagram {
    color: #e4405f !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-instagram {
    opacity: 1;
}

.main-footer .social-icons a i.fa-linkedin-in,
.main-footer .social-icons a i.fa-linkedin {
    color: #0077b5 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-linkedin-in,
.main-footer .social-icons a:hover i.fa-linkedin {
    opacity: 1;
}

.main-footer .social-icons a i.fa-youtube {
    color: #ff0000 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-youtube {
    opacity: 1;
}

.main-footer .social-icons a i.fa-whatsapp {
    color: #25d366 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-whatsapp {
    opacity: 1;
}

.main-footer .social-icons a i.fa-pinterest {
    color: #bd081c !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-pinterest {
    opacity: 1;
}

.main-footer .social-icons a i.fa-telegram {
    color: #0088cc !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.main-footer .social-icons a:hover i.fa-telegram {
    opacity: 1;
}

/* Footer Styles */
.main-footer {
    background: #2c3e50;
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-widget p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
}

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.contact-item i {
    margin-right: 12px;
    margin-top: 3px;
    color: var(--secondary-color);
    width: 16px;
    flex-shrink: 0;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    margin-top: 25px;
}

.social-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-contact-form .form-group {
    margin-bottom: 15px;
}

.footer-contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #34495e;
    border-radius: 5px;
    background: #34495e;
    color: var(--white);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.footer-contact-form .form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: #3d566e;
}

.footer-contact-form .form-control::placeholder {
    color: #95a5a6;
}

.footer-contact-form select.form-control {
    cursor: pointer;
}

.footer-contact-form .btn {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.footer-contact-form .btn:hover {
    background: #d68910;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.copyright p {
    color: #95a5a6;
    font-size: 14px;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

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

.reviews-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.reviews-rating {
    text-align: center;
}

.reviews-rating h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.star-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-count {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-text {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-color);
}

.reviewer-details h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.review-time {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-card .star-rating {
    justify-content: flex-start;
    margin-bottom: 15px;
}

.review-card .star-rating i {
    font-size: 1rem;
    color: #ffc107;
}

.review-text {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .reviews-meta {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-meta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .google-text {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-info {
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-footer {
        padding: 40px 0 0;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-widget h3 {
        font-size: 1.2rem;
    }
}

/* Header Main */
.header-main {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.main-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid var(--gray-200);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    padding: 12px 20px;
    display: block;
    color: var(--gray-700);
    font-weight: 400;
}

.dropdown a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

/* CTA Button */
.header-cta {
    margin-left: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    color: white;
}

.cta-button i {
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile menu toggle active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile menu active state */
.main-navigation.active {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    max-height: 80vh;
    overflow-y: auto;
}

.main-navigation.active .nav-menu {
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.main-navigation.active .nav-menu > li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
}

.main-navigation.active .nav-menu > li > a {
    padding: 15px 20px;
    display: block;
}

.main-navigation.active .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    display: none;
    box-shadow: none;
    background: var(--gray-100);
    padding: 0;
    border-radius: 0;
}

.main-navigation.active .nav-menu li.dropdown-open .dropdown {
    display: block;
}

.main-navigation.active .dropdown li {
    border-bottom: none;
    border-top: 1px solid var(--gray-200);
}

.main-navigation.active .dropdown a {
    padding: 12px 30px;
}

/* Body state when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero/Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Section Styles */
.section {
    margin-top: 0px;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light-color);
}

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

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-card .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #e2f8f0 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23059669" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: 1;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.15);
    border-color: var(--primary-color);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover h3,
.process-step:hover p {
    color: white;
}

.process-step .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.process-step .step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

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

.process-step h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    background: var(--white);
    /* padding: 0px; */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.client-logo img {
    max-height: 180px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--primary-color);
    color: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.why-choose-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list li:before {
    content: "✅";
    margin-right: 15px;
    font-size: 1.2rem;
}

.why-choose-image {
    text-align: center;
}

.why-choose-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-widget p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-widget ul li a {
    color: var(--gray-300);
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-400);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    color: var(--white);
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float .icon {
    font-size: 1.5rem;
}

.whatsapp-float .text {
    font-weight: 600;
    color: var(--white);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .header-top .container {
        gap: 15px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .welcome-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .col-3, .col-4, .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .whatsapp-float .text {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Page Specific Styles */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 150px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    color: var(--gray-300);
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

/* Content Styles */
.main-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.sidebar {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; } 

/* Mobile Menu Enhancements */
@media (max-width: 992px) {
    /* Ensure the mobile toggle is properly displayed */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Mobile Header Adjustments */
    .header-main {
        position: relative;
        z-index: 1000;
    }
    
    /* Mobile Navigation */
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-menu > li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu > li > a {
        padding: 15px 20px;
        display: block;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        display: none;
        box-shadow: none;
        background: var(--gray-100);
        padding: 0;
        border-radius: 0;
    }
    
    .nav-menu li.dropdown-open .dropdown {
        display: block;
    }
    
    .dropdown li {
        border-bottom: none;
        border-top: 1px solid var(--gray-200);
    }
    
    .dropdown a {
        padding: 12px 30px;
    }
    
    /* Body state when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
} 