/* 
   Style Sheet for Plombier Maroc (Moroccan Plumbing Services Website)
   Designed with rich aesthetics: Blue (Water/Trust), Orange (Emergency/Energy), White (Cleanliness)
   Supports RTL layout and Cairo Arabic Google Font.
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #0a4f70;          /* Deep Water Blue */
    --primary-dark: #073850;     /* Dark Navy Blue */
    --primary-light: #e0f2fe;    /* Very Soft Ice Blue */
    --accent: #ff6b35;           /* Emergency Orange */
    --accent-hover: #e0531c;     /* Darker Orange for Hover */
    --accent-light: #fff0eb;     /* Soft Orange Background */
    --text-dark: #1e293b;        /* Main Slate Gray Text */
    --text-muted: #64748b;       /* Muted Slate Gray Text */
    --bg-white: #ffffff;         /* Pure White */
    --bg-light: #f8fafc;         /* Very Light Slate Background */
    --bg-gradient: linear-gradient(135deg, #0a4f70 0%, #073850 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px -5px rgba(10, 79, 112, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-family: 'Cairo', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    scroll-behavior: smooth;
}

html {
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.badge {
    background-color: var(--accent-light);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.header.sticky .navbar {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-white);
    transition: var(--transition);
}

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

.logo i {
    font-size: 28px;
    color: var(--accent);
}

.header.sticky .logo {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--bg-white);
}

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

.header.sticky .nav-link {
    color: var(--text-dark);
}

.header.sticky .nav-link:hover {
    color: var(--primary);
}

.nav-btn {
    display: flex;
    align-items: center;
}

.nav-btn .btn {
    padding: 10px 20px;
    font-size: 15px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--bg-white);
    transition: var(--transition);
    border-radius: 3px;
}

.header.sticky .burger-menu span {
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: linear-gradient(rgba(10, 79, 112, 0.85), rgba(7, 56, 80, 0.95)), url('assets/plumber_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent);
    position: relative;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-item i {
    font-size: 24px;
    color: var(--accent);
}

.hero-feature-item span {
    font-size: 16px;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50% var(--radius-md) 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary);
}

.service-icon-box i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-box i {
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.service-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.service-price span {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--accent);
}

.service-card.emergency-card {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border: none;
}

.service-card.emergency-card::before {
    background-color: var(--accent);
}

.service-card.emergency-card h3 {
    color: var(--bg-white);
}

.service-card.emergency-card p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.emergency-card .service-icon-box {
    background-color: var(--accent);
}

.service-card.emergency-card .service-icon-box i {
    color: var(--bg-white);
}

.service-card.emergency-card .service-price {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.emergency-card .service-price span {
    color: var(--accent);
}

.service-card.emergency-card .service-link {
    color: var(--accent);
}

.service-card.emergency-card .service-link:hover {
    color: var(--bg-white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-box {
    position: relative;
}

.about-image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition);
}

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

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    text-align: center;
    border: 4px solid var(--bg-white);
}

.experience-badge h4 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 700;
    margin-top: 5px;
}

.about-content h2 {
    text-align: right;
    margin-bottom: 24px;
}

.about-content h2::after {
    margin: 12px right 0;
}

.about-text {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-card i {
    font-size: 24px;
    color: var(--primary);
    background-color: var(--primary-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.about-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Call to Action (CTA) */
.cta-section {
    background: var(--bg-gradient);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-phone i {
    animation: shake 1.5s infinite;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: rgba(10, 79, 112, 0.08);
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--accent);
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact & Info Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(10, 79, 112, 0.1);
}

textarea.form-control {
    resize: none;
    height: 150px;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.info-card i {
    font-size: 24px;
    color: var(--accent);
    background-color: var(--accent-light);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-card-text p {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
}

.map-container {
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    border-top: 5px solid var(--accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--bg-white);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent);
}

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

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 18px;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Scroll Animations CSS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    85% { transform: rotate(5deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Media Queries (Responsive Design) */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image img {
        height: 380px;
    }
    .experience-badge {
        bottom: -20px;
        right: 10px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .section-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    /* Navigation */
    .burger-menu {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 12px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header.sticky .nav-link {
        color: var(--text-dark);
    }
    
    .nav-btn {
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-btn .btn {
        width: 100%;
        text-align: center;
    }

    /* Burger animation to X */
    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary) !important;
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary) !important;
    }
    
    /* Hero */
    .hero {
        text-align: center;
        height: auto;
        min-height: auto;
        padding: 150px 0 100px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
        align-items: center;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 28px;
    }
    .cta-section p {
        font-size: 15px;
    }
    .cta-phone {
        font-size: 18px;
        padding: 8px 18px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .experience-badge {
        padding: 20px;
        bottom: -15px;
        right: 0px;
    }
    .experience-badge h4 {
        font-size: 30px;
    }
    .contact-form-box {
        padding: 24px;
    }
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
