/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Roboto:wght@400;700&display=swap');



h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #e8eddf; /* Light background color */
    background-image: url('images/bg2jpg'); /* Background image */
    background-size: cover; /* Ensure the image covers the entire body */
    background-position: center; /* Center the image */
    color: #333533; /* Dark gray text color */
    margin: 0;
    padding: 0;
    font-size: 18px; /* Increased font size for better readability */
    min-height: 100vh; /* Ensure body takes full viewport height */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

header {
    background: linear-gradient(135deg, rgba(36, 36, 35, 0.6), rgba(51, 53, 51, 0.6)), 
                url('images/bg2.jpg'); /* Gradient with transparency */
    background-size: cover; /* Ensure the image covers the header */
    background-position: center; /* Center the image */
    padding: 30px; /* Increased padding for a more spacious header */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%; /* Full-width header */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Slogan Styling */
.slogan {
    font-family: 'Roboto', sans-serif; /* Stylish font */
    color: #f0f0f0; /* Light color for better contrast */
    font-size: 1rem; /* Slightly smaller font size */
    margin-top: 10px; /* Space above the slogan */
    margin-bottom: 20px; /* Space below the slogan */
    font-weight: 400; /* Regular font weight */
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start with a slight downward shift */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transition */
    animation: fadeInUp 1s ease-in-out forwards; /* Animation */
}

/* Keyframes for the fade-in-up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for the drop-in animation */
@keyframes dropIn {
    0% {
        opacity: 0; /* Hidden at the start */
        transform: translateY(-50px); /* Position above the viewport */
    }
    100% {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Position in the final location */
    }
}
/* Optional: Add a subtle text shadow */
.slogan {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* Adds a slight shadow for depth */
}

/* Hover effect on header */
header:hover .slogan {
    animation: bounceIn 1s ease-in-out; /* Bounce animation on hover */
}

/* Keyframes for the bounce-in animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


header h1 {
    margin: 0;
    color: #cfdbd5; /* Light text color */
    font-size: 3.5em; /* Larger font size for emphasis */
    font-family: 'Roboto', sans-serif; /* Stylish font for headings */
    font-weight: 700; /* Bold weight for prominence */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle text shadow */
    transition: transform 0.3s ease;
}

header nav a {
    text-decoration: none;
    color: #cfdbd5; /* Light text color */
    background-color: #000000; /* Solid background color */
    padding: 15px 25px; /* Increased padding for larger buttons */
    margin: 0 7px; /* Increased margin between buttons */
    border-radius: 5px;
    font-size: 1.3em; /* Slightly larger font size */
    display: inline-block;
    font-family: 'Poppins', sans-serif; /* Stylish font for links */
    font-weight: 600; /* Semi-bold weight for emphasis */
    text-transform: uppercase; /* Uppercase for buttons */
    letter-spacing: 1px; /* Spacing between letters */
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg); /* Initial state for 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Initial shadow */
}

header nav a:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1); /* Apply 3D rotation and scaling */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
}






/* Responsive design for mobile devices */
@media only screen and (max-width: 768px) {
    body {
        font-size: 16px; /* Slightly smaller font size for readability on mobile */
        padding: 0 10px; /* Adjust padding for smaller screens */
        background-size: cover;
    }

    header {
        padding: 20px; /* Reduce padding for smaller screens */
    }

    header h1 {
        font-size: 2.5em; /* Smaller font size for headings on mobile */
    }

    .slogan {
        font-size: 0.9rem; /* Adjust font size for the slogan */
        margin-top: 5px;
        margin-bottom: 15px;
    }

    header nav a {
        font-size: 1em; /* Smaller font size for nav links */
        padding: 10px 15px; /* Reduce padding for nav links */
        margin: 5px 0; /* Stack buttons vertically on mobile */
        display: block; /* Ensure buttons take full width on mobile */
        text-align: center; /* Center text in the buttons */
        transform: translateY(0); /* Remove initial transform */
        opacity: 1; /* Make sure they are visible without animation */
        box-shadow: none; /* Simplify shadow for better performance */
    }

    header nav {
        margin-top: 20px; /* Add spacing above the nav on mobile */
    }

    /* Remove hover effects on touch devices */
    header nav a:hover {
        transform: none; /* Disable the 3D transform on hover */
        box-shadow: none; /* Disable shadow enhancement on hover */
    }

    /* Ensure images adjust to mobile screen */
    img {
        max-width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
    }

    /* Responsive design for smaller mobile devices */
    @media only screen and (max-width: 480px) {
        header h1 {
            font-size: 2em; /* Even smaller font size for very small screens */
        }

        .slogan {
            font-size: 0.8rem; /* Further adjust font size for the slogan */
        }

        header {
            padding: 15px; /* Further reduce padding */
        }

        header nav a {
            font-size: 0.9em; /* Further reduce font size for nav links */
            padding: 8px 12px; /* Further reduce padding for nav links */
        }
    }
}

.container {
    padding: 30px; /* Increased padding for a more spacious container */
    background-color: #cfdbd5; /* Light background color */
    margin: 20px auto;
    width: 80%;
    max-width: 1000px; /* Increased max-width for a wider container */
    border-radius: 10px;
    padding-bottom: 100px; /* Add space at the bottom to prevent overlap with footer */
}

.tab {
    overflow: hidden;
    border-bottom: 1px solid #333533; /* Dark gray border */
    background-color: #f5cb5c; /* Solid background color */
    display: flex;
    justify-content: space-around;
}

.tab button, .btn {
    background-color: inherit;
    color: #242423; /* Dark text color */
    padding: 16px 20px; /* Increased padding for larger buttons */
    border: none;
    cursor: pointer;
    width: 33.33%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 18px; /* Slightly larger font size */
    font-family: 'Poppins', sans-serif; /* Stylish font for buttons */
    perspective: 1000px; /* Perspective for 3D effect */
}

.tab button:hover, .btn:hover {
    transform: rotateX(10deg) rotateY(10deg) scale(1.1); /* Apply 3D rotation and scaling */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
}

.tabcontent {
    display: none;
    padding: 30px; /* Increased padding for a more spacious content area */
    background-color: #e8eddf; /* Light background color */
    border-radius: 10px;
    font-family: 'Roboto', sans-serif; /* Stylish font for tab content */
}



/* Responsive design for mobile devices */
@media only screen and (max-width: 768px) {
    .container {
        width: 95%; /* Adjust container width for smaller screens */
        padding: 20px; /* Reduce padding for smaller screens */
        margin: 10px auto; /* Adjust margin for smaller screens */
        padding-bottom: 50px; /* Reduce bottom padding */
    }

    .tab {
        flex-direction: column; /* Stack tabs vertically on mobile */
    }

    .tab button, .btn {
        width: 100%; /* Make buttons full-width */
        padding: 12px; /* Adjust padding for buttons on smaller screens */
        font-size: 16px; /* Reduce font size for smaller screens */
    }

    .tabcontent {
        padding: 20px; /* Reduce padding for content on smaller screens */
    }

    input[type="text"], input[type="number"], textarea {
        padding: 10px; /* Adjust padding for input fields on smaller screens */
        font-size: 16px; /* Adjust font size for inputs */
    }

    textarea {
        height: 150px; /* Reduce height for textarea on smaller screens */
    }

    button, .btn {
        padding: 10px 20px; /* Adjust padding for buttons on smaller screens */
        font-size: 16px; /* Adjust font size for buttons */
    }

    /* Responsive design for smaller mobile devices */
    @media only screen and (max-width: 480px) {
        .container {
            width: 100%; /* Make container full-width on very small screens */
            padding: 15px; /* Further reduce padding */
        }

        .tab button, .btn {
            padding: 10px; /* Further reduce padding for buttons */
            font-size: 14px; /* Further reduce font size */
        }

        .tabcontent {
            padding: 15px; /* Further reduce padding for content */
        }

        input[type="text"], input[type="number"], textarea {
            padding: 8px; /* Further adjust padding for input fields */
            font-size: 14px; /* Further adjust font size */
        }

        textarea {
            height: 120px; /* Further reduce height for textarea */
        }

        button, .btn {
            padding: 8px 15px; /* Further adjust padding for buttons */
            font-size: 14px; /* Further adjust font size for buttons */
        }
    }
}
















footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #333533, #242423); /* Dark gradient background */
    position: relative; /* Changed from fixed to relative */
    width: 100%;
    bottom: 0;
    font-family: 'Poppins', sans-serif; /* Stylish font for footer */
    font-weight: 600; /* Semi-bold weight */
    color: #cfdbd5; /* Light text color */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.footer-links img {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    border-radius: 50%;
    background-color: #333533;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover img {
    background-color: #f5cb5c;
    transform: scale(1.1);
}

.address {
    margin-top: 10px;
    font-size: 1em; /* Slightly larger font size */
    color: #cfdbd5;
}



/* Responsive design for mobile devices */
@media only screen and (max-width: 768px) {
    footer {
        padding: 15px; /* Reduce padding for smaller screens */
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .footer-content {
        max-width: 90%; /* Reduce max-width for smaller screens */
        margin: 0 auto;
    }

    .footer-links {
        margin: 15px 0; /* Adjust margin for better spacing on mobile */
    }

    .footer-links a {
        margin: 0 10px; /* Reduce margin between links */
    }

    .footer-links img {
        width: 40px; /* Reduce icon size for smaller screens */
        height: 40px;
    }

    .address {
        font-size: 0.9em; /* Reduce font size for address text */
    }
}

/* Responsive design for smaller mobile devices */
@media only screen and (max-width: 480px) {
    footer {
        padding: 10px; /* Further reduce padding for very small screens */
        font-size: 12px; /* Further adjust font size */
    }

    .footer-content {
        max-width: 100%; /* Make footer content full-width */
        padding: 0 10px; /* Add some horizontal padding */
    }

    .footer-links a {
        margin: 0 5px; /* Further reduce margin between links */
    }

    .footer-links img {
        width: 35px; /* Further reduce icon size */
        height: 35px;
    }

    .address {
        font-size: 0.8em; /* Further reduce font size for address text */
    }
}












#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    color: #f5f5f5;
    text-align: center;
    padding: 200px 20px;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #f5cb5c;
    color: #333533;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e8eddf;
    transform: scale(1.1);
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
    padding: 20px;
    background-color: #f8f9fa;
}

.image-card {
    width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .overlay {
    opacity: 1;
}

/* Intro section styling */
.intro {
    text-align: center;
    padding: 60px 20px;
     
    color: #333533;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Section title styling */
.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333533;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.intro h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #333533;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/* Paragraph styling */
.intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* List styling */
.intro ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.intro ul li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #cfdbd5;
    color: #333533;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 45%;
    max-width: 45%;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.intro ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Highlight feature titles */
.intro ul li strong {
    color: #f5cb5c;
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
    position: relative;
}

.intro ul li strong::before {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #f5cb5c;
    position: absolute;
    bottom: -5px;
    left: 0;
}





/* Responsive design for tablets and smaller devices */
@media only screen and (max-width: 768px) {
    /* Adjust hero content padding and font sizes */
    .hero-content {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Adjust image gallery layout */
    .image-gallery {
        gap: 15px;
        margin: 30px 0;
        padding: 10px;
    }

    .image-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-card img {
        height: auto;
    }

    /* Adjust intro section padding and font sizes */
    .intro {
        padding: 40px 15px;
    }

    .intro h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .intro p {
        font-size: 1rem;
    }

    .intro ul li {
        font-size: 1rem;
        padding: 10px;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .intro ul li strong {
        font-size: 1.1rem;
    }
}

/* Responsive design for smaller mobile devices */
@media only screen and (max-width: 480px) {
    /* Further adjust hero content padding and font sizes */
    .hero-content {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Further adjust image gallery layout */
    .image-gallery {
        gap: 10px;
        margin: 20px 0;
        padding: 5px;
    }

    .image-card {
        width: 100%;
    }

    .image-card img {
        height: auto;
    }

    /* Further adjust intro section padding and font sizes */
    .intro {
        padding: 30px 10px;
    }

    .intro h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .intro p {
        font-size: 0.9rem;
    }

    .intro ul li {
        font-size: 0.9rem;
        padding: 8px;
    }

    .intro ul li strong {
        font-size: 1rem;
    }
}






















/* Testimonials section */
.testimonials {
    background-color: #cfdbd5;
    color: #cfdbd5;
    padding: 60px 20px;
    text-align: center;
}

/* Section title */
.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f5cb5c;
    animation: fadeInDown 0.5s ease-in-out;
}

/* Grid layout for testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 20px; /* Space between items */
    justify-items: center;
}

/* Testimonial items */
.testimonial-item {
    background-color: #222;
    padding: 30px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px; /* Limit width to keep items aligned */
    position: relative;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonial images */
.testimonial-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f5cb5c;
    transition: transform 0.3s ease;
}

.testimonial-item:hover .testimonial-img {
    transform: rotate(360deg);
}

/* Text styling */
.testimonial-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cfdbd5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-item h3 {
    font-size: 1.1rem;
    color: #f5cb5c;
    margin-top: 10px;
    font-style: italic;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive design for tablets and smaller devices */
@media only screen and (max-width: 768px) {
    .testimonials {
        padding: 40px 15px; /* Reduce padding for smaller screens */
    }

    .testimonials h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        margin-bottom: 25px; /* Adjust margin */
    }

    .testimonial-grid {
        grid-template-columns: 1fr; /* Change to single column layout */
        gap: 15px; /* Adjust space between items */
    }

    .testimonial-item {
        max-width: 90%; /* Increase width to take up more space on smaller screens */
        margin: 10px auto; /* Center items */
    }

    .testimonial-img {
        width: 150px; /* Reduce image size */
        height: 150px;
    }

    .testimonial-item p {
        font-size: 0.95rem; /* Slightly reduce font size */
        line-height: 1.4; /* Adjust line height */
    }

    .testimonial-item h3 {
        font-size: 1rem; /* Adjust heading font size */
        margin-top: 8px; /* Adjust margin */
    }
}

/* Responsive design for smaller mobile devices */
@media only screen and (max-width: 480px) {
    .testimonials {
        padding: 30px 10px; /* Further reduce padding for very small screens */
    }

    .testimonials h2 {
        font-size: 1.8rem; /* Further reduce font size */
        margin-bottom: 20px; /* Adjust margin */
    }

    .testimonial-item {
        padding: 20px; /* Reduce padding inside testimonial items */
        max-width: 100%; /* Make items full-width */
        margin: 10px 0; /* Adjust margin */
    }

    .testimonial-img {
        width: 120px; /* Further reduce image size */
        height: 120px;
    }

    .testimonial-item p {
        font-size: 0.9rem; /* Further reduce font size */
        line-height: 1.3; /* Further adjust line height */
    }

    .testimonial-item h3 {
        font-size: 0.95rem; /* Further adjust heading font size */
    }
}

















/* Container for the form */
.contact-form {
    background-color: #cfdbd5;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

/* Header styling */
.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333533;
    animation: fadeIn 1s ease-in-out;
}

/* Form styling */
.contact-form form {
    max-width: 500px;
    margin: 0 auto;
    
}

/* Contact Panel Styling */
.contact-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
   
    padding: 40px; /* Increased padding */
}

/* Contact Form Styling */
.contact-form {
    background-color: #333533;
    padding: 40px 30px; /* Increased padding for more space */
    border-radius: 15px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.3), -8px -8px 30px rgba(255, 255, 255, 0.1);
    max-width: 500px; /* Increased max-width */
    width: 100%;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5), -10px -10px 40px rgba(255, 255, 255, 0.2);
}

.contact-form h2 {
    font-size: 2.5rem; /* Increased font size */
    color: #f5cb5c;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.contact-form label {
    font-size: 1.4rem; /* Increased font size */
    color: #f5cb5c;
    margin-bottom: 12px; /* Adjusted margin */
    display: block;
    opacity: 0;
    animation: slideIn 0.6s forwards;
}

/* Input and Textarea Styling */
.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px); /* Adjusted to fit within the panel */
    padding: 15px; /* Increased padding */
    margin-bottom: 20px;
    border: 1px solid #333533;
    border-radius: 8px;
    font-size: 1.2rem; /* Increased font size */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #e5e7e9;
    box-shadow: inset 4px 4px 12px #a9acad, inset -4px -4px 12px #ffffff;
    box-sizing: border-box;
}

/* Stylish Placeholder with Color and 3D Effect */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ff6f61; /* Vibrant placeholder color */
    font-style: italic;
    font-size: 1.1rem; /* Slightly larger font size */
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
    text-shadow: 1px 1px 3px #000;
    padding-left: 10px;
    background: linear-gradient(135deg, #debe2d, #cfdbd5);
    -webkit-background-clip: text;
    background-clip: text;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

/* Change placeholder style on focus */
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: transparent;
    background: linear-gradient(135deg, #ff6f61, #debe2d);
    -webkit-background-clip: text;
    background-clip: text;
    transform: translateY(-5px) scale(1.05);
    opacity: 1;
    text-shadow: 3px 3px 6px #000;
}

/* Placeholder Animation on Input Focus */
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    animation: placeholderSlideUp 0.4s ease-in-out forwards;
}

@keyframes placeholderSlideUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-5px) scale(1.05);
        opacity: 1;
    }
}

/* Hover Effect on the Input Fields */
.contact-form input:hover,
.contact-form textarea:hover {
    box-shadow: 0 0 15px rgba(245, 203, 92, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
    border-color: #f5cb5c;
}

/* Input and Textarea Active State */
.contact-form input:active,
.contact-form textarea:active {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Button Styling */
.contact-form button {
    background-color: #f5cb5c;
    color: #333533;
    padding: 15px 30px; /* Adjusted padding */
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2), -4px -4px 12px rgba(255, 255, 255, 0.1);
}

.contact-form button:hover {
    background-color: #333533;
    color: #f5cb5c;
    transform: scale(1.05);
}

.contact-form button:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Responsive design for tablets and smaller devices */
@media only screen and (max-width: 768px) {
    .contact-panel {
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .contact-form {
        padding: 30px 20px; /* Reduce padding inside form */
        max-width: 100%; /* Ensure form takes full width */
        box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2), -6px -6px 20px rgba(255, 255, 255, 0.1);
    }

    .contact-form h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        margin-bottom: 20px; /* Adjust margin */
    }

    .contact-form label {
        font-size: 1.2rem; /* Adjust label font size */
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px; /* Reduce padding in inputs */
        font-size: 1rem; /* Adjust font size */
    }

    .contact-form button {
        padding: 12px 20px; /* Reduce button padding */
        font-size: 1rem; /* Adjust font size */
    }
}

/* Responsive design for smaller mobile devices */
@media only screen and (max-width: 480px) {
    .contact-form {
        padding: 20px 15px; /* Further reduce padding for very small screens */
        box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2), -4px -4px 16px rgba(255, 255, 255, 0.1);
    }

    .contact-form h2 {
        font-size: 1.8rem; /* Further reduce font size */
        margin-bottom: 15px; /* Further adjust margin */
    }

    .contact-form label {
        font-size: 1.1rem; /* Further reduce label font size */
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px; /* Further reduce padding */
        font-size: 0.9rem; /* Further adjust font size */
    }

    .contact-form button {
        padding: 10px 15px; /* Further reduce button padding */
        font-size: 0.9rem; /* Further adjust font size */
    }
}



























/* What's New and Trending Section */
.whats-new, .future {
    padding: 60px 20px;
    background-color: #cfdbd5; /* Light background color */
    color: #333533;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 40px auto; /* Spacing above and below */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats-new:hover, .future:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.whats-new h2, .future h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f5cb5c; /* Accent color */
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.whats-new h2::after, .future h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #333533;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/* Content Grid */
.content-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual Content Boxes */
.new-trend, .future-vision {
    background-color: #e8eddf;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 45%;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.new-trend:hover, .future-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}








/* Responsive design for tablets and smaller devices */
@media only screen and (max-width: 768px) {
    .whats-new, .future {
        padding: 40px 15px; /* Reduce padding for smaller screens */
        max-width: 100%; /* Ensure section takes full width */
        margin: 30px 10px; /* Adjust margin for smaller screens */
    }

    .whats-new h2, .future h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        margin-bottom: 20px; /* Adjust margin */
    }

    .content-grid {
        flex-direction: column; /* Stack items vertically */
        gap: 20px; /* Adjust gap between items */
    }

    .new-trend, .future-vision {
        max-width: 100%; /* Make content boxes full width */
        padding: 20px; /* Reduce padding inside content boxes */
    }
}

/* Responsive design for smaller mobile devices */
@media only screen and (max-width: 480px) {
    .whats-new, .future {
        padding: 30px 10px; /* Further reduce padding for very small screens */
    }

    .whats-new h2, .future h2 {
        font-size: 1.8rem; /* Further reduce font size */
        margin-bottom: 15px; /* Further adjust margin */
    }

    .content-grid {
        gap: 15px; /* Further adjust gap between items */
    }

    .new-trend, .future-vision {
        padding: 15px; /* Further reduce padding inside content boxes */
    }
}
