/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}


/* ===== HEADER & NAVIGATION ===== */
.headerimage {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url(../images/6.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: none;
}
.navBar {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 30px;
    justify-content: space-evenly;
    display: flex;
    gap: 20px;
    list-style: none;
    z-index: 10;
    
}

.navBar li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.navBar li a:hover {
    background: rgba(77, 77, 77, 0.9);
    border-color: #8bbdff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* ===== HEADER CONTENT ===== */
.header-text {
    text-align: center;
    color: white;
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
}

.header-text h1 {
    font-family: "Tourney", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.header-text p {
    font-size: clamp(1.1rem, 4vw, 1.8rem);
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    opacity: 0.95;
}

.logo {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    font-family: 'Tourney', sans-serif;
}
.logo span {
    color: #4268b9;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Tourney', sans-serif;
}
.getaQuoteform {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(139, 189, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.getaQuoteform:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 189, 255, 0.6);
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.getaQuoteform h2 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

/* ===== MODALS & FORMS ===== */
.form-window {
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1742ff 0%, #65dbf8 100%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: white;
    box-shadow: 0 0 25px rgba(66, 185, 139, 0.4);
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #42b98b 0%, #369f75 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(66, 185, 139, 0.4);
    background: linear-gradient(135deg, #369f75 0%, #2d8060 100%);
}

/* ===== RADIO ELEMENTS ===== */
.plan-dropdown {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.plan-select {
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 15px;
}
.plan-select:focus {
    background: white;
    box-shadow: 0 0 25px rgba(66, 185, 139, 0.4);
    transform: translateY(-2px);
}

.form-contact {
    display: flex;
    justify-content: space-around;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(66, 185, 139, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    margin: 20px;
}

.form-contact:hover {
    background: rgba(66, 185, 139, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.form-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.form-contact a:hover {
    text-decoration: underline;
}
.fa-brands.fa-facebook-f,
.fa fa-envelope,
.fab fa-instagram {
    font-size: 1.5rem;
    margin-left: 15px;
    color: rgb(0, 89, 255);
}

/* ===== CONTENT SECTIONS ===== */
.under-header {
    background: linear-gradient(180deg, rgba(252, 111, 30, 0.4), rgba(68, 103, 255, 0.4), rgba(176, 181, 255, 0.4)), 
                url(../images/neonBoard.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 150px 20px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    margin: 80px auto;
    position: relative;
    z-index: 5;
}

.why-choose-us .under-header-Box {
    background: rgba(0, 6, 83, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 189, 255, 0.3);
    box-shadow: 0 20px 60px rgba(28, 2, 255, 0.3);
    padding: 60px 40px;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #8bbdff, #42b98b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #42b98b, #8bbdff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-item:hover:before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(66, 185, 139, 0.4);
    box-shadow: 0 15px 40px rgba(66, 185, 139, 0.2);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #42b98b;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.under-header-Boxtwo,
.under-header-Boxthree {
    width: 90%;
    max-width: 350px;
    background: rgba(1, 3, 34, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    margin: 30px auto;
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: rgb(214, 230, 250);
    box-shadow: 0 15px 50px rgba(0, 17, 252, 0.3);
    border: 1px solid rgba(109, 204, 248, 0.2);
    z-index: 5;
}

.under-header-Boxtwo {
    align-self: flex-start;
    margin-left: 5%;
}

.under-header-Boxthree {
    align-self: flex-end;
    margin-right: 5%;
}

/* ===== PROFESSIONAL SERVICES SECTION ===== */
.professional-services-section {
    background: linear-gradient(135deg, rgba(0, 10, 100, 0.95), rgba(0, 25, 150, 0.9));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 189, 255, 0.4);
    border-radius: 30px;
    margin: 80px auto;
    max-width: 1300px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 50, 255, 0.4);
}

.professional-services-section:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 185, 139, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.professional-services-section > * {
    position: relative;
    z-index: 2;
}

.professional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-feature:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 185, 139, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-feature:hover:before {
    left: 100%;
}

.service-feature:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(66, 185, 139, 0.8);
    box-shadow: 0 30px 90px rgba(66, 185, 139, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #42b98b, #8bbdff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(66, 185, 139, 0.4);
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-feature h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-feature p {
    color: rgba(214, 230, 250, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.feature-list li {
    color: rgba(214, 230, 250, 0.85);
    margin: 15px 0;
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #42b98b;
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    background: rgba(66, 185, 139, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-list li:hover {
    color: #42b98b;
    padding-left: 35px;
}

/* ===== ABOUT US SECTION ===== */
.about-us-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    color: whitesmoke;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.about-us-container h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-family: "Georgia", serif;
    font-weight: 600;
    color: #8bbdff;
}

.about-us-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-us-box {
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin: 40px auto 0;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.image-of-Owner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 30px auto 0;
    background-size: cover;
    background-position: center;
    border: 5px solid rgba(66, 185, 139, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

/* ===== PRICING SECTION ===== */
.view-window {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 100px;
    background: linear-gradient(135deg, rgba(231, 231, 231, 0.9), rgba(255, 253, 253, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(26, 0, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 5;
}

.pricing {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 185, 139, 0.3);
    border-color: rgba(66, 185, 139, 0.5);
}

.pricing h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing:hover h2 {
    color: #42b98b;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-details p {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

.pricing ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing ul li {
    font-size: 1rem;
    color: white;
    text-align: left;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.pricing ul li::before {
    content: "✓";
    color: #42b98b;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.pricing ul li:hover {
    color: #42b98b;
}

.price-details button {
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #42b98b 0%, #369f75 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-details button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(66, 185, 139, 0.4);
    background: linear-gradient(135deg, #369f75 0%, #2d8060 100%);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    color: whitesmoke;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #8bbdff;
    font-weight: 600;
}

.review-box {
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin: 30px auto;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===== WEB DESIGN SECTION ===== */
.web-and-logo-designs {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    color: whitesmoke;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.web-and-logo-designs-header h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #8bbdff;
    font-weight: 600;
}

.selection-screen {
    width: 100%;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.webdesign-heading {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 1200px;
    z-index: 10;
    position: relative;
}

.services-header {
    margin-bottom: 80px;
}

.webdesign-heading h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    font-family: "Georgia", serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8bbdff, #42b98b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #8bbdff;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.services-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 185, 139, 0.3);
    border-color: rgba(66, 185, 139, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #42b98b, #369f75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(66, 185, 139, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== CUBE SECTION ===== */
.cube-body {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url(../images/4.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.scene {
    position: relative;
    transform-style: preserve-3d;
}

.floor {
    position: absolute;
    top: 100px;
    transform: translate(-50%, -50%) rotateX(90deg);
    width: 300px;
    height: 300px;
    background: url(../images/4.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 0, 0, 0.5);
}

.contact {
    color: white;
    z-index: 1000;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    margin: 80px auto 50px;
    padding: 0 20px;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #000653 0%, #003578 100%);
    color: white;
    text-align: center;
    padding: 60px 20px 30px;
    margin-top: 100px;
    border-top: 3px solid rgba(66, 185, 139, 0.5);
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #42b98b 0%, #369f75 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #2d5a72;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #369f75 0%, #2d8060 100%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .navBar {
        right: 30px;
        gap: 15px;
    }
    
    .navBar li a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .logo {
        left: 30px;
        font-size: 1.5rem;
    }
    
    .a-span {
        left: 150px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 118, 173, 0.486);
    backdrop-filter: blur(10px);
    display: none;
}
.mobile-dropdown a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    /* padding: 15px 20px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-icon {
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}
.mobile-logo {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}
.mobile-nav :active .mobile-dropdown,
.mobile-nav.active .mobile-dropdown {
    display: flex;
}


    
    .navBar {
        right: 20px;
        top: 20px;
        flex-wrap: wrap;
    }
    
    .navBar li a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .logo {
        display: none;
    }
    
    .a-span {
        left: 130px;
        font-size: 0.8rem;
    }
    
    .headerimage {
        background-attachment: scroll;
    }
    
    .under-header {
        background-attachment: scroll;
        padding: 100px 15px 50px;
        min-height: auto;
    }
    
    .webdesign-heading {
        margin-bottom: 40px;
    }
    
    .webdesign-heading h2 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .webdesign-heading p {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .under-header-Boxtwo,
    .under-header-Boxthree {
        width: 95%;
        margin: 20px auto;
        align-self: center;
    }
    
    .under-header-Boxtwo {
        margin-left: auto;
    }
    
    .under-header-Boxthree {
        margin-right: auto;
    }
    
    .under-header-Box {
        width: 95%;
        margin: 30px auto;
        padding: 30px 20px;
    }
    
    .view-window {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        margin: 30px auto 50px;
    }
    
    .about-us-container,
    .reviews,
    .web-and-logo-designs {
        width: 95%;
        padding: 40px 20px;
        margin: 50px auto;
    }
    
    .review-box {
        width: 95%;
        padding: 30px 20px;
    }
    
    .cube-body {
        background-attachment: scroll;
        min-height: 50vh;
    }
    
    .contact {
        font-size: 2rem;
        margin: 40px auto 30px;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 118, 173, 0.486);
    backdrop-filter: blur(10px);
    display: none;
}
.mobile-dropdown a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    /* padding: 15px 20px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-icon {
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}
.mobile-logo {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}
.mobile-nav :active .mobile-dropdown,
.mobile-nav.active .mobile-dropdown {
    display: flex;
}
    .navBar {
       display: none;
    }
    
    .navBar li a {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .logo {
        display: none;
    }
    
    
    .form-window {
        width: 95%;
        padding: 30px 20px;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .headerimage {
        min-height: 70vh;
    }
    
    .header-text {
        padding: 0 15px;
    }
    
    .under-header {
        padding: 80px 10px 40px;
    }
    
    .webdesign-heading h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .webdesign-heading p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .under-header-Boxtwo,
    .under-header-Boxthree {
        width: 98%;
        margin: 15px auto;
        padding: 20px 15px;
    }
    
    .under-header-Box {
        width: 98%;
        margin: 20px auto;
        padding: 20px 15px;
    }
    
    .about-us-container h2,
    .reviews h2,
    .web-and-logo-designs-header h2 {
        font-size: 2rem;
    }
    
    .pricing {
        padding: 30px 20px;
    }
    
    .contact {
        font-size: 1.5rem;
        margin: 30px auto 20px;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .view-window {
        padding: 30px 15px;
        margin: 20px auto 40px;
    }
    
    .about-us-container,
    .reviews,
    .web-and-logo-designs {
        width: 98%;
        padding: 30px 15px;
        margin: 30px auto;
    }
    
    .review-box {
        width: 98%;
        padding: 20px 15px;
        margin: 15px auto;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ===== PREVENT OVERLAPPING ===== */
section {
    position: relative;
    z-index: 1;
    clear: both;
}

/* Ensure proper stacking context */
.headerimage {
    z-index: 1;
}

.under-header {
    z-index: 2;
    margin-top: 0;
}

.cube-body {
    z-index: 3;
    margin-top: 0;
}

.reviews {
    z-index: 4;
    margin-top: 0;
}

.footer {
    z-index: 5;
    margin-top: 0;
}

/* ===== MOBILE RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .professional-services-section {
        margin: 40px 15px;
        padding: 50px 20px;
        border-radius: 20px;
    }
    
    .professional-services {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .service-feature {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .professional-services-section {
        margin: 20px 10px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .professional-services {
        gap: 30px;
        padding: 0;
    }
    
    .service-feature {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
}





