/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    background-color: black; /* Set background to black */
    color: white; /* Default text color */
}
html{
    scroll-behavior: smooth;
}
.container {
    width: 90%;
    margin: 0 auto;
}

/* Modern Header Styles */
header {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

header .logo h1 {
    margin: 0;
    font-size: 2.2rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

header .logo h1:hover {
    transform: scale(1.05);
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.4s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

header nav ul li a:hover {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff7e5f;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header nav ul li a:hover::after {
    width: 80%;
}

/* Mobile and Tablet Responsiveness */
@media screen and (max-width: 1024px) {
    header {
        flex-direction: column;
        padding: 15px 0;
    }

    header .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    header nav ul li a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    header .logo h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    header nav ul {
        gap: 10px;
    }

    header nav ul li a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 5px 0;
    }

    header .logo h1 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    header nav ul {
        gap: 5px;
    }

    header nav ul li a {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-image.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-content {
        width: 85%;
        padding: 18px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        width: 90%;
        padding: 15px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 95%;
        padding: 12px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 98%;
        padding: 10px;
        border-radius: 4px;
    }
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #dddcc8, #ee990566);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 10px rgba(247, 171, 58, 0.5);
    animation: float 3s ease-in-out infinite;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
    max-width: 800px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.hero-content span {
    color: #f4f4f4;
    font-weight: bold;
}

.hero-content i {
    font-size: 6rem;
    color: #faa700;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-content i {
        font-size: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content i {
        font-size: 3rem;
    }

    .hero-content {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }

    .hero h2 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-content i {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 10px;
    }
}

/* Menu Icon */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* About Section Styles */
.about-section {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 40px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: #f7ab3a;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #f7ab3a, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(247, 171, 58, 0.5);
    animation: float 3s ease-in-out infinite;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f7ab3a, #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(247, 171, 58, 0.5);
}

/* Mobile and Tablet Responsiveness */
@media screen and (max-width: 1024px) {
    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .about-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 3px;
    }

    .about-section h2::after {
        width: 80px;
        height: 3px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .about-section h2::after {
        width: 60px;
        height: 2px;
    }
}

@media screen and (max-width: 480px) {
    .about-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .about-section h2::after {
        width: 40px;
        height: 2px;
    }
}

/* Team Section Styles */
.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    perspective: 1000px;
    gap: 20px;
}

.team-member {
    background-color: #222;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 280px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: rotateY(360deg) scale(1.1);
    z-index: 10;
    border-color: #f7ab3a;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, #f7ab3a, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover::before {
    opacity: 0.3;
}

.member-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    transform: translateZ(30px);
    transition: transform 0.3s;
    border: 3px solid #f7ab3a;
}

.team-member:hover .member-photo {
    transform: translateZ(0) rotateY(360deg);
    border-color: #d68e00;
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 90%;
    height: 20px;
    background: rgba(247, 171, 58, 0.2);
    border-radius: 50%;
    filter: blur(10px);
    transition: all 0.3s;
}

.team-member:hover::after {
    bottom: -15px;
    filter: blur(15px);
}

@media screen and (max-width: 1024px) {
    .team-container {
        gap: 15px;
    }

    .team-member {
        max-width: 250px;
        margin: 10px;
    }

    .member-photo {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .team-container {
        gap: 10px;
    }

    .team-member {
        max-width: 220px;
        padding: 15px;
        margin: 10px 0;
    }

    .member-photo {
        height: 220px;
    }

    .team-member:hover {
        transform: rotateY(0) scale(1.05);
    }
}

@media screen and (max-width: 480px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        max-width: 90%;
        margin: 10px 0;
    }

    .member-photo {
        height: 300px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes flip {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Services Section Styles */
.services {
    padding: 40px 15px;
    background: radial-gradient(circle at center, #0a0a0a, #000000);
    color: white;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 0 50px rgba(247, 171, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 171, 58, 0.1) 10%, transparent 10.01%);
    background-size: 20px 20px;
    animation: moveBackground 60s linear infinite;
    pointer-events: none;
}

@keyframes moveBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.service-item {
    padding: 25px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 171, 58, 0.2);
    box-shadow: 0 8px 32px rgba(247, 171, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 12px 40px rgba(247, 171, 58, 0.3);
    border-color: rgba(247, 171, 58, 0.5);
}

.service-item h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: #f7ab3a;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #f7ab3a, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(247, 171, 58, 0.5);
}

.service-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f7ab3a, #ff6b6b);
    transition: width 0.3s ease;
}

.service-item:hover h3::after {
    width: 80px;
}

.service-item ul {
    list-style-type: none;
    padding: 0;
}

.service-item ul li {
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    color: #e0e0e0;
}

.service-item ul li::before {
    content: '★';
    color: #f7ab3a;
    position: absolute;
    left: -20px;
    font-size: 1.1em;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.service-item ul li:hover {
    transform: translateX(10px);
    color: #f7ab3a;
}

.service-item ul li:hover::before {
    transform: scale(1.5) rotate(15deg);
    opacity: 1;
}

/* Responsive Adjustments */
@media screen and (max-width: 1440px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
}

@media screen and (max-width: 1024px) {
    .services {
        padding: 35px 10px;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-item h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        letter-spacing: 1.5px;
    }

    .service-item ul li {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        padding: 8px 0;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 30px 10px;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .service-item h3 {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        letter-spacing: 1px;
    }

    .service-item ul li {
        font-size: clamp(0.8rem, 2.2vw, 1rem);
        padding: 6px 0;
    }

    .service-item ul li::before {
        left: -15px;
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    .services {
        padding: 20px 5px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        letter-spacing: 1px;
    }

    .service-item ul li {
        font-size: clamp(0.7rem, 3vw, 0.9rem);
        padding: 5px 0;
    }

    .service-item ul li::before {
        left: -12px;
        font-size: 0.9em;
    }
}


/* Modern Sample Works Section */
.sample-works {
    margin: 4rem auto;
    padding: 2rem 1rem;
    max-width: 1600px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.sample-works h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #f7ab3a;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #f7ab3a, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(247, 171, 58, 0.5);
    animation: float 3s ease-in-out infinite;
}

.sample-works h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #f7ab3a, #ff6b6b);
    border-radius: 2px;
}

.sample-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.sample-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sample-item.portrait {
    aspect-ratio: 9/16;
}

.sample-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(247, 171, 58, 0.3);
}

.sample-item img,
.sample-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.sample-item:hover img,
.sample-item:hover video {
    transform: scale(1.1);
}

.sample-item p {
    padding: 1rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    transition: all 0.4s ease;
    transform: translateY(100%);
    opacity: 0;
    font-weight: 600;
}

.sample-item:hover p {
    transform: translateY(0);
    opacity: 1;
}

.sample-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), rgba(247, 171, 58, 0.2), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.sample-item:hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .sample-works {
        margin: 3rem auto;
        padding: 1.5rem 0.5rem;
    }

    .sample-works h3 {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        margin-bottom: 1rem;
        letter-spacing: 1.5px;
    }

    .sample-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .sample-works {
        margin: 2rem auto;
        padding: 1rem 0.5rem;
    }

    .sample-works h3 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .sample-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .sample-item {
        aspect-ratio: 1/1;
    }
    
    .sample-item.portrait {
        aspect-ratio: 9/16;
    }

    .sample-item p {
        padding: 0.75rem;
        font-size: clamp(0.8rem, 1.8vw, 1rem);
    }
}

@media (max-width: 480px) {
    .sample-works {
        margin: 1.5rem auto;
        padding: 0.5rem;
    }

    .sample-works h3 {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .sample-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .sample-item {
        aspect-ratio: 16/9;
    }

    .sample-item.portrait {
        aspect-ratio: 9/16;
    }

    .sample-item p {
        padding: 0.5rem;
        font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    }
}
/* Pricing Section Styles */
.pricing {
    padding: 40px 15px;
    background: linear-gradient(135deg, #000000, #242424);
    color: white;
    text-align: center;
}

.pricing h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    color: #f7ab3a;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #f7ab3a, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(247, 171, 58, 0.5);
    animation: float 3s ease-in-out infinite;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f7ab3a, #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(247, 171, 58, 0.5);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-card {
    background: rgba(82, 77, 77, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), rgba(247, 171, 58, 0.2), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin: 10px 0;
    color: #f7ab3a;
    position: relative;
    z-index: 1;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.pricing-card ul li {
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 5px 0;
}

button {
    padding: 8px 15px;
    background-color: #f7ab3a;
    border: none;
    border-radius: 5px;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

button:hover {
    background-color: #6f00ff;
}

/* JavaScript will update these custom properties */
.pricing-card {
    --x: 50%;
    --y: 50%;
}

@media screen and (max-width: 1024px) {
    .pricing {
        padding: 30px 10px;
    }

    .pricing h2 {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        margin-bottom: 25px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 768px) {
    .pricing {
        padding: 25px 5px;
    }

    .pricing h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .pricing-card {
        max-width: 250px;
    }

    .pricing-card h3 {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }

    .price {
        font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    }

    .pricing-card ul li {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media screen and (max-width: 480px) {
    .pricing {
        padding: 20px 5px;
    }

    .pricing h2 {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        max-width: 100%;
        margin: 10px 0;
        padding: 15px;
    }

    .pricing-card h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .price {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }

    .pricing-card ul li {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
/* Contact Section Styles */
.contact-section {
    background: black;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 40px;
    color: #f7ab3a;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #f7ab3a, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(247, 171, 58, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.contact-section p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 30px;
    color: #f4f4f4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

form[name="submit-to-google-sheet"] {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(20px, 5vw, 30px);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 500px;
}

form[name="submit-to-google-sheet"] input,
form[name="submit-to-google-sheet"] textarea {
    width: 100%;
    padding: clamp(10px, 3vw, 12px);
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #f4f4f4;
    box-sizing: border-box;
}

form[name="submit-to-google-sheet"] textarea {
    resize: vertical;
    min-height: 100px;
}

form[name="submit-to-google-sheet"] button {
    width: 100%;
    padding: clamp(10px, 3vw, 12px);
    background-color: #f7ab3a;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

form[name="submit-to-google-sheet"] button:hover {
    background-color: #d68e00;
}

#response-message {
    margin-top: 20px;
    color: #f7ab3a;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 30px 15px;
    }

    .contact-section h2 {
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .contact-section p {
        padding: 0 10px;
    }

    form[name="submit-to-google-sheet"] {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 20px 10px;
    }

    .contact-section h2 {
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .contact-section p {
        padding: 0 5px;
    }

    form[name="submit-to-google-sheet"] {
        padding: 15px;
    }
}

/* ========== Global Reset & Base ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ========== Header & Navigation ========== */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 2.5rem;
}

/* ========== Sections ========== */
.about-section,
.services,
.pricing,
.contact-section {
    padding: 2rem 0;
}

/* ========== Business Info ========== */
.business-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    flex: 1;
    margin: 20px;
}

.business-info h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.business-info ul {
    list-style-type: none;
    padding: 0;
    max-width: 100%; /* Ensure it fits on mobile screens */
    word-break: break-word; /* Break long email addresses */
}

.business-info ul li {
    margin-bottom: 8px;
    color: #e0e0e0;
    line-height: 1.5;
}

.business-info a {
    color: #f7ab3a;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.business-info a:hover {
    text-decoration: underline;
}

/* ========== Team Section ========== */
.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.team-member {
    width: 30%;
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/* ========== Pricing Section ========== */
.pricing-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.pricing-card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
    width: 30%;
    text-align: center;
}

/* ========== Contact Section ========== */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ========== Social Media ========== */
.social-media {
    margin-top: 20px;
    text-align: center;
}

.social-media a {
    color: #f7ab3a;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #d68e00;
}

/* ========== Footer ========== */
.copyright {
    text-align: center;
    margin-top: 2rem;
}

/* ========== Responsive Queries ========== */

/* Tablets */
@media (max-width: 1024px) {
    .team-member,
    .pricing-card {
        width: calc(50% - 1rem);
    }

    header .container {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .team-member,
    .pricing-card {
        width: 100%;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .container {
        width: 95%;
    }

    .business-info {
        margin: 10px;
        padding: 15px;
    }

    nav a {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .business-info {
        margin: 3px;
        padding: 8px;
    }

    .container {
        width: 98%;
    }

    nav a {
        font-size: 0.8rem;
    }
}


/* ------------------CSS for small screen------------- */
nav .fa-solid{
    display: none;
}

@media only screen and (max-width: 600px){
    #header{
        background-image: url(images/phone_background.png);
    }
    .header-text {
        margin-top: 100%;
        font-size: 16px;
    }
    .header-text h1 {
        font-size: 30px;
    }
    nav .fa-solid{
        display: block;
        font-size: 25px;
    }
    nav ul {
        background: #faa702;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li {
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    .fa-solid, .fas{
        font-weight: 900;
    }
    .sub-title {
        font-size: 40px;
    }
    .about-col-1, .about-col-2 {
        flex-basis: 100%;
    }
    .about-col-1 {
        margin-bottom: 30px;
    }
    .about-col-2 {
        font-size: 14px;
    }
    .tab-links {
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right {
        flex-basis: 100%;
    }
}

#msg {
    color: #61b752;
    margin-top: -40px;
    display: block;
}
