* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Section Styles */
#enquiry {
    padding: 0;
    margin: 0;
    position: relative;
}

/* Owl Carousel Custom Styles */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-item {
    position: relative;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 0;
}

/* Overlay Container */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 5;
}

/* Logo Styles - Fixed for proper sizing */
.pest-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    margin-right: 77%;
}

.pest-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: transform 0.3s ease;
    margin-top:-149px;
}

/* Hover effect for logo */
/*.pest-logo:hover img {*/
/* transform: scale(1.05);*/
/*}*/

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Text Overlay Styles */
.slide-text {
    color: white;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);*/
}

.slide-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8B1538 0%, #B91D47 50%, #A91E4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.slide-cta {
    background: goldenrod;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Navigation Buttons */
.owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 107, 0.8) !important;
    color: white !important;
    border: none !important;
    padding: 15px 20px !important;
    border-radius: 50%;
    font-size: 24px !important;
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 10;
    cursor: pointer;
    line-height: 1;
}

.owl-nav button:hover {
    background: rgba(255, 107, 107, 1) !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-nav .owl-prev {
    left: 20px;
}

.owl-nav .owl-next {
    right: 20px;
}

.owl-nav button span {
    font-size: 24px;
}

/* Dots Navigation */
.owl-dots {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-dot {
    display: inline-block;
    margin: 0 8px;
    cursor: pointer;
}

.owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.owl-dot.active span,
.owl-dot:hover span {
    background: rgba(255, 107, 107, 0.9);
    border-color: rgba(255, 107, 107, 1);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .owl-carousel .owl-item img {
        height: 400px;
    }

    .pest-logo {
        width: 100px;
        height: 100px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-subtitle {
        font-size: 1.4rem;
    }

    .owl-nav button {
        padding: 18px 24px !important;
        font-size: 28px !important;
    }

    .owl-nav .owl-prev {
        left: 30px;
    }

    .owl-nav .owl-next {
        right: 30px;
    }
}

@media (min-width: 1024px) {
    .owl-carousel .owl-item img {
        height: 500px;
    }

    .pest-logo {
        width: 120px;
        height: 120px;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .slide-subtitle {
        font-size: 1.6rem;
    }

    .owl-nav button {
        padding: 20px 28px !important;
        font-size: 32px !important;
    }

    .owl-nav .owl-prev {
        left: 40px;
    }

    .owl-nav .owl-next {
        right: 40px;
    }
}

@media (min-width: 1440px) {
    .owl-carousel .owl-item img {
        height: 600px;
    }

    .pest-logo {
        width: 20%;
        height: 98%;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .owl-nav button {
        padding: 20px !important;
        font-size: 26px !important;
    }

    .owl-dots {
        bottom: 30px;
        display:flex;
        margin-bottom:16px;
    }

    .owl-dot {
        margin: 0 12px;
    }

    .owl-dot span {
        width: 16px;
        height: 16px;
    }
}

/* Ensure images are responsive */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Loading state */
.owl-carousel:not(.owl-loaded) {
    display: block;
    min-height: 300px;
    background: #f0f0f0;
}

/* Smooth transitions */
.owl-item {
    transition: opacity 0.3s ease;
}

/* Fix for potential image loading issues */
.owl-carousel .owl-item img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Loading spinner for logo */
.pest-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    border-top: 3px solid rgba(255, 107, 107, 0.8);
    border-radius: 50%;
    animation: logoSpin 1s linear infinite;
    z-index: 1;
}

.pest-logo.loaded::before {
    display: none;
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.ggg img {
    margin: -1px 23px 0px -1180;
    margin-top:100px;
}