body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Noise Background Effect */
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.05'%3E%3Crect x='0' y='0' width='100' height='100' fill='%23ccc'/%3E%3Cpath d='M0 0h100v100H0z' fill='url(%23noise)'/%3E%3Cdefs%3E%3Cpattern id='noise' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Crect width='100' height='100' fill='%23f0f0f0'/%3E%3Ccircle cx='50' cy='50' r='40' fill='%23ddd'/%3E%3Ccircle cx='25' cy='25' r='10' fill='%23eee'/%3E%3Ccircle cx='75' cy='75' r='20' fill='%23fff'/%3E%3Ccircle cx='75' cy='25' r='5' fill='%23ddd'/%3E%3Ccircle cx='25' cy='75' r='15' fill='%23eee'/%3E%3C/pattern%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
}
.hero {
    background: url('your-hero-image.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(56, 54, 54);
    text-align: center;
    padding: 20px;
}
.hero img {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}
.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.hero p {
    font-size: 1.4rem;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    opacity: 0.8;
}
.section {
    padding: 60px 20px;
    padding-top: 0;
}
.section h2 {
    margin-bottom: 40px;
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    width: 100%;
}
.section h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #000;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(1);
    transform-origin: center;
}
.section p {
    font-size: 1.2rem;
}
.ready {
    background: linear-gradient(135deg, #f0f0f5, #f8f8ff);
    padding: 100px 20px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}
.ready:before {
    content: '\f024';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
    animation: rotateClock 120s linear infinite;
}
@keyframes rotateClock {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ready h2 {
    margin-bottom: 30px;
    font-size: 2.8rem;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.ready p {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
}
.ready button {
    margin-top: 0;
    padding: 15px 35px;
    font-size: 1.3rem;
    border-radius: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    animation: pulseButton 2s infinite alternate;
}
.ready button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@keyframes pulseButton {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.floating-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px 20px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.floating-nav.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.95);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
.nav-link {
    position: relative;
    margin: 0 10px;
    font-size: 0.95rem;
    color: #333;
}
.nav-link:hover {
    color: #007bff;
}

.social-icons {
    display: none;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.social-icons.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}
.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.social-icon.email:hover {
    background-color: #ea4335;
    color: white;
}
.social-icon.phone:hover {
    background-color: #4caf50;
    color: white;
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}
.social-icon.tiktok:hover {
    background-color: #000;
    color: white;
}

.feedback-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}
.feedback-section h2 {
    margin-bottom: 60px;
    text-align: center;
}
.feedback-carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feedback-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.feedback-card {
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;
}
.feedback-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
}
.feedback-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}
.feedback-card .client-info {
    font-size: 0.9rem;
    color: #777;
}
.carousel-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.carousel-nav button {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease, background-color 0.3s ease;
    pointer-events: all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.carousel-nav button:hover {
    color: #007bff;
    background-color: rgba(255, 255, 255, 0.95);
}
.carousel-nav button#prevBtn {
    left: -20px;
}
.carousel-nav button#nextBtn {
    right: -20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.carousel-indicator.active {
    background-color: #007bff;
}

/* Responsive Styles */
@media (min-width: 992px) { /* Desktop Styles */
    .floating-nav {
        top: 20px;
        width: auto;
        max-width: 1400px; /* Increased max width of navbar to 1400px */
        padding: 10px 30px;
    }
    .nav-link {
        font-size: 0.95rem;
    }
}
@media (max-width: 991px) { /* Mobile Styles */
    .floating-nav {
        top: 20px;
        bottom: auto;
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        width: auto;
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 20px;
    }
    .hero {
        padding-top: 0;
    }
    .ready {
        margin-bottom: 76px;
    }
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    .social-icons {
        flex-wrap: wrap;
        padding: 0 20px;
    }
    .carousel-nav button#prevBtn {
        left: 0px;
    }
    .carousel-nav button#nextBtn {
        right: 0px;
    }

    /* Improved Mobile Navbar Responsiveness */
    .navbar-nav {
        width: 100%;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        margin: 0;
        padding: 10px 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}
@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .section h2 {
        font-size: 2rem;
    }
    .section p {
        font-size: 1rem;
    }
    .feedback-card p {
        font-size: 1rem;
    }
    .feedback-card .client-info {
        font-size: 0.8rem;
    }
    .feedback-card {
        padding: 20px;
    }
}
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}
.footer p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}