/* Navbar Overlay Styles */
.navbar {
    position: fixed !important;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 75% !important;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.95) !important;
    backdrop-filter: blur(10px);
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 10px;
    background: rgba(248, 249, 250, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider li {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(2px);
}

.slider1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slider2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slider3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slidertext {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.sliderimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.calltoaction {
    /*background: #e5655d;*/
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 101, 93, 0.3);
    z-index: 2;
}

.calltoaction:hover {
    /*background: #dd3d31;*/
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 101, 93, 0.4);
    color: white;
    text-decoration: none;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Carousel Styles */
.servicescarousel {
    margin: 80px 0;
    padding: 60px 0;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);*/
}

.services-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-title h2 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-title p {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 15px;
    font-style: italic;
}

.services {
    position: relative;
    width: 100%;
    overflow: hidden; 
}

.services ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.services li {
    min-width: 320px;
    height: 280px;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f1f2f6;
}

.services li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    
}

.service1, .service2, .service3 {
    background: white;
}

.carouseltext {
    color: #2c3e50;
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin: 25px 0;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.carouselimg {
    width: 200px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #f1f2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.services li:hover .carouselimg {
    
    box-shadow: 0 6px 20px rgba(229, 101, 93, 0.2);
}

.services li a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e5655d, #dd3d31);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services li:hover a::before {
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel-arrow {
    background: #e5655d;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #dd3d31;
    transform: scale(1.1);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    visibility: hidden;
}

.carousel-dot.active {
    background: #e5655d;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider {
        height: 100vh;
    }
    
    .slidertext {
        font-size: 1.8rem;
    }
    
    .slider-content {
        padding: 20px;
    }
    
    .navbar {
        padding: 0.5rem 1rem !important;
        width: 95% !important;
        top: 10px;
    }
    
    .navbar.scrolled {
        top: 5px;
    }
    
    .servicescarousel {
        margin: 60px 0;
        padding: 40px 0;
    }
    
    .services-title h2 {
        font-size: 2.5rem;
    }
    
    .services li {
        min-width: 280px;
        height: 240px;
    }
    
    .carouseltext {
        font-size: 1.4rem;
    }
    
    .carouselimg {
        width: 160px;
        height: 120px;
    }
}

/* Locate Us Section */
.locate-section {
    margin: 80px 0;
    padding: 60px 0;
    background: #f8f9fa;
}

.locate-title {
    text-align: center;
    margin-bottom: 60px;
}

.locate-title h2 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.locate-title p {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 15px;
    font-style: italic;
}

.locate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.contact-info h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item div {
    color: #2c3e50;
    line-height: 1.6;
}

.contact-item strong {
    color: #e5655d;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    margin: 80px 0;
    padding: 60px 0;
}

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title h2 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-title p {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 15px;
    font-style: italic;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f1f2f6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e5655d;
    box-shadow: 0 0 0 3px rgba(229, 101, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #e5655d;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #dd3d31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 101, 93, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e5655d;
    font-weight: 400;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5655d;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e5655d;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .locate-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .locate-title h2,
    .contact-title h2 {
        font-size: 2.5rem;
    }
}
