/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Roboto&family=Poppins&family=Lato&family=Source+Sans+Pro&display=swap');

/* ==========================================================================
   Table of Contents
   ========================================================================== */

/* 1. General Styles */
/* 2. Typography */
/* 3. Layout Styles */
/* 4. Component Styles */
/*    4.1 Navbar */
/*    4.2 Hero */
/*    4.3 About */
/*    4.4 Before-After */
/*    4.5 Services */
/*    4.6 How We Work */
/*    4.7 Testimonials */
/*    4.8 Contact Form */
/*    4.9 Footer */
/* 5. Responsive Design */

/* ==========================================================================
   1. General Styles
   ========================================================================== */

/* Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6rem;
    background-color: #000000;
    color: #ffffff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: 'Source Sans Pro', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* ==========================================================================
   3. Layout Styles
   ========================================================================== */

.grid {
    display: grid;
    gap: 2rem;
}

.grid-two-col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-three-col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-four-col {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   4. Component Styles
   ========================================================================== */

/* 4.1 Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #000;
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(255, 255, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 0.2rem;
    text-shadow: 2px 2px 12px rgba(255, 215, 0, 0.5);
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
}

.menu-toggle {
    display: none;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

/* 4.2 Hero */
.hero {
    background-color: #0f0f0f;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 960px;
    margin: auto;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-heading span {
    color: #ffd700;
}

.hero-subheading {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #dddddd;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: #ffd700;
    color: #000 !important;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.8rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #f5c400;
    transform: scale(1.05);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #bbbbbb;
}

/* 4.3 About */
.about-section {
    padding: 4rem 2rem;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.about-container .left-side,
.about-container .right-side {
    flex: 1;
    min-width: 300px;
}

.about-nitish h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.about-nitish p {
    font-size: 1.6rem;
}

.about-section .section {
    background-color: #1a1a1a;
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-section .section:hover {
    transform: scale(1.05);
}

.about-section .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.about-section .icon:hover {
    filter: invert(83%) sepia(50%) saturate(360%) hue-rotate(360deg);
}

.button {
    background-color: yellow;
    color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e6b800;
}

/* 4.4 Before-After */
.before-after-section {
    padding: 4rem 2rem;
}

.before-after {
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.before-after h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.before-after table {
    width: 100%;
    border-collapse: collapse;
}

.before-after th,
.before-after td {
    padding: 1.6rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.before-after th {
    font-weight: 600;
    color: #eee;
    background-color: #222;
}

.before-after tr:last-child td {
    border-bottom: none;
}

.before-after .column-heading {
    font-weight: bold;
    color: #ddd;
    font-size: 1.8rem;
}

/* 4.5 Services */
.service {
    padding: 4rem 2rem;
}

.services-container {
    text-align: center;
}

.services-container h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd700;
    text-shadow: 0 0 10px #fff, 0 0 20px #ffd700, 0 0 30px #ffd700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.service-item:hover {
    transform: scale(1.05);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-item p {
    font-size: 1.4rem;
}

/* 4.6 How We Work */
.work-container {
    padding: 4rem 2rem;
    text-align: center;
}

.work-container h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-step {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.work-step:hover {
    transform: scale(1.05);
}

.work-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.work-step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.work-step p {
    font-size: 1.4rem;
}

/* 4.7 Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.testimonial p {
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
}

.testimonial h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #ffc107;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ffc107;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

/* 4.8 Contact Form */
.contactUs {
    padding: 5rem 2rem;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2px;
}

.contact-form {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.contact-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: 5px;
    background-color: #2d2d2d;
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid yellow;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background-color: yellow;
    color: black;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.contact-form button:hover {
    background-color: #e6b800;
}

/* 4.9 Footer */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 4rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-container div {
    flex: 1;
    margin: 1rem;
    min-width: 250px;
}

.footer-container h3 {
    margin-bottom: 1rem;
}

.footer-container p,
.footer-container ul,
.footer-container form {
    margin: 0.5rem 0;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin: 0.5rem 0;
}

.footer-container a {
    color: #fff;
}

.footer-container a:hover {
    color: #f5c400;
}

.social-icons a {
    margin-right: 1rem;
}

.social-icons i {
    font-size: 2rem;
}

.footer-container form {
    display: flex;
}

.footer-container input[type="email"] {
    flex: 1;
    padding: 0.5rem;
}

.footer-container button {
    background-color: #ffd700;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    outline: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
}

.about-section .about-container {
    display: flex !important;
    justify-content: space-between !important;
    /* This will push the divs to left and right */
    align-items: center !important;
    /* Vertically aligns items in the center */
    padding: 20px !important;
    /* Add some padding around the container */
}


/* ==========================================================================
   5. Responsive Design
   ========================================================================== */

/* Mobile Styles */
@media (max-width: 768px) {

    /* General */
    .container {
        padding: 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    /* Navbar */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* About Section */
    .about-container {
        display: flex;
        flex-direction: column;
    }


    .about-container .left-side,
    .about-container .right-side {
        width: 100%;
    }

    /* Before-After Section */
    .before-after th,
    .before-after td {
        padding: 1rem;
        font-size: 1.4rem;
    }

    .before-after .column-heading {
        font-size: 1.6rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Testimonials Section */
    .arrow {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    /* Footer Section */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-container div {
        width: 90%;
    }

    .footer-container form {
        flex-direction: column;
    }

    .footer-container input[type="email"] {
        width: 100%;
        margin-bottom: 5px;
    }

    .footer-container button {
        width: 100%;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 2rem;
    }

    .hero-heading {
        font-size: 2.4rem;
    }

    .hero-subheading {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-container .left-side,
    .about-container .right-side {
        width: 100%;
    }

    .about-nitish {
        padding: 20px;
    }

    .about-section .section {
        width: 100%;
        margin: 15px 0;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Testimonials Section */
    .testimonial-container {
        max-width: 90%;
    }

    .testimonial p {
        font-size: 1.4rem;
    }

    .testimonial h3 {
        font-size: 1.2rem;
    }

    .arrow {
        font-size: 1.5rem;
        padding: 8px;
    }
}

/* Laptop Styles */
@media (min-width: 1024px) {
    .contactUs .contact {
        max-width: 800px;
        /* Adjust max-width for larger screens */
    }
}

/* Mobile Styles */
@media (max-width: 400px) {
    .contactUs .contact {
        max-width: 350px;
        padding: 15px;
    }

    .contactUs .contact h2 {
        font-size: 18px;
    }

    .contactUs .contact input,
    .contactUs .contact textarea {
        padding: 10px;
    }

    .contactUs .contact button {
        padding: 10px;
        font-size: 14px;
    }
}

.services-container {
    text-align: center;
    padding: 50px;
}

.services-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd700;
    /* Yellow color */
    text-shadow: 0 0 10px #fff, 0 0 20px #ffd90069, 0 0 30px #ffd90075;
    /* Glowing effect */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(255, 255, 0, 0.6);
}

.service:hover {
    transform: scale(1.05);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: 0.3s;
    color: white;
}

.service-icon:hover {
    color: yellow;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service p {
    font-size: 14px;
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
    .services-container h2 {
        font-size: 26px;
    }

    .service {
        padding: 20px;
    }

    .service-icon {
        font-size: 35px;
    }

    .service h3 {
        font-size: 18px;
    }

    .service p {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .services-container {
        padding: 30px;
    }

    .service {
        padding: 15px;
    }

    .service-icon {
        font-size: 30px;
    }

    .service h3 {
        font-size: 16px;
    }
}



.work-container {
    text-align: center;
    padding: 50px;
}

.work-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-in-out;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.work-step {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    transition: 0.4s;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(255, 255, 0, 0.6);
    opacity: 0;
    animation: slideUp 1s forwards;
}

.work-step:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 255, 0, 0.8);
}

.work-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: 0.3s;
    color: white;
}

.work-icon:hover {
    color: yellow;
}

.work-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.work-step p {
    font-size: 14px;
}

/* 🎬 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
    .work-container h2 {
        font-size: 26px;
    }

    .work-step {
        padding: 20px;
    }

    .work-icon {
        font-size: 35px;
    }

    .work-step h3 {
        font-size: 18px;
    }

    .work-step p {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .work-container {
        padding: 30px;
    }

    .work-step {
        padding: 15px;
    }

    .work-icon {
        font-size: 30px;
    }

    .work-step h3 {
        font-size: 16px;
    }
}

.testimonials-container {
    text-align: center;
    padding: 50px;
}

.testimonials-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-in-out;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
    width: 100%;
    /* Make it full width */
    max-width: 110rem;
    margin: auto;
    gap: 2rem;
    align-items: center;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    overflow: hidden;
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.testimonial {
    min-width: 100%;
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 0, 0.6);
    opacity: 0.8;
    transform: scale(0.9);
    transition: 0.5s ease-in-out;
}

.testimonial.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
}

.testimonial h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: yellow;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: yellow;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    color: #e6b800;
}

.prev {
    left: -40px;
}

.next {
    right: -40px;
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
    .testimonial-container {
        max-width: 90%;
    }

    .testimonial p {
        font-size: 16px;
    }

    .testimonial h3 {
        font-size: 18px;
    }

    .arrow {
        font-size: 25px;
    }
}

.testimonial {
    min-width: 100%;
    padding: 25px;
    background-color: #1a1a1a;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(255, 255, 0, 0.6);
    transition: 0.5s ease-in-out;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
}

.testimonial h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: yellow;
}

.buttons {
    margin-top: 15px;
}

.prev,
.next {
    cursor: pointer;
    padding: 10px 15px;
    background-color: yellow;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    margin: 5px;
    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background-color: #e6b800;
}

/* 🎬 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
    .testimonial p {
        font-size: 14px;
    }

    .testimonial h3 {
        font-size: 16px;
    }

    .prev,
    .next {
        font-size: 12px;
    }

    .testimonials-container {
        padding: 30px;
    }
}

@media (max-width: 400px) {
    .testimonials-container {
        padding: 20px;
    }

    .testimonial {
        padding: 15px;
    }

    .testimonial p {
        font-size: 13px;
    }

    .testimonial h3 {
        font-size: 15px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial p {
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
}

.testimonial h3 {
    margin-top: 10px;
    font-size: 1.4rem;
    color: #ffc107;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ffc107;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial p {
        font-size: 1.4rem;
    }

    .testimonial h3 {
        font-size: 1.2rem;
    }

    .arrow {
        font-size: 1.5rem;
        padding: 8px;
    }
}

.last .container {
    text-align: center;
    padding: 50px;
}

/* 📌 Header & Social Proof */
.last .header {
    font-size: 32px;
    font-weight: bold;
}

.last .social-proof {
    font-size: 18px;
    margin-top: 10px;
    color: yellow;
}

/* 🔹 Services Section */
.last .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.last .service {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 0, 0.6);
    transition: 0.3s;
}

.last .service:hover {
    transform: scale(1.05);
}

.last .service h3 {
    color: yellow;
    font-size: 20px;
}

.last .service p {
    font-size: 14px;
}

/* 📈 Case Study Section */
.last .case-study {
    margin-top: 50px;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 0px 10px rgba(255, 255, 0, 0.6);
}

.last .case-study h3 {
    color: yellow;
    font-size: 24px;
}

/* ❓ FAQ Section */
.last .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.last .faq {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 0, 0.6);
}

.last .faq h4 {
    color: yellow;
    font-size: 18px;
}

.last .faq p {
    font-size: 14px;
}

/* 🔥 Strong CTA */
.last .cta {
    margin-top: 50px;
    background-color: yellow;
    color: black;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.last .cta:hover {
    background-color: #e6b800;
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
    .last .header {
        font-size: 28px;
    }

    .last .social-proof {
        font-size: 16px;
    }

    .last .service h3,
    .last .case-study h3 {
        font-size: 20px;
    }

    .last .faq h4 {
        font-size: 16px;
    }

    .last .cta {
        font-size: 18px;
        padding: 12px;
    }
}

.about-section .about-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    /* flex-direction: column; */
    text-align: center;
    padding: 60px;
    animation: fadeIn 1.5s ease-in-out;
    -webkit-animation: fadeIn 1.5s ease-in-out;
}

.about-section .about-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: yellow;
}

.about-section .about-description {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    animation: slideUp 1s forwards 0.5s;
}

.about-section .highlight {
    color: yellow;
    font-weight: bold;
}

.about-section .cta {
    margin-top: 25px;
    padding: 15px 30px;
    background-color: yellow;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

.about-section .cta:hover {
    background-color: #e6b800;
}

/* 🎬 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
    .about-section .about-title {
        font-size: 28px;
    }

    .about-section .about-description {
        font-size: 16px;
    }

    .about-section .cta {
        font-size: 16px;
        padding: 12px 25px;
    }
}

.about-section .about-container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    width: 100%;

    padding: 60px 20px;

    animation: fadeIn 1.5s forwards ease-in-out;
}

.about-section .about-text {
    flex: 1;
    max-width: 600px;
    animation: slideLeft 1s forwards ease-in-out;
}

.about-section .about-title {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 1px;
    color: yellow;
    margin-bottom: 20px;
}

.about-section .about-description {
    font-size: 18px;
    line-height: 1.6;
}

.about-section .highlight {
    color: yellow;
    font-weight: bold;
}

.about-section .cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background-color: yellow;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.about-section .cta:hover {
    background-color: #e6b800;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomWave 8s ease-in-out infinite, floating 6s ease-in-out infinite;
    transition: transform 0.5s;
    border-radius: 50%;
}

/* Zoom in and out + wave motion */
@keyframes zoomWave {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        -moz-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.5) rotate(1deg);
        -webkit-transform: scale(1.5) rotate(1deg);
        -moz-transform: scale(1.5) rotate(1deg);
        -ms-transform: scale(1.5) rotate(1deg);
        -o-transform: scale(1.5) rotate(1deg);
    }

    50% {
        transform: scale(1.8) rotate(-1deg);
        -webkit-transform: scale(1.8) rotate(-1deg);
        -moz-transform: scale(1.8) rotate(-1deg);
        -ms-transform: scale(1.8) rotate(-1deg);
        -o-transform: scale(1.8) rotate(-1deg);
    }

    75% {
        transform: scale(1.) rotate(1deg);
        -webkit-transform: scale(1.) rotate(1deg);
        -moz-transform: scale(1.) rotate(1deg);
        -ms-transform: scale(1.) rotate(1deg);
        -o-transform: scale(1.) rotate(1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Water-style smooth floating */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-section .about-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
    opacity: 0;
    animation: slideRight 1s forwards ease-in-out;
}

.about-section .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0px 0px 15px rgba(255, 255, 0, 0.6);
}

.about-section .about-image img:hover {
    transform: scale(1.05);
}

/* 🎬 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .about-section .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-section .about-text,
    .about-image {
        max-width: 100%;
    }

    .about-section .about-title {
        font-size: 28px;
    }

    .about-section .about-description {
        font-size: 16px;
    }

    .about-section .about-image img {
        max-width: 300px;
    }
}