:root {
    /* Educational Blue Palette */
    --primary: hsl(213, 75%, 25%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-light: hsl(213, 60%, 35%);
    --primary-dark: hsl(213, 85%, 15%);

    /* Creative Orange Accent */
    --accent: hsl(32, 85%, 55%);
    --accent-foreground: hsl(0, 0%, 98%);
    --accent-light: hsl(32, 90%, 65%);
    --accent-muted: hsl(32, 40%, 85%);

    /* Educational Greens */
    --secondary: hsl(158, 45%, 45%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --secondary-light: hsl(158, 35%, 55%);

    /* Neutral Grays */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(215, 25%, 15%);
    --muted: hsl(215, 15%, 95%);
    --muted-foreground: hsl(215, 15%, 45%);
    --border: hsl(215, 20%, 90%);
    --input: hsl(215, 20%, 92%);

    /* Trust & Professional */
    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 98%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(210, 40%, 98%);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
    --gradient-card: linear-gradient(180deg, var(--background), var(--muted));

    /* Shadows */
    --shadow-educational: 0 8px 32px -8px hsla(213, 75%, 25%, 0.15);
    --shadow-card: 0 4px 20px -4px hsla(213, 75%, 25%, 0.1);
    --shadow-accent: 0 4px 16px -4px hsla(32, 85%, 55%, 0.25);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --radius: 0.5rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* About Page */
header.hero {
    background: var(--primary);    
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}



.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/Printpress.jpg') center/cover no-repeat;
}


.hero-overlayy {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            hsla(213, 75%, 25%, 0.9) 0%,
            hsla(213, 85%, 15%, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}




















.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background: #ff9800;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn:hover {
    background: #f57c00;
}

.mission-vision {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.mission,
.vision {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-left: 4px solid #3f51b5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.story p {
    max-width: 800px;
    padding-top: 30px;
    padding-bottom: 50px;
    
}

.story-heading{
    display: flex;
    justify-content: center;
    color: #ff9800;
    margin: 20px;
    margin-left: 50px;
    margin-right: 50px;
    background-color: #003366;
    padding-bottom: 10px;
    border-radius: 5px;
}

#story{
    padding: 10px;
    padding-left: 25px;
    justify-content: center;
    display: flex;
    text-align: center;
    background-color: #003366;
    color: aliceblue;
}

.core-values {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.core-values h2 {
    color: #003366;
}

.values-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.badge {
    background: #003366;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.ceo-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ceo-section img {
    width: 280px;
    border-radius: 1rem;
}

.ceo-section h2 {
    display: flex;
    justify-content: center;
    color: #ff9800;
    width: 91vw;
    background-color: #003366;
    padding-bottom: 10px;
    border-radius: 5px;
}

.ceo-section h3 {
    margin-top: -20px;
    color: #003366;
    display: flex;
    justify-content: center;
}

.ceo-paragraph {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 80vw;
}

.creative-team {
    margin-bottom: 4rem;
    text-align: center;
    width: 100vw;
}

.creative-team h2 {
    color: #003366;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-grid div {
    text-align: center;
}

.team-grid img {
    width: 100px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}


.faq {
margin-left: 50px;
margin-right: 30px;
}

.faq h2 {
    color: #003366;

}

.faq-items details {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
}

/* End of FAQ */

/* About Page Ends here! */




body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.quote-btn{
    color: white;
    font-size: 0.999rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-educational);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-accent);
    text-decoration-style: none ;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-success {
    background: var(--success);
    color: var(--success-foreground);
}

.btn-success:hover {
    background: hsl(142, 76%, 32%);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-loading .btn-text {
    display: none;
}

.btn-loading .btn-loading {
    display: inline;
}

.btn .btn-loading {
    display: none;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    padding: 0.5rem;
    border-radius: var(--radius);
    background: white;
    color: var(--primary-foreground);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link,
.nav-links {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active,
.nav-links:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link, .nav-links {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover,
.mobile-nav-link.active,
.nav-links {
    color: var(--primary);
    background: hsla(213, 75%, 25%, 0.1);
}

.mobile-cta {
    margin-top: 1rem;
}

/* Hero Section main*/
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('assets/Background-Image.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            hsla(213, 75%, 25%, 0.9) 0%,
            hsla(213, 85%, 15%, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(32, 85%, 55%, 0.2);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-accent {
    display: block;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsla(0, 0%, 98%, 0.9);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-number i {
    color: var(--accent);
    font-size: 1.5rem;
}

.stat-number span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.stat-label {
    color: hsla(0, 0%, 98%, 0.8);
    font-size: 0.875rem;
}

.floating-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5vh;
}

.floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    animation-delay: 1s;
}

.floating-icon {
    width: 4rem;
    height: 4rem;
    background: hsla(32, 85%, 55%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
}

/*Carousel Section*/
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.slide {
    flex: 0 0 calc(25% - 15px);
    aspect-ratio: 1 / 1;
    background: #ddd;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide:hover {
    transform: scale(1.02);
    opacity: 1;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: 6px;
}

.dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.dot.active {
    background: #333;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
    .slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .slide {
        flex: 0 0 100%;
    }
}




/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    
}

.amount {
    color: #ff6600;
    font-size: 1.2rem;

}

.service-card {
    background: whitesmoke ;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transit 0.3s ease;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-4px);
    transform: scale(5.1);
    box-shadow: var(--shadow-educational);
    background-color: rgb(209, 209, 231);
    font-size: 17px;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-hero);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.service-icon i {
    color: var(--primary-foreground);
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted-foreground);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--muted);
    border-radius: var(--radius);
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
    background: url('assets/quoteBK.jpg') center/cover no-repeat;;
}

.quote-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.quote-form-container {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--muted-foreground);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(213, 75%, 25%, 0.1);
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.sidebar-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-content h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 1.5rem;
}

.info-item h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--muted-foreground);
}

.whatsapp-cta {
    background: var(--success);
    color: var(--success-foreground);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.whatsapp-cta .cta-title {
    color: var(--success-foreground);
    margin-bottom: 0.5rem;
}

.whatsapp-cta .cta-description {
    color: hsla(0, 0%, 98%, 0.8);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    padding: 20px 10px;
    text-align: center;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    color: #aaa;
    margin: 0 10px;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer-text {
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .social-icons a {
        margin: 0 8px;
        font-size: 22px;
    }

    .footer-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .social-icons a {
        margin: 0 6px;
        font-size: 20px;
    }

    .footer-text {
        font-size: 12px;
    }
}





.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
       
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo-icon {
    justify-content: center;
    background-color: rgb(255, 255, 255)
    
}

.footer-description {
    color: hsla(0, 0%, 98%, 0.8);
    max-width: 300px;
    text-align: center;
    
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-foreground);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 98%, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: hsla(0, 0%, 98%, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 98%, 0.2);
    color: hsla(0, 0%, 98%, 0.8);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--success);
    color: var(--success-foreground);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast-icon {
    font-size: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-element {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-container {
        padding: 0 0.5rem;
    }

    .service-card,
    .quote-form-container,
    .sidebar-card,
    .info-card {
        padding: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
    }
}



