/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
  }
  
#animated-heading{
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
}

  /* Hero Section Styling */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    overflow: hidden;
  }
  
  /* Video Background Styling */
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
  }
  
  .video-background video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.7; /* Slight opacity to allow overlay */
    
  }
  
  /* Overlay for better text visibility */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text stand out */
    z-index: -1;
  }
  
  /* Hero Content Styling */
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out forwards;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeIn 2s ease-out forwards 0.5s;
  }
  
  .cta-button {
    background-color: #ff7043; /* Soft orange tone */
    color: #ffffff;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-5px);
}

/* Fun Animated Effect on Buttons */
.cta-button {
    animation: glow 1.5s ease-in-out infinite alternate;
}
  
  /* Fade-in and Slide-up animation */
  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
  }
  
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adding shadow for text */
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Top Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Dark background for navigation */
    padding: 10px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    max-width: 80px; /* Adjust logo size */
}

.nav-links {
    list-style: none;
    display: flex;
    padding-top: 20px;
    gap: 30px;
}

.nav-links li {
    font-size: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #f06, #ffbb33); /* Gradient background for a modern feel */
    border-radius: 30px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide menu items on mobile */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: block; /* Show menu when active */
    }

    .nav-links li {
        margin-bottom: 15px;
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
    }
}

/* Smooth transition for hamburger menu */
.hamburger-menu {
    transition: transform 0.3s ease;
}


/* Section Styles */
.section {
    padding: 60px 0;
    position: relative;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

p {
    text-align: center;
    font-size: 1.2rem;
}

/* Our Services Section */
.services {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 20px;
}

.service {
    width: 30%;
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    background: linear-gradient(145deg, #ff4081, #ff6f00); /* Gradient colors */
    -webkit-background-clip: text; /* Clips the background to the text */
    color: transparent; /* Makes the text color transparent so the gradient shows */
    transition: transform 0.3s ease, color 0.3s ease;
}

.service p {
    font-size: 1rem;
    color: #666;
}

/* Portfolio Section */
#portfolio {
    padding: 60px 0;
    background: linear-gradient(135deg, #f06, #ffbb33); /* Gradient background for a modern feel */
    color: white;
    text-align: center;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.portfolio-item {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: #f9f9f9; /* Light background on hover */
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1); /* Zoom effect on image hover */
}

.portfolio-item h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.portfolio-item p {
    color: #666;
    font-size: 1.1em;
}

/* Modal Styling */


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

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Dark background */
    padding-top: 60px;
    animation: fadeIn 0.3s ease-out; /* Modal fade-in animation */
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    animation: zoomIn 0.3s ease-out; /* Modal zoom-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 25px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.modal p {
    font-size: 1.2em;
    color: #555;
}

.modal .btn {
    color: white;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

.modal .btn:hover {
    background-color: #005bb5;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Adding responsiveness */
@media (max-width: 768px) {
    .portfolio-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        width: 100%;
    }
}

/* Form Styles */
form {
    width: 60%;
    margin: 0 auto;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

form button {
    padding: 10px 20px;
    background: #f39c12;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s, transform 0.3s;
}

form button:hover {
    background: #e67e22;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .services {
        flex-direction: column;
        gap: 30px;
    }

    .service {
        width: 100%;
    }

    .portfolio-container {
        flex-direction: column;
    }

    .portfolio-item {
        width: 100%;
    }

    form {
        width: 90%;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


/* Funky Portfolio Section */

.funky-portfolio::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2; /* Add a funky pattern overlay */
    z-index: -1;
}

.funky-heading {
    font-size: 3.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.portfolio-item {
    width: 30%; /* Default width for larger screens */
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.portfolio-item:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background-color: #ffcc00;
    transition: all 0.3s ease;
}

.portfolio-item h3 {
    margin-top: 15px;
    font-size: 2rem;
    color: #333;
    font-family: 'Orbitron', sans-serif;
}

.portfolio-item p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1); /* Zoom effect on image hover */
}

.portfolio-item:before {
    font-size: 2rem;
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: -1;
}

.portfolio-item:after {
    font-size: 2rem;
    position: absolute;
    bottom: -20px;
    right: 10px;
    z-index: -1;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.close:focus {
    color: #000;
}

.modal h3 {
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 20px;
}

.modal p {
    font-size: 1.2em;
    color: #555555;
}

.modal img {
    width: 100%;
    border-radius: 10px;
}

.next {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: linear-gradient(145deg, #ff4081, #ff6f00);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: glow 1.5s ease-in-out infinite alternate;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 1024px) {
    .portfolio-item {
        width: 45%; /* Two items per row for medium-sized screens */
    }
}

@media (max-width: 768px) {
    .portfolio-item {
        width: 90%; /* One item per row for small tablets */
    }
    .funky-heading {
        font-size: 2.5rem; /* Adjust heading font size */
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        width: 100%; /* Stack items vertically on mobile devices */
    }
    .funky-heading {
        font-size: 2rem; /* Adjust heading font size for small screens */
    }
}

/* Brands I've worked with */


/* General styles */
body {
    font-family: Arial, sans-serif;
}

.brands-section {
    background-color: none;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

/* Carousel container */
.brands-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 0px;
    text-align: center;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .carousel-slide {
        width: 150px; /* Smaller logo sizes on mobile */
    }

    .section-title {
        font-size: 1.5rem;
    }
}


/* Pricing cards - Our packages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }
  
  /* Container for the pricing section */
  .pricing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;  /* Padding for the section */
  }
  
  .pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
  }
  
  /* Common card styles */
  .pricing-card {
    background: linear-gradient(135deg, #6e7e8f, #3e4b5b);
    color: white;
    padding: 40px 30px; /* Padding inside the card */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .pricing-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
  }
  

  .price {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: black;
    background: linear-gradient(145deg, #ff4081, #ff6f00); /* Gradient colors */
    -webkit-background-clip: text; /* Clips the background to the text */
    color: transparent; /* Makes the text color transparent so the gradient shows */
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .more {
    font-style: italic;
    font-weight: bold;
    background: linear-gradient(145deg, #ff4081, #ff6f00); /* Gradient colors */
    -webkit-background-clip: text; /* Clips the background to the text */
    color: transparent; /* Makes the text color transparent so the gradient shows */
    transition: transform 0.3s ease, color 0.3s ease;

  }

  .Tagline {
    font-style: italic;
    font-weight: bold;
    background: linear-gradient(145deg, #ff4081, #ff6f00); /* Gradient colors */
    -webkit-background-clip: text; /* Clips the background to the text */
    color: transparent; /* Makes the text color transparent so the gradient shows */
    transition: transform 0.3s ease, color 0.3s ease;

  }

  .Tagline2 {
    font-style: italic;
    font-weight: bold;
    background: linear-gradient(145deg, #ffffff, #ffffff); /* Gradient colors */
    -webkit-background-clip: text; /* Clips the background to the text */
    color: transparent; /* Makes the text color transparent so the gradient shows */
    transition: transform 0.3s ease, color 0.3s ease;

  }
  
  ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-left: 0;
  }
  
  ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ffffff;
  }
  
  
  /* Hover effects for pricing cards */
  .pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  /* Highlighted middle card */
  .card-2 {
    background: linear-gradient(135deg, #ff6a00, #ff9b42);
    box-shadow: 0 10px 40px rgba(255, 106, 0, 0.2);
    transform: translateY(-5px); /* Elevate the middle card */
  }
  
  .card-2:hover {
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;  /* Reduced gap for mobile */
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;  /* Reduced gap for tablet */
    }
  }
  
  /* Animation when the cards come into view */
  @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .pricing-card.visible {
    animation: fadeInUp 1s ease forwards;
  }
  
  /* Animation for price scaling */
  .pricing-card:hover .price {
    transform: scale(1.1);
  }
  
  /* Hover effect on card */
  .pricing-card:hover {
    background: linear-gradient(135deg, #ff6a00, #ff9b42); /* Slight color shift */
    transform: translateY(-10px) scale(1.05); /* Slight scaling on hover */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  }  


/* Contact Form Container */

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: radial-gradient(circle, #ffeb3b, #ff9800);
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.3s ease;
}

/* Fun Hover Effect on Form */
.contact-form-container:hover {
    transform: scale(1.05);
}

.logo-container {
    text-align: center;
    margin-bottom: -40px;
}

.contact-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}


.contact-logo:hover {
    transform: rotate(360deg);
}

.section-title {
    margin-bottom: 30px;
    color: #333;
}
/* Form Groups */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #ff4081;
    border-radius: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    border-color: #6200ea;
    background-color: #f1f1f1;
    box-shadow: 0 0 10px rgba(98, 0, 234, 0.5);
    outline: none;
}

/* Submit Button */
.submit-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: linear-gradient(145deg, #ff4081, #ff6f00);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Response Message */
.response-message {
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
    background-color: #ffeb3b;
    border-radius: 5px;
    color: #333;
}

/* Fun Animated Effect on Buttons */
.submit-btn {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 64, 129, 0.8);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 64, 129, 1);
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-logo {
        max-width: 150px;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 30px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
}

.contact-section {
    padding: 100px 20px;
    background: white;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 0;
    animation: pulseBackground 3s infinite ease-in-out;
}


/* Animated Elements */
.contact-section h2, .contact-section p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards, funkyBounce 2s infinite ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes funkyBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-section h2 {
    font-size: 4rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: funkyBounce 2s infinite ease-in-out;
}

.contact-section p {
    font-size: 1.3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}


/* Connect with us */

.follow-us {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    animation: fadeIn 1s ease-in-out;
  }
  
  .follow-us h3 {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-in-out;
  }
  
  .follow-us p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-in-out;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between icons */
    animation: fadeInUp 1.5s ease-in-out;
  }
  
  .social-link {
    display: inline-block;
    font-size: 3rem; /* Icon size */
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    position: relative;
    animation: bounce 2s ease-in-out infinite; /* Bounce animation added */
    background-color: transparent; /* No background */
    border: none; /* No border */
    padding: 0; /* No padding */
  }
  
  .social-link .fa-whatsapp {
    color: #25D366; /* WhatsApp green */
  }
  
  .social-link .fa-facebook {
    color: #1877f2; /* Facebook blue */
  }
  
  .social-link .fa-instagram {
    color: #e1306c; /* Instagram pink */
  }
  
  /* Bouncing animation keyframes */
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    30% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(0);
    }
    70% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 600px) {
    .social-links {
      flex-direction: column;
      gap: 20px;
    }
  
    .social-icon {
      font-size: 3rem; /* Larger icons on small screens */
    }
  }
  