/* Base Styles */
:root {
    --primary-color: #fd9742; /* Logo color 1 */
    --secondary-color: #435b75; /* Logo color 2 */
    --background-color: #d9d6d1; /* Logo background */
    --text-color: #333;
    --light-color: #fff;
    --accent-color: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --whatsapp-color: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
}

/* Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
    transform: translateY(-5px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

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

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.logo span {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Banner Styles */
.hero-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 90px; /* Added padding to account for fixed header height */
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}



.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--light-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-prev,
.hero-next {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: var(--primary-color);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Services Section Styles */
.services {
    padding: 100px 0;
    background-color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(253, 151, 66, 0.1), rgba(253, 151, 66, 0.05));
    transition: height 0.5s ease;
    z-index: -1;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.8s ease, background-color 0.5s ease;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Offers Section Styles */
.offers {
    padding: 100px 0;
    background-color: var(--light-color);
}

.offers-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.offer-card {
    width: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

.offer-content {
    padding: 20px;
    text-align: center;
}

.offer-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.offer-content p {
    margin-bottom: 20px;
}



.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Why Choose Us Section Styles */
.why-us {
    padding: 100px 0;
    background-color: #f0f2f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonials {
    text-align: center;
}

.testimonials h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial {
    display: none;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial.active {
    display: block;
    animation: fadeIn 1s ease;
}

.quote {
    position: relative;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
}

.quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
}

.client h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 15px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Book Service Section Styles */
.book-service {
    padding: 100px 0;
    background: linear-gradient(rgba(67, 91, 117, 0.9), rgba(67, 91, 117, 0.9)), url('../images/form-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
}

.book-service .section-header h2 {
    color: var(--light-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* About Us Section Styles */
.about {
    padding: 100px 0;
    background-color: var(--accent-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat h4 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 0 20px;
}

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

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo .logo span {
    color: var(--light-color);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        max-width: 1140px;
    }
    
    .service-cards {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
        margin-left: 0;
    }
    
    .mobile-menu {
        display: block;
        z-index: 1001;
    }
    
    /* Hero section mobile styles */
    .hero-banner {
        height: 80vh;
    }
    
    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-controls {
        bottom: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 10px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Services grid mobile styles */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .offers-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .offer-card img {
        object-fit: cover;
        object-position: center center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .about-text {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .book-service-form {
        width: 100%;
    }
    
    .testimonial-slider {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-controls {
        bottom: 10px;
    }
    
    .hero-slide img {
        object-position: center center;
        height: 100%;
    }
    

    
    .hero-prev,
    .hero-next {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin: 0 8px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonial {
        padding: 15px;
    }
    
    .quote p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .submit-btn {
        padding: 12px;
    }
}

@media (max-width: 400px) {
    .hero-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    
    .offer-card img {
        object-fit: cover;
        object-position: center center;
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-slide img {
        object-position: center center;
    }
    

    

    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .services, .offers, .why-us, .book-service, .about {
        padding: 60px 0;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .hero-controls {
        bottom: 5px;
    }
    
    .hero-prev,
    .hero-next {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        margin: 0 5px;
    }
    
    .hero-dots {
        gap: 6px;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .offer-card img {
        height: 250px;
        object-fit: cover;
        object-position: center center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 7px 14px;
        font-size: 0.85rem;
    }
    
    .hero-slide img {
        object-position: center center;
    }
    

    

}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    box-shadow: var(--box-shadow);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }
}