/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Marquee Bar */
.marquee-container {
    background: #4ca1af;
    color: white;
    padding: 8px 0;
    font-size: 16px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 40px;
}

/* Navbar Section */
.navbar-container {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 998;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 95%;
    margin: auto;
    padding: 15px 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f27e96;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    width: 200px;
}

.dropdown-menu li {
    /*padding: 10px 20px;*/
    white-space: nowrap;
}

.dropdown-menu li a {
    color: black;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

.dropdown-menu li a:hover {
    background: #f27e96;
    color: white;
    border-radius: 5px;
}

/* Show dropdown on hover (Desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}
/* Contact Button */
.contact-btn {
    font-size: 16px;
    padding: 10px 20px;
    background: #4ca1af;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}

.contact-btn:hover {
    background: #0bb0e4;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 20px;
        background: white;
        padding: 15px;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
    /* Enable Click Dropdown for Mobile */
    .dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu li a {
        color: white;
        background: #4b0c17;
    }

    .dropdown-menu li a:hover {
        background: none;
        color: #f27e96;
    }    
}

/* Hero Section */
.hero {
    background: url('images/Nfifty-College-Bag-Manufacturer-India.jpg') no-repeat center/cover;
    height: 110vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin-top: 120px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00b7da;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    background: #4ca1af;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}
.cta-btn:hover {
    background: #0bb0e4;
}
/* --- Quote Section --- */
.quote-section {
    background: #003f4b;
    padding: 50px 5%;
    color: white;
    display: flex;
    justify-content: center;
}

/* Form Container */
.form-container {
    max-width: 1200px;
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    color: black;
}

/* Form Layout */
.form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Left Text Section */
.form-text {
    margin-bottom: 20px;
}

/* Form Inputs */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Submit Button */
.submit-btn {
    background:#4ca1af;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Responsive Form: Horizontal Layout */
@media (min-width: 1024px) {
    .form-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .form-text {
        flex: 1;
        max-width: 40%;
    }

    form {
        flex: 1;
        max-width: 55%;
    }
}

/* Form Animation */
.form-container {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.form-container.show {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Navbar for Small Screens */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 20px;
    }
}

/* Trusted Manufacturer */
.trusted-manufacturer {
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.trusted-manufacturer h2 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #222;
}

.trusted-manufacturer p {
  font-size: 16px;
  color: #555;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Bouncing animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-item {
  background: #ffe6e6;
  padding: 20px;
  border-radius: 12px;
  font-weight: bold;
  min-width: 150px;
  text-align: center;
  font-size: 20px;
  color: #333;
  animation: bounce 1.5s infinite ease-in-out alternate;
}

/* Delay each item to bounce sequentially */
.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.6s; }

.stat-item span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #666;
  margin-top: 5px;
}

/* Section Styling */
.categories, .bag-section {
    text-align: center;
    padding: 30px;
    background: white;
    margin-bottom: 20px;
}

/* Scrollable Container */
.scroll-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    max-width: 80vw;
    margin: auto;
}

/* Scrollable Content */
.scroll-content {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* Category & Bag Cards */
.category-item, .bag-item {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    min-width: 250px;
    height: 220px;
    text-align: center;
}

/* Hover Effect */
.category-item:hover, .bag-item:hover {
    transform: scale(1.1);
}

/* Images */
.category-item img, .bag-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.scroll-btn:hover {
    background: black;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

/* Know More Button */
.know-more {
    padding: 10px 20px;
    border: none;
    background: red;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.know-more:hover {
    background: darkred;
}
/* Responsive Design */
@media (max-width: 768px) {
    .scroll-container {
        max-width: 90vw; /* Expand for better fit */
    }

    .scroll-content {
        gap: 10px; /* Reduce gap between items */
    }

    .category-item, .bag-item {
        min-width: 160px; /* Smaller cards for mobile */
        height: auto;
    }

    .category-item img, .bag-item img {
        max-width: 150px;
    }

    .scroll-btn {
        display: none; /* Hide arrows for touch scrolling */
    }

    .know-more {
        width: 100%;
        font-size: 14px;
        padding: 8px;
    }
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-item {
    background: #afe2eb;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item img {
    width: 60px;
    margin-bottom: 10px;
}

/* --- Reviews Section --- */
.reviews-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #fff3e0, #e3f2fd);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Slider Container */
.reviews-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Review Items */
.reviews-slider {
    display: flex;
    gap: 30px;
    width: 200%;
    animation: scrollReviews 15s linear infinite;
}

.review-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.review-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.review-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.review-item p {
    font-size: 14px;
    color: #666;
}

.review-item span {
    font-size: 20px;
    color: gold;
}

/* --- Animation for Auto-Scrolling Reviews --- */
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.reviews-slider:hover {
    animation-play-state: paused;
}
/* Responsive Design */
@media (max-width: 768px) {
    .reviews-slider {
        animation: scrollReviews 30s linear infinite;
    }
}


/* Get in Touch Section */
.get-in-touch {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

/* Left Side - Contact Info */
.contact-left {
    width: 45%;
    animation: fadeInLeft 1s ease-in-out;
}

.contact-left h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.info-box:hover {
    transform: translateX(10px);
}

.info-box i {
    font-size: 24px;
    margin-right: 15px;
    color: #ffeb3b;
}

/* Right Side - Contact Form */
.contact-right {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    animation: fadeInRight 1s ease-in-out;
}

.contact-right h2 {
    font-size: 24px;
    color: #4ca1af;
    margin-bottom: 15px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right input,
.contact-right textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-right button {
    background: #4ca1af;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.contact-right button:hover {
    background: #3679b1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .contact-left, .contact-right {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    padding: 50px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    gap: 30px;
}

/* Footer Logo */
.footer-logo {
    width: 25%;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Links & Services */
.footer-links, .footer-services {
    width: 20%;
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-links ul, .footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 8px;
}

.footer-links ul li a, .footer-services ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: #ffeb3b;
}

.footer-map iframe {
    border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffeb3b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo, .footer-links, .footer-services, .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }
    
}



/*----------------*/
.aboutus {
    background:linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    padding: 40px 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    animation: fadeIn 1.5s ease-in-out;
}

.company-info, .nfifty-bags {
    padding: 20px;
    background: white;
    margin: 20px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.company-info:hover, .nfifty-bags:hover {
    transform: scale(1.02);
}

.mission-vision-values {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mission-vision-values {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/*----------gallery----*/
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    padding: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Custom Grid Layout Based on Reference Image */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 992px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/*---resources----*/
.resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.resource {
    background: white;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    position: relative;
    animation: moveLeftRight 3s infinite alternate ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.resource img {
    max-width: 100%;
    border-radius: 8px;
    animation: jump 2s infinite alternate ease-in-out, scaleUpDown 2s infinite alternate ease-in-out;
}

/* Moving left to right */
@keyframes moveLeftRight {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

/* Jumping animation */
@keyframes jump {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Scaling up and down */
@keyframes scaleUpDown {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Hover effects */
.resource:hover {
    transform: rotateY(10deg) rotateX(10deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.faq {
    padding: 20px;
}

.faq h2 {
    text-align: center;
}

details {
    background: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

summary {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background: #ddd;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

summary:hover {
    background: #bbb;
}

details p {
    padding: 10px;
    margin: 0;
    background: #f1f1f1;
}

/*----------review----------*/
.order-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.step:hover {
    transform: scale(1.05);
}
.about {
    background: white;
    padding: 40px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.btn {
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn:hover {
    background: darkred;
}
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.feature {
    background: #ffebee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.feature i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #d32f2f;
}
.reviews {
    margin: 30px 0;
}
.review-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

#whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 300px;
  max-width: 90%;
  z-index: 1000;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#whatsapp-header {
  background: #25D366;
  color: white;
  padding: 12px;
  font-weight: bold;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

#whatsapp-form {
  padding: 16px;
}

#whatsapp-form input,
#whatsapp-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

#whatsapp-form button {
  background-color: #25D366;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.minimize-btn,
.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
}

#whatsapp-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  padding: 10px 14px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ✅ Media Query for Small Devices */
@media (max-width: 480px) {
  #whatsapp-widget {
    width: 90%;
    right: 5%;
    bottom: 10px;
    font-size: 14px;
  }

  #whatsapp-header {
    font-size: 14px;
    padding: 10px;
  }

  .minimize-btn,
  .close-btn {
    font-size: 16px;
  }

  #whatsapp-form button {
    font-size: 14px;
  }
}