/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    opacity: 1;
    transition: opacity 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.bg-brown {
    background-color: #8B5A2B;
}

.bg-brown-light {
    background-color: #A67C52;
}

/* Logo Styles */
.logo-img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

/* Main Logo Styles */
.main-logo-section {
    background-color: #0b2d4a;
    background-image: linear-gradient(135deg, #0b2d4a 0%, #000000 100%);
    padding: 40px 0;
    border-bottom: 5px solid #f0ad4e;
}

.main-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

/* Service Cards */
.service-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

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

.service-title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-text {
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-btn {
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #fff;
    color: #333;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9000 !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 15px;
}

.navbar-nav .nav-item.active .nav-link {
    color: #f0ad4e;
}

/* Dropdown Menu Fix */
.dropdown-menu {
    z-index: 9999 !important;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    position: absolute !important;
    display: none;
}

.dropdown-menu.show {
    display: block !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #f0ad4e;
}

/* Testimonials */
.satisfaction-section {
    padding: 60px 0;
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 18px;
}

/* Services */
.services-section {
    padding: 60px 0;
}

.services-section .card {
    overflow: hidden;
    border-radius: 8px;
}

.services-section .card img {
    transition: transform 0.3s ease;
}

.services-section .card:hover img {
    transform: scale(1.1);
}

/* Vision & Mission */
.vision-mission-section {
    padding: 60px 0;
}

.icon-box {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.icon-box:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 60px 0;
}

/* Footer */
footer {
    background-color: #222;
}

footer h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f0ad4e;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: #f0ad4e;
}

/* Form Styles */
.form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.form-control:focus {
    box-shadow: none;
    border-color: #f0ad4e;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .satisfaction-section,
    .services-section,
    .vision-mission-section,
    .about-section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-btn i {
        margin: 0;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .main-logo-img {
        max-width: 150px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    /* Navbar dropdown fix for mobile */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding-left: 15px;
    }
    
    .navbar-nav .dropdown-item {
        color: rgba(255,255,255,.5);
        padding: 8px 15px;
    }
    
    .navbar-nav .dropdown-item:hover {
        color: #fff;
        background-color: transparent;
    }
} 