@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins',sans-serif;
}

:root {
    --bg-color: fff;
    --second-bg-color: rgb(221, 214, 214);
    --text-color: #1f242d#;
    --main-color: rgb(231, 84, 84);
}

html {
    font-size: 68%;
    overflow-x: hidden;
}

body {
    background: white;
    color: var(--text-color);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    padding: 1.5rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Optional: Adds a blur effect to the background */
    transition: background 0.3s ease;
}

/* Sticky Header Styling */
.header.sticky {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.logo {
    font-size: 2.5rem;
    color: black;
    font-weight: 700;
    cursor: default;
}

/* Navbar Styling */
.navbar a {
    font-size: 1.2rem;
    color: black;
    margin-left: 4rem;
    transition: color 0.3s ease, background 0.6s ease;
}

.navbar a:hover,
.navbar a.active {
    color: white;
    background: var(--main-color);
    padding: 5px 5px;
    border-radius: 15px;
}

/* Menu Icon Styling */
#menu-icon {
    font-size: 3.6rem;
    color: white;
    display: none;
}



/* Hero Section Styling */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; /* Adjust based on the height of your navbar */
}

/* Video Background */
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero Content Styling */
.hero-content {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    max-width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Transparent background */
    border-radius: 10px;
    backdrop-filter: blur(20px); /* Glass effect */
    box-shadow: 0 4px 10px rgba(251, 133, 133, 1);
    color: white;
    text-align: right;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: white;
    text-shadow: 
        -1px -1px 0 #e84a5f,
         1px -1px 0 #e84a5f,
        -1px  1px 0 #e84a5f,
         1px  1px 0 #e84a5f;
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 
        -1px -1px 0 #e84a5f,
         1px -1px 0 #e84a5f,
        -1px  1px 0 #e84a5f,
         1px  1px 0 #e84a5f;
}


/* Call-to-Action Button */
.hero .cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.6rem;
    font-weight: 600;
    color: black;
    background: white; /* Replace with your accent color */
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(231, 84, 84, 0.3);
    cursor: pointer;
}

.hero .cta:hover {
    box-shadow: 0 6px 15px rgba(255, 122, 122, 1);
    transform: scale(1.05);
}



/*Skills section */
/* Enhanced Skills Section */
.skills {
    text-align: center;
    padding: 50px 20px;
}

.skills h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.skills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.skills-container .skills-box {
    flex: 1 1 250px;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.skills-container .skills-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ff6f61, #ff9f80);
    color: white;
}

.skills-container .skills-box i {
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.skills-container .skills-box:hover i {
    transform: scale(1.2);
    color: white;
}

.skills-container .skills-box h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.skills-container .skills-box:hover h3 {
    color: white;
}

.skills-container .skills-box p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.skills-container .skills-box:hover p {
    color: white;
}

@media screen and (max-width: 768px) {
    .skills-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .skills-container .skills-box {
        flex: 1 1 100%;
    }
}

/*Home*/
/* Improved Home Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
    padding: 20px;
    background: white;
}

.home-content {
    margin: 20px;
    text-align: center;
}

.home-content h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;
    color: var(--main-color);
}

.home-content p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

span {
    color: var(--main-color);
    font-weight: bold;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-img img {
    height: 500px;
    width: 500px;
}

@media (max-width: 1000px) {
    .home {
        flex-direction: column; /* Stack content vertically */
        margin: 30px auto; /* Adjust margin for medium screens */
        padding: 20px; /* Adjust padding */
        max-width: 95%; /* Adjust width to fit medium screens */
    }

    .home-content {
        margin: 15px 0; /* Adjust margin for compact spacing */
        text-align: center; /* Ensure text remains centered */
    }

    .home-content h3 {
        font-size: 3rem; /* Adjust font size for headings */
        margin-bottom: 1rem; /* Adjust spacing */
    }

    .home-content h3:nth-of-type(2) {
        margin-bottom: 1.8rem; /* Adjust spacing */
    }

    .home-content p {
        font-size: 1.7rem; /* Adjust font size for paragraphs */
        line-height: 1.5; /* Adjust line height */
        margin-bottom: 1.8rem; /* Adjust spacing */
    }

    .home-content h1 {
        font-size: 5rem; /* Adjust font size for main heading */
        line-height: 1.3; /* Adjust line height */
    }

    .home-img img {
        height: 400px; /* Adjust image size */
        width: 400px; /* Maintain aspect ratio */
        margin: 15px 0; /* Add spacing around the image */
    }

    .home-img img:hover {
        transform: scale(1.04); /* Slightly reduce hover scale */
        transition: transform 0.3s ease;
    }
}

@media (max-width: 768px) {
    .home {
        flex-direction: column; /* Stack content vertically */
        margin: 20px auto; /* Reduce margin for smaller screens */
        padding: 15px; /* Reduce padding */
        max-width: 90%; /* Adjust width to fit smaller screens */
    }

    .home-content {
        margin: 10px 0; /* Reduce margin for compact spacing */
        text-align: center; /* Ensure text remains centered */
    }

    .home-content h3 {
        font-size: 2.5rem; /* Reduce font size for headings */
        margin-bottom: 0.8rem; /* Adjust spacing */
    }

    .home-content h3:nth-of-type(2) {
        margin-bottom: 1.5rem; /* Adjust spacing */
    }

    .home-content p {
        font-size: 1.6rem; /* Reduce font size for paragraphs */
        line-height: 1.4; /* Adjust line height */
        margin-bottom: 1.5rem; /* Adjust spacing */
    }

    .home-content h1 {
        font-size: 4rem; /* Reduce font size for main heading */
        line-height: 1.2; /* Adjust line height */
    }

    .home-img img {
        height: 300px; /* Reduce image size */
        width: 300px; /* Maintain aspect ratio */
        margin: 10px 0; /* Add spacing around the image */
    }

    .home-img img:hover {
        transform: scale(1.03); /* Slightly reduce hover scale */
        transition: transform 0.3s ease;
    }
}


/* Services Section */
/* Enhanced Services Section */
.services {
    padding: 100px 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.service-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.service-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(242, 127, 127, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image img {
    width: 400px;
    height: 500px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(242, 127, 127, 0.6);
}

.service-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.service-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: center;
}

.feature-text h4 {
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.feature-text p {
    margin: 0;
    font-size: 1.2rem;
    color: #555;
}

@media (max-width: 768px) {
    .services {
        padding: 50px 15px; /* Reduce padding for smaller screens */
        text-align: center; /* Ensure content is centered */
    }

    .service-content {
        flex-direction: column; /* Stack content vertically */
        gap: 30px; /* Reduce gap between items */
    }

    .service-image {
        flex: none; /* Remove flex-grow to prevent stretching */
        width: 100%; /* Make the image take full width */
        max-width: 300px; /* Limit the maximum width */
        margin: 0 auto; /* Center the image */
        box-shadow: 0 3px 8px rgba(242, 127, 127, 0.3); /* Reduce shadow size */
    }

    .service-image img {
        width: 100%; /* Ensure the image fits its container */
        height: auto; /* Maintain aspect ratio */
        border-radius: 10px; /* Reduce border radius */
    }

    .service-text {
        text-align: center; /* Center-align text */
        max-width: 100%; /* Allow text to take full width */
    }

    .service-text h2 {
        font-size: 2rem; /* Reduce font size for headings */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .service-text p {
        font-size: 1.4rem; /* Reduce font size for paragraphs */
        line-height: 1.4; /* Adjust line height */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .service-features {
        gap: 10px; /* Reduce gap between features */
    }

    .feature {
        flex-direction: column; /* Stack feature content vertically */
        gap: 10px; /* Reduce gap between feature elements */
        text-align: center; /* Center-align feature content */
    }

    .feature-text h4 {
        font-size: 1.2rem; /* Reduce font size for feature headings */
    }

    .feature-text p {
        font-size: 1rem; /* Reduce font size for feature text */
    }
}

/*Mission*/

.mission {
    background-color: white;
    color: black;
    padding: 50px 20px;
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    border-radius: 20px;
}

.mission p {
    font-size: 16px;
    transition: .5s ease;
}

.mission p:hover {
    color: var(--main-color);
}

@media screen and (max-width: 450px) {
    .mission p {
        font-size: 13px
    }
}


/*Pricing*/
.pricing-section {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .pricing-section h2 {
      font-size: 2.8rem;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .pricing-section p {
      font-size: 1.4rem;
      color: #6b7280;
      margin-bottom: 30px;
    }

    .toggle-wrapper {
      margin-bottom: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
      font-weight: 600;
      color: #374151;
    }

    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 32px;
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #e5e7eb;
      transition: 0.4s;
      border-radius: 34px;
    }

    .slider::before {
      position: absolute;
      content: "";
      height: 24px;
      width: 24px;
      left: 4px;
      bottom: 4px;
      background-color: rgb(247, 116, 116);;
      transition: 0.4s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: #f9a8d4;
    }

    input:checked + .slider::before {
      transform: translateX(28px);
    }

    .plans {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .plan {
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(236, 72, 153, 0.2);
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(236, 72, 153, 0.15), 0 0 5px rgba(236, 72, 153, 0.25);
      backdrop-filter: blur(12px);
      padding: 32px 24px;
      width: 260px;
      transition: box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .plan:hover {
      box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25);
    }

    .plan h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #111827;
    }

    .price {
      font-size: 1.6rem;
      font-weight: 700;
      color: rgb(247, 116, 116);
      margin: 10px 0 20px;
    }

    .plan p {
      list-style: none;
      text-align: left;
      padding: 0;
      margin: 0 0 20px;
      font-size: 1.5rem;
    }

    .plan button {
      background: rgb(247, 116, 116);;
      color: white;
      padding: 10px;
      font-size: 1.4rem;
      border: none;
      border-radius: 9999px;
    }

    .plan button:hover {
      background: rgb(240, 73, 73);;
    }

    .plan.featured {
      border: 2px solid #ec4899;
      transform: scale(1.03);
    }

    @media (max-width: 768px) {
      .plans {
        flex-direction: column;
        align-items: center;
      }
    }

 

/*Contact*/
/* Contact Section Styling - Light Red Theme */
.contacts {
    padding: 80px 20px;
    background:white;
    position: relative;
    overflow: hidden;
}

.contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,182,193,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,192,203,0.1)"/><circle cx="400" cy="700" r="120" fill="rgba(255,228,225,0.1)"/></svg>');
    z-index: 1;
    animation: floatShapes 20s ease-in-out infinite;
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contacts h3 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(214, 51, 132, 0.1);
}

.contacts h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ffb3b3);
    margin: 20px auto 50px;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.2); opacity: 0.8; }
}

.contacts form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 
        0 8px 32px rgba(214, 51, 132, 0.1),
        0 4px 16px rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
}

.contacts form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px rgba(214, 51, 132, 0.15),
        0 6px 24px rgba(255, 182, 193, 0.25);
}

.contacts input[type="text"],
.contacts input[type="email"],
.contacts textarea {
    width: 100%;
    padding: 18px 20px;
    margin: 15px 0;
    border: 2px solid rgba(255, 182, 193, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    font-size: 16px;
    color: #5a5a5a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contacts input[type="text"]:focus,
.contacts input[type="email"]:focus,
.contacts textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 107, 0.1),
        0 4px 12px rgba(255, 107, 107, 0.15);
    transform: translateY(-2px);
}

.contacts input::placeholder,
.contacts textarea::placeholder {
    color: #999;
    font-weight: 500;
}

.contacts textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.contacts button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffb3b3 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.contacts button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contacts button:hover::before {
    left: 100%;
}

.contacts button:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 50%, #ffa8a8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.contacts button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contacts {
        padding: 60px 15px;
    }
    
    .contacts h3 {
        font-size: 2.2rem;
    }
    
    .contacts form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .contacts input[type="text"],
    .contacts input[type="email"],
    .contacts textarea {
        padding: 15px 18px;
        font-size: 15px;
    }
    
    .contacts button {
        padding: 16px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contacts h3 {
        font-size: 1.8rem;
    }
    
    .contacts form {
        padding: 25px 15px;
    }
}


/* Footer */
footer {
            background: linear-gradient(135deg, #2c1810 0%, #4a2c20 50%, #3d2318 100%);
            color: #f8f9fa;
            padding: 60px 20px 30px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ffb3b3, #ff8e8e, #ff6b6b);
            background-size: 200% 100%;
            animation: gradientFlow 3s ease-in-out infinite;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Company Info Section */
        .footer-brand {
            text-align: left;
        }

        .footer-brand .logo {
            font-size: 2.6rem;
            font-weight: 700;
            color: #ff6b6b;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .footer-brand .copyright {
            color: #d1d5db;
            font-size: 1.2rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .footer-brand .tagline {
            color: #ff8e8e;
            font-style: italic;
            font-size: 1.3rem;
            margin-top: 10px;
        }

        /* Contact Section */
        .footer-contact {
            text-align: center;
        }

        .footer-contact h4 {
            color: #ff6b6b;
            font-size: 1.9rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .email {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(255, 107, 107, 0.1);
            padding: 15px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 107, 0.2);
        }

        .email:hover {
            background: rgba(255, 107, 107, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
        }

        .email i {
            color: #ff6b6b;
            font-size: 1.8rem;
        }

        .email p {
            margin: 0;
            color: #f8f9fa;
            font-weight: 500;
            font-size: 1.5rem;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
        }

        .social-icons a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #ff5252, #ff7979);
        }

        .social-icons a i {
            font-size: 1.9rem;
        }

        /* Quick Links */
        .footer-links {
            text-align: right;
        }

        .footer-links h4 {
            color: #ff6b6b;
            font-size: 1.9rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .quicklinks {
            list-style: none;
            padding: 0;
            margin: 0;
        }


        .quicklinks a {
            display: block;
            color: #d1d5db;
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
            font-size: 1.5rem;
        }

        .quicklinks a::before {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            transition: width 0.3s ease;
        }

        .quicklinks a:hover {
            color: #ff8e8e;
            padding-right: 15px;
        }

        .quicklinks a:hover::before {
            width: 30px;
        }

        .quicklinks a.active {
            color: #ff6b6b;
        }

        /* Bottom Section */
        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 107, 107, 0.2);
            text-align: center;
        }

        .footer-bottom p {
            color: #9ca3af;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-brand,
            .footer-links {
                text-align: center;
            }

            .quicklinks a::before {
                left: 50%;
                transform: translateX(-50%) translateY(-50%);
            }

            .quicklinks a:hover {
                padding-right: 0;
                padding-left: 0;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 40px 15px 20px;
            }

            .footer-container {
                gap: 30px;
            }

            .email {
                flex-direction: column;
                gap: 8px;
                padding: 12px 15px;
            }

            .social-icons a {
                width: 40px;
                height: 40px;
            }
        }



  /*Breakpoints*/
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .services{
        padding-bottom: 7rem;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
        color: black;
        font-size: 2.5rem;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: rgb(0, 0, 0, 0.5);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: white;
    }

    .service-item img {
        height: 200px;
        width: 200px;
    }

    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-container p {
        font-size: 12px;
    }
}

@media (max-width: 617px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(to right, #3fd5ff); /* reddish to orange gradient */
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 1000;
  }

  .announcement-banner span {
    display: block;
    font-weight: normal;
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }

  a {
    color: #fff;
  }

  @media (max-width: 600px) {
    .announcement-banner {
      font-size: 1.5rem;
      padding: 0.8rem 1rem;
    }
  }


/* Pricing Table */
.comparisons {
  margin: 20px;
  padding: 2rem;
  background: white;
  border-radius: 20px;
}

.comparison {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: black;
}

.table-container {
  overflow-x: auto;
  width: 100%;
}

/* Make sure table is scrollable on smaller screens */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(230, 0, 122, 0.1);
  transition: all 0.3s ease-in-out;
}

th, td {
  padding: 1.2rem 1rem;
  text-align: center;
  min-width: 120px;
  border-bottom: 1px solid var(--border);
  font-size: 1.5rem;
}

thead th {
  background: var(--card-bg);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.plan-headers {
  background: rgb(122, 195, 255);
  color: white;
  font-size: 1.5rem;
  border-radius: 0;
  position: relative;
}

.highlights {
  background-color: rgb(247, 116, 116);
  border: 2px solid;
}

.highlights::after {
  content: "RECOMMENDED";
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgb(247, 116, 116);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(230, 0, 122, 0.5);
  font-weight: bold;
}

.tick {
  color: rgb(247, 116, 116);
  font-size: 1.8rem;
}

.cross {
  color: black;
  font-size: 1.8rem; /* Fixed from '1.8' */
}

tbody tr:hover {
  background-color: #fdfdfd;
  transition: background-color 0.2s ease-in-out;
}

/* Mobile styles */
@media (max-width: 768px) {
  .comparisons {
    padding: 1rem;
  }

  .comparison {
    font-size: 2rem;
  }

  th, td {
    font-size: 1.2rem;
    padding: 1rem;
  }

  table {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
  }

  thead {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 2;
  }
}

.dynamic-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .background-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            z-index: 1;
        }

        .background-layer.active {
            opacity: 1;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
            z-index: 2;
        }

        .image-counter {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            z-index: 4;
            border: 1px solid rgba(255,255,255,0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @media (max-width: 768px) {
            .content h1 {
                font-size: 2.5rem;
            }
            
            .content p {
                font-size: 1.1rem;
            }
            
            .content {
                margin: 20px;
                padding: 30px;
            }
        }

/* Etiquettes Section */
        .etiquettes {
            padding: 80px 20px;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .etiquettes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="150" cy="150" r="80" fill="rgba(255,182,193,0.1)"/><circle cx="850" cy="200" r="120" fill="rgba(255,192,203,0.1)"/><circle cx="500" cy="800" r="100" fill="rgba(255,228,225,0.1)"/><circle cx="200" cy="600" r="90" fill="rgba(255,182,193,0.08)"/></svg>');
            z-index: 1;
            animation: floatShapes 25s ease-in-out infinite;
        }

        @keyframes floatShapes {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(180deg); }
        }

        .etiquettes-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .etiquettes h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            color: #d63384;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(214, 51, 132, 0.1);
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .etiquettes h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ffb3b3);
            margin: 25px auto 0;
            border-radius: 2px;
            animation: expandWidth 1.5s ease-out 0.5s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 100px; }
        }

        .etiquettes-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* PDF Buttons Grid */
        .pdf-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pdf-button {
            display: block;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 182, 193, 0.3);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(214, 51, 132, 0.1);
            animation: slideInUp 0.8s ease-out both;
        }

        .pdf-button:nth-child(1) { animation-delay: 0.2s; }
        .pdf-button:nth-child(2) { animation-delay: 0.4s; }
        .pdf-button:nth-child(3) { animation-delay: 0.6s; }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pdf-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .pdf-button:hover::before {
            left: 100%;
        }

        .pdf-button:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(214, 51, 132, 0.2);
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(255, 107, 107, 0.4);
        }

        .pdf-icon {
            font-size: 3rem;
            color: #ff6b6b;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .pdf-button:hover .pdf-icon {
            transform: scale(1.1) rotateY(360deg);
            color: #ff5252;
        }

        .pdf-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #d63384;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .pdf-button:hover .pdf-title {
            color: #ff5252;
        }

        .pdf-description {
            font-size: 1.4rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .download-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #ff6b6b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .download-indicator i {
            transition: transform 0.3s ease;
        }

        .pdf-button:hover .download-indicator i {
            transform: translateY(2px);
        }

        /* File size indicator */
        .file-size {
            position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255, 107, 107, 0.1);
            color: #ff6b6b;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .etiquettes {
                padding: 60px 15px;
            }

            .etiquettes h2 {
                font-size: 2.3rem;
            }

            .etiquettes-subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }

            .pdf-buttons {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pdf-button {
                padding: 30px 20px;
            }

            .pdf-icon {
                font-size: 2.5rem;
            }

            .pdf-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .etiquettes h2 {
                font-size: 2rem;
            }

            .pdf-button {
                padding: 25px 15px;
            }

            .pdf-icon {
                font-size: 2.2rem;
            }

            .pdf-title {
                font-size: 1.2rem;
            }

            .pdf-description {
                font-size: 0.95rem;
            }
        }

        /* Loading animation for when PDFs are being fetched */
        .pdf-button.loading {
            pointer-events: none;
        }

        .pdf-button.loading .pdf-icon {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }