body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    background-color: var(--bg-overlay) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px var(--shadow-color-light);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 88px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Background Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(150, 121, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 197, 183, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticle 20s infinite linear;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Sparkle Effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 40%;
    left: 70%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Content Z-index Adjustment */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-section .lead {
    font-size: 1.35rem;
    color: var(--text-primary);
    opacity: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-section .carousel {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
    box-shadow: 0 20px 40px rgba(150, 121, 105, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.hero-section .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.hero-section .carousel-item img {
    border-radius: 20px;
    transition: transform 0.6s ease-in-out;
    object-fit: cover;
    height: 500px;
}

.hero-section .carousel-item:hover img {
    transform: scale(1.05);
}

/* Floating animation for hero content */
.hero-section .col-lg-6:first-child {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Enhanced button styles */
.hero-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-section .btn:hover::before {
    width: 100%;
}

.hero-section .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.hero-section .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-section .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--shadow-color-dark);
}

/* Service Cards */
.service-card {
    padding: 0;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 180, 188, 0.2);
    height: 100%;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(150, 121, 105, 0.15);
}

.service-card i {
    color: var(--primary-color);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    padding: 0 1.5rem;
}

.service-card p {
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0 1.5rem 2rem;
    margin: 0;
}

/* About Section */
.about-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color-light);
    border: 1px solid rgba(150, 121, 105, 0.1);
    height: 100%;
}

.about-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--bg-primary);
    box-shadow: 0 5px 15px var(--shadow-color-light);
    transition: all 0.3s ease;
}

.about-card:hover img {
    transform: scale(1.05);
}

.about-card h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.about-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color-light);
    border: 1px solid rgba(150, 121, 105, 0.1);
}

.form-control {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0.02em;
    border: 1px solid rgba(150, 121, 105, 0.2);
    padding: 1rem;
    border-radius: 10px;
    background-color: var(--bg-overlay);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--shadow-color-light);
}

.btn-primary {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Footer */
footer {
    background: var(--bg-gradient);
    padding: 4rem 0;
    color: var(--text-light);
}

footer h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-light);
}

footer p {
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--text-light);
    opacity: 0.9;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    display: inline-block;
    color: var(--text-light) !important;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .about-card {
        margin-bottom: 2rem;
    }

    .about-card img {
        width: 150px;
        height: 150px;
    }

    #heroCarousel .carousel-item {
        height: 300px;
    }

    .contact-form {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .about-card h4 {
        font-size: 1.3rem;
    }

    footer h5 {
        font-size: 1.4rem;
    }
}

/* Hero Section Additional Styles */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: floatShape 7s ease-in-out infinite 1s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 20px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(150, 121, 105, 0.2);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-stats {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(150, 121, 105, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(150, 121, 105, 0.2);
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    border-radius: 0 0 20px 20px;
}

.carousel-caption h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .hero-section .carousel-item img {
        height: 300px;
    }

    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-stats .stat-item {
        margin-bottom: 1rem;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }

    .shape {
        display: none;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
    .service-image {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }
}

/* Loading Backdrop */
.loading-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 245, 245, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Wishes Section */
.wish-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wish-card:hover {
    transform: translateY(-5px);
}

.wish-content {
    text-align: center;
}

.wish-content i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.wish-text {
    font-style: italic;
    margin: 1rem 0;
    color: var(--color-text);
    line-height: 1.6;
}

.wish-author h5 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.wish-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.wishes-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

.wishes-container::-webkit-scrollbar {
    width: 8px;
}

.wishes-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.wishes-container::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.wishes-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Success Stories Section */
.website-preview {
    cursor: pointer;
    overflow: hidden;
}

.website-preview:hover .preview-overlay {
    opacity: 1 !important;
}

.preview-overlay {
    backdrop-filter: blur(2px);
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}