/* Custom Styles */

:root{
    --primary-color: #d13d37;
    --secondary-color: #3498db;
    --text-color: #2c3e50;
}
body {
    font-family: 'Poppins', sans-serif;
}

.navbar{
    height: 80px;
}


.color-primary{
    color: var(--primary-color);
}

.bg-primary{
    background-color: var(--primary-color) !important;
}

.color-secondary{
    color: var(--secondary-color);
}

.color-text{
    color: var(--text-color);
}


.btn-primary{
    background-color: var(--primary-color);
    color: #fff;
    border:none;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.whatsapp-button{
    background-color: #25D366;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-nav{
    margin-left: auto;
}

.navbar-nav .nav-link{
    padding: 0 30px;
    margin: 0 10px; 
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover{
    color: var(--secondary-color);
    margin: 0 10px;
    transform: translateX(-5px);
}   


.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo{
    width: 150px;
    height: auto;
    object-fit: contain;
}

.carousel{
    height: 600px;
}

.carousel-item{
    height: 600px;
}

.carousel-item img{
    height: 600px;
    object-fit: cover;
}

.carousel-control-prev, .carousel-control-next{
    z-index: 5;
}


/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;

}

.hero-content{
    z-index: 3;
}

.hero-content h1{
    font-size: 5rem;
    line-height: .5;
    margin:0;
    padding:0;
    text-align: left;
}

.hero-content h3{
    width: 80%;
    font-size: 2rem;
    line-height: 1;
    margin:0;
    padding:0;
    text-align: left;
}

.hero-image{
    position: absolute;
    right: 5%;
    width: 50%;
    height: 100%;
    z-index: 4;
    animation: slide-in 10s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes slide-in {
    0% {
        transform: translateX(100%);
    }
    10% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-image img{
    width: 100%;
    height: 80%;
    object-fit: contain;
    object-position: bottom;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
}

/* Feature Cards */
.feature-card, .service-card, .additional-service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 250px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border:0;
    transition: all 0.3s ease;
}

.feature-card:hover, .service-card:hover, .additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(253, 13, 13, 0.25) !important;
}

.feature-icon, .service-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.feature-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Stats Overlay */
.stats-overlay {
    background: rgba(0, 0, 0, 0.7);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.stats-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.feature-icon, .service-icon {
    animation: float 6s ease-in-out infinite;
}

/* Footer */


.footer-logo{
    width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-content {
    color: white;
}

.whatsapp{
    position: fixed;
    bottom: 40px;
    left: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.whatsapp-inner{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.whatsapp-inner img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.whatsapp-inner img:hover{
    transform: translateY(-5px) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        padding: 1.5rem;
        width: 100%;
        height: 60%;
    }

    .hero-content h1{
        width: 100%;
        font-size: 2rem !important;
        line-height: .5;
        white-space: nowrap;
    }

    .hero-content h3{
        width: 80%;
        font-size: 1rem !important;
        line-height: 1.2;
    }
    
    .about-image {
        margin-top: 2rem;
    }

    .navbar-collapse{
        background-color: white;
        padding: 20px;
    }
    .navbar-collapse .nav-link{
        margin: 10px;
        color: var(--primary-color);
        font-size: 1rem;    
    }
    .navbar-collapse .nav-link:hover{
        color: var(--primary-color);
    }

    .navbar-toggler{
        background-color: var(--primary-color);
        border-radius: 5px;
        padding: 8px;
        border:none;
    }

    
.hero-image{
    position: absolute;
    right: 5%;
    width: 100%;
    height: 100%;
    z-index: 4;
    animation: slide-in 10s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

@keyframes slide-in {
    0% {
        transform: translateX(100%);
    }
    10% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-image img{
    width: 100%;
    height: 55%;
    object-fit: contain;
    object-position: bottom;
}

    
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-overlay {
        display: none;
    }
}
