@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a{
    text-decoration: none;
    color: #1c1e53;
    transition: color 0.3s ease;
}

a:hover{
    color: #5e3bee !important;
}

h5{
    font-size: 20px;
}

li{
    list-style: none;
}

nav{
    background-color: #fff;
    position: fixed; /* Changed from sticky to fixed */
    top: 0;
    width: 100%; /* Ensure navbar spans full width when fixed */
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Set a very high z-index to keep it on top */
}

nav .logo,
footer .logo{
    display: flex;
    align-items: center;
}

nav .logo a,
footer .logo a{
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
}

nav .logo img,
footer .logo img{
    width: 40px;
    height: 40px;
}

nav ul,
footer .top ul{
    display: flex;
    gap: 40px;
}

nav button{
    color: #1c1e53;
    background-color: transparent;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid #1c1e53;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative; /* Ensure z-index works for buttons within nav */
    z-index: 1; /* Keep buttons within nav above other content, but still below nav itself */
}

nav button:hover{
    background-color: #5e3bee;
    border-color: #5e3bee;
    color: #fff;
}

nav button#menuButton{
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 7px;
}

.main{
    background-color: #deebee;
    padding: 90px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px; /* Add margin-top to account for fixed navbar height */
}

.main .left{
    display: flex;
    flex-direction: column;
    align-items: start;
}

/* Styling for the new top heading in the main section */
.main .left .main-heading-top {
    font-size: 22px; /* Slightly larger for emphasis */
    margin-bottom: 10px; /* Space between the two headings */
    color: #1c1e53; /* Default text color */
}

/* Styling for the new bottom heading in the main section */
.main .left .main-heading-bottom {
    margin-top: 10px;
    font-weight: bold;
    font-size: 48px; /* Prominent size */
    line-height: 1.3; /* Better readability */
    color: #1c1e53; /* Default text color */
}

/* Highlight colors for headings */
.main-heading-top .highlight-blue {
    color: #006b6a; /* Teal-like color from your existing palette */
}

.main-heading-top .highlight-green {
    color: #5e3bee; /* Purple-blue from your existing palette */
}

.main-heading-bottom .highlight-purple {
    color: #5e3bee; /* Same purple-blue for consistent highlights */
}

.main-heading-bottom .highlight-voice {
    color: #006b6a; /* Another distinct color for "voice" */
    font-weight: 700; /* Make it bolder */
}

.main-heading-bottom .highlight-ai {
    color: #ff0000; /* Red color for "AI" as per portfolio button */
    font-weight: 700; /* Make it bolder */
}


.main .left p{
    color: #1c1e53;
    font-size: 22px;
    margin-top: 20px;
}

/* Styling for new paragraphs in the main section */
.main .left .main-paragraph {
    font-size: 18px; /* Slightly smaller for readability in paragraphs */
    line-height: 1.6; /* Improved line spacing */
    margin-bottom: 15px; /* Space between paragraphs */
    color: #282938; /* A darker shade for good contrast */
    letter-spacing: 0.5px; /* Subtle letter spacing for elegance */
}

.main .left .main-paragraph.highlight-star {
    font-weight: bold;
    color: #006b6a; /* Highlight color for the star paragraph */
    margin-top: 30px; /* More space for emphasis */
}

/* Container for main CTA buttons for better layout control */
.main-cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Futuristic Button Styling */
.futuristic-button {
    background: linear-gradient(45deg, #5e3bee, #006b6a); /* Gradient background */
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px; /* Slightly rounded corners */
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
    display: inline-flex; /* Allows icon and text to be aligned */
    align-items: center;
    gap: 10px; /* Space between icon and text */
    text-transform: uppercase; /* For a modern look */
    letter-spacing: 1px;
    z-index: 1; /* Ensure buttons are below the navbar */
}

.futuristic-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15); /* Light overlay for shine effect */
    transition: all 0.6s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
    opacity: 0;
}

.futuristic-button:hover::before {
    width: 0;
    height: 0;
    opacity: 1;
}

.futuristic-button:hover {
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    background: linear-gradient(45deg, #006b6a, #5e3bee); /* Reverse gradient on hover */
}

.futuristic-button i {
    font-size: 20px; /* Icon size */
    transition: transform 0.3s ease;
}

.futuristic-button:hover i {
    transform: scale(1.1); /* Icon animation on hover */
}

/* Smaller variant for other buttons like "View All Products" */
.futuristic-button-small {
    background: linear-gradient(45deg, #006b6a, #5e3bee);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 1; /* Ensure buttons are below the navbar */
}

.futuristic-button-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
    opacity: 0;
}

.futuristic-button-small:hover::before {
    width: 0;
    height: 0;
    opacity: 1;
}

.futuristic-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, #5e3bee, #006b6a);
}

.futuristic-button-small i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.futuristic-button-small:hover i {
    transform: scale(1.1);
}


.main .right img{
    width: 500px;
}

.skills{
    padding: 110px 85px 0;
    text-align: center; /* Center align content in skills section */
}

/* Styling for the new Expertise section headings */
.skills .expertise-subtitle {
    font-size: 24px; /* Larger subtitle */
    color: #006b6a; /* Teal color */
    margin-bottom: 10px;
    font-weight: 500;
}

.skills .expertise-title {
    font-size: 44px; /* Prominent title */
    color: #1c1e53; /* Dark blue */
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
}

.skills .expertise-description {
    font-size: 18px;
    color: #282938;
    line-height: 1.6;
    max-width: 800px; /* Limit width for readability */
    margin: 0 auto 70px auto; /* Center and add bottom margin */
}

.skills h3,
.about .right h3,
.portfolio .header h3,
.feedback h3{
    font-size: 40px;
    margin-top: 20px;
}

.skills .skill-items{
    display: flex;
    margin-top: 70px;
    gap: 30px;
    justify-content: center; /* Center the skill items */
}

.skills .skill-items .item{
    background-color: #deebee;
    width: 25%;
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left; /* Align text left within skill item */
}

.skills .skill-items .item:hover{
    border-color: #5e3bee;
}

.skills .skill-items .item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.skills .skill-items .item .icon i{
    font-size: 26px;
    color: #006b6a; /* Keep the teal color for icons */
}

.skills .skill-items .item h4,
.portfolio .portfo-items .item .info h4{
    font-size: 18px;
}

.skills .skill-items .item p{
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
    color: #1c1e53;
}

/* Optional ending line for Expertise section */
.expertise-ending-line {
    font-size: 20px;
    font-weight: bold;
    color: #5e3bee; /* Purple highlight */
    margin-top: 80px; /* Space above */
    margin-bottom: 40px; /* Space below */
}

/* Optional Callout/Quote for Expertise section */
.expertise-quote {
    background-color: #f0f8ff; /* Light blue background */
    padding: 30px;
    border-radius: 10px;
    margin: 50px auto 0 auto; /* Center and add top margin */
    max-width: 700px;
    border-left: 5px solid #006b6a; /* Teal border */
    text-align: left; /* Ensure text is left-aligned within the quote box */
}

.expertise-quote p {
    font-size: 18px;
    font-style: italic;
    color: #1c1e53;
    margin-bottom: 10px;
    line-height: 1.5;
}

.expertise-quote span {
    display: block;
    font-size: 14px;
    color: #5e3bee;
    font-weight: bold;
    text-align: right;
}


.about{
    padding: 110px 85px; /* Added padding for consistency */
    display: flex;
    align-items: center;
    gap: 60px;
}

.about .left{
    background-color: #deebee;
    border-radius: 10px 10px 0 0;
}

.about .left img{
    width: 440px;
}

/* Styling for new About Us headings and paragraphs */
.about .right .about-subtitle {
    font-size: 24px;
    color: #006b6a;
    margin-bottom: 10px;
    font-weight: 500;
}

.about .right .about-title {
    font-size: 40px;
    color: #1c1e53;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
}

.about .right .about-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #282938;
    margin-bottom: 15px;
}

.about .right .about-subheading {
    font-size: 20px;
    color: #5e3bee; /* Consistent with other highlights */
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}


.portfolio{
    background-color: #deebee;
    padding: 110px 85px;
    text-align: center; /* Center align content in products section */
}

/* Styling for new Products section headings */
.products-subtitle {
    font-size: 24px; /* Larger subtitle */
    color: #006b6a; /* Teal color */
    margin-bottom: 10px;
    font-weight: 500;
}

.products-title {
    font-size: 44px; /* Prominent title */
    color: #1c1e53; /* Dark blue */
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
}

.portfolio .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

/* Original button style, now replaced by futuristic-button-small or removed */
/*
.portfolio .header button{
    background-color: #ff0000;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    border: none;
    border-radius: 10px;
}

.portfolio .header button i{
    font-size: 26px;
}
*/

.portfolio .portfo-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Adjusted gap for new content */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.portfolio .portfo-items .item{
    width: calc(33.33% - 20px); /* Adjusted width to account for gap */
    background-color: #fff;
    border-radius: 10px;
    padding: 32px; /* Increased padding */
    border-bottom: 4px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: left; /* Align text left within product item */
}

.portfolio .portfo-items .item:hover{
    border-color: #5e3bee;
}

.portfolio .portfo-items .item img{
    width: 100%;
    height: 200px; /* Adjusted image height */
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 0 0; /* Adjusted border-radius */
    margin-bottom: 20px; /* Space between image and info */
}

.portfolio .portfo-items .item .info{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0; /* Removed padding here as it's now on the item itself */
}

.portfolio .portfo-items .item .info .product-item-title {
    font-size: 20px; /* Larger title for product items */
    font-weight: bold;
    color: #1c1e53;
    margin-bottom: 5px;
}

.portfolio .portfo-items .item .info .product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #282938;
    margin-bottom: 10px;
}

.portfolio .portfo-items .item .info .product-features-list {
    list-style: none; /* Remove default list style */
    padding: 0;
    margin: 0 0 15px 0;
}

.portfolio .portfo-items .item .info .product-features-list li {
    font-size: 13px;
    color: #282938;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.portfolio .portfo-items .item .info .product-features-list li::before {
    content: ''; /* Removed default ✅ as it's in HTML */
    margin-right: 8px; /* Space between checkbox and text */
}

.portfolio .portfo-items .item .info a{
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #5e3bee;
    font-weight: bold;
    color: #5e3bee; /* Ensure link color is consistent */
}

.portfolio .portfo-items .item .info a i{
    margin-left: 2px;
    font-size: 16px;
}

/* Optional ending line for Products section */
.products-ending-line {
    font-size: 18px;
    color: #282938;
    line-height: 1.6;
    margin-top: 80px; /* Space above */
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}


.feedback{
    padding: 110px 85px;
    text-align: center; /* Center align content in reviews section */
}

/* Styling for new Reviews section headings and callout */
.reviews-subtitle {
    font-size: 24px; /* Larger subtitle */
    color: #006b6a; /* Teal color */
    margin-bottom: 10px;
    font-weight: 500;
}

.reviews-title {
    font-size: 44px; /* Prominent title */
    color: #1c1e53; /* Dark blue */
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
}

.feedback .customers{
    margin-top: 50px;
    display: flex;
    gap: 40px;
    justify-content: center; /* Center customer items */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.feedback .customers .item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #006b6a;
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(33.33% - 27px); /* Adjusted width for 3 columns */
    text-align: left; /* Align text left within review item */
}

.feedback .customers .item .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #282938;
}

.feedback .customers .item .rating{
    color: #006b6a;
    font-size: 22px;
}

.feedback .customers .item:hover{
    border-color: #5e3bee;
}

.feedback .customers .item p{
    line-height: 22px;
    font-size: 14px;
}

.feedback .customers .item .user{
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback .customers .item .user img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.feedback .customers .item .user h5{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.feedback .customers .item .user p{
    font-size: 12px;
}

/* Reviews Callout Section */
.reviews-callout {
    background-color: #f0f8ff; /* Light blue background */
    padding: 30px;
    border-radius: 10px;
    margin: 50px auto 0 auto; /* Center and add top margin */
    max-width: 700px;
    border-left: 5px solid #5e3bee; /* Purple border */
    text-align: center; /* Center align content */
}

.reviews-callout p {
    font-size: 18px;
    color: #1c1e53;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Reviews callout button will also use futuristic-button-small */
/*
.reviews-callout button {
    background-color: #5e3bee;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.reviews-callout button:hover {
    background-color: #006b6a;
}
*/


footer{
    background-color: #deebee;
    padding: 85px;
    display: flex;
    flex-direction: column;
}

/* Contact Info Section within Footer */
.contact-info-section {
    text-align: center;
    margin-bottom: 40px; /* Space between contact info and existing footer content */
    padding-bottom: 20px; /* Add some padding to the bottom of the section */
    border-bottom: 1px solid #c2c2c2; /* Optional: A subtle line to separate it visually */
}

.contact-info-section .contact-info-title {
    font-size: 36px; /* Larger for better visibility */
    color: #1c1e53;
    margin-bottom: 15px; /* Reduced margin for tighter look */
    font-weight: bold;
}

.contact-info-section .contact-text {
    font-size: 18px;
    color: #282938;
    margin-bottom: 20px; /* Space before email */
    line-height: 1.6;
}

.contact-info-section .contact-email-main {
    font-size: 20px; /* Emphasize email */
    color: #1c1e53;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info-section .contact-email-main a {
    color: #5e3bee; /* Consistent link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section .contact-email-main a:hover {
    color: #006b6a; /* Change color on hover */
    text-decoration: underline;
}

.contact-info-section .contact-note {
    font-size: 14px;
    color: #5e3bee; /* Highlighted note */
    display: block; /* Ensures it takes full width */
    margin-top: 15px; /* Space from email */
}


footer .top,
footer .bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .top .social-links{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

footer .separator{
    width: 100%;
    height: 1px;
    background-color: #282938;
    margin: 30px 0 20px;
}

footer .bottom p{
    font-size: 12px;
}

footer .bottom .links a{
    font-size: 12px;
    margin-left: 14px;
}

@media screen and (max-width: 1200px) {
    
    nav button{
        color: #1c1e53;
        background-color: transparent;
        padding: 12px 16px;
        border-radius: 5px;
        border: 1px solid #1c1e53;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    nav button:hover{
        background-color: #5e3bee;
        border-color: #5e3bee;
        color: #fff;
    }

    .main .left h5{
        font-size: 18px;
    }

    .main .left h3{
        font-size: 36px;
    }

    .main .left p{
        font-size: 18px;
    }

    .main .right img{
        width: 380px;
    }

    .skills .skill-items{
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .skills .skill-items .item{
        width: 49%;
    }

    .about .left img{
        width: 370px;
    }

    .skills .expertise-subtitle {
        font-size: 20px;
    }

    .skills .expertise-title {
        font-size: 38px;
    }

    .skills .expertise-description {
        font-size: 16px;
    }

    .skills h3,
    .about .right h3,
    .portfolio .header h3,
    .feedback h3{
        font-size: 32px;
    }

    .about .right p{
        font-size: 15px;
    }

    /* About section media queries */
    .about .right .about-title {
        font-size: 32px;
    }

    .about .right .about-paragraph {
        font-size: 15px;
    }

    .about .right .about-subheading {
        font-size: 18px;
    }

    /* Products section media queries */
    .products-title {
        font-size: 38px;
    }

    .portfolio .portfo-items .item{
        width: 48%; /* Adjust width for 2 columns */
    }

    .portfolio .portfo-items .item .info .product-item-title {
        font-size: 18px;
    }

    .portfolio .portfo-items .item .info .product-description {
        font-size: 13px;
    }

    .portfolio .portfo-items .item .info .product-features-list li {
        font-size: 12px;
    }

    /* Reviews section media queries */
    .reviews-title {
        font-size: 38px;
    }

    .feedback .customers .item{
        width: 48%; /* Adjust width for 2 columns */
    }


    .feedback .customers .item .rating{
        font-size: 20px;
    }

    .feedback .customers .item p{
        font-size: 13px;
    }

    /* Contact Info Section Media Queries */
    .contact-info-section .contact-info-title {
        font-size: 28px;
    }

    .contact-info-section .contact-text {
        font-size: 16px;
    }

    .contact-info-section .contact-email-main {
        font-size: 18px;
    }

    .contact-info-section .contact-note {
        font-size: 13px;
    }

    footer .top ul{
        gap: 20px;
    }

}

@media screen and (max-width: 992px) {
    
    nav button{
        display: none;
    }

    nav ul{
        gap: 20px;
    }

    nav ul li a{
        font-size: 15px;
    }

    .main{
        flex-direction: column;
    }

    .main .left .main-heading-bottom {
        font-size: 40px; /* Adjust for smaller screens */
    }

    .main .left .main-paragraph {
        font-size: 16px; /* Adjust paragraph font size */
    }

    /* Adjust main CTA buttons for vertical stacking on smaller screens */
    .main-cta-buttons {
        flex-direction: column;
        align-items: center; /* Center buttons when stacked */
        width: 100%; /* Take full width */
    }

    .futuristic-button {
        width: 80%; /* Adjust width for stacked buttons */
        max-width: 300px; /* Max width for readability */
        justify-content: center; /* Center content within button */
    }

    .skills .expertise-title {
        font-size: 34px;
    }

    .skills .skill-items{
        flex-direction: column; /* Stack items on smaller screens */
        align-items: center;
    }

    .skills .skill-items .item {
        width: 70%; /* Adjust width for stacked items */
        max-width: 400px; /* Max width for readability */
    }


    .about{
        flex-direction: column;
        justify-content: center;
    }

    /* About section media queries */
    .about .left img{
        width: 100%;
        max-width: 400px; /* Limit image width */
    }

    .about .right {
        text-align: center; /* Center align text for column layout */
    }

    .about .right .about-title {
        font-size: 30px;
    }

    /* Products section media queries */
    .products-title {
        font-size: 34px;
    }

    .portfolio .portfo-items .item{
        width: 70%; /* Adjust width for stacked items */
        max-width: 400px; /* Max width for readability */
    }

    /* Reviews section media queries */
    .reviews-title {
        font-size: 34px;
    }

    .feedback .customers .item{
        width: 70%; /* Adjust width for stacked items */
        max-width: 400px; /* Max width for readability */
    }


    .feedback .customers{
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feedback .customers .item{
        width: 48%;
    }

    footer .top ul{
        display: none;
    }

}

@media screen and (max-width: 768px) {
    
    nav{
        justify-content: space-between;
        padding: 0 42px;
    }

    nav ul{
        display: none;
    }

    nav.open .logo{
        display: none;
    }

    nav.open ul{
        display: flex;
    }

    nav button#menuButton{
        display: flex;
    }

    .main{
        padding: 42px;
    }

    .main .left .main-heading-bottom {
        font-size: 36px; /* Further adjust for mobile */
    }

    .main .left .main-paragraph {
        font-size: 15px; /* Further adjust paragraph font size */
    }

    /* Adjust main CTA buttons for even smaller screens */
    .main-cta-buttons {
        gap: 15px; /* Reduce gap */
    }

    .futuristic-button {
        width: 95%;
    }

    .skills{
        padding: 85px 42px 0;
    }

    .skills .expertise-title {
        font-size: 30px;
    }

    .skills .expertise-description {
        font-size: 14px;
    }

    .skills .skill-items{
        gap: 8px;
    }

    .skills .skill-items .item {
        width: 90%; /* Adjust width for even smaller screens */
    }


    .about{
        padding: 85px 42px;
    }

    /* About section media queries */
    .about .right .about-title {
        font-size: 26px;
    }

    .about .right .about-paragraph {
        font-size: 14px;
    }

    .about .right .about-subheading {
        font-size: 17px;
    }

    /* Products section media queries */
    .products-title {
        font-size: 30px;
    }

    .portfolio .portfo-items .item{
        width: 90%; /* Adjust width for single column on mobile */
    }

    /* Reviews section media queries */
    .reviews-title {
        font-size: 30px;
    }

    .feedback .customers .item{
        width: 90%; /* Adjust width for single column on mobile */
    }


    .portfolio{
        padding: 60px 42px;
    }

    .portfolio .portfo-items{
        gap: 18px;
    }

    .feedback{
        padding: 85px 42px;
    }

    footer{
        padding: 85px 42px;
    }

    footer .bottom{
        flex-direction: column-reverse;
        gap: 14px;
    }

}

@media screen and (max-width: 576px) {
    
    nav ul li a{
        font-size: 13px;
    }

    nav .logo a{
        font-size: 18px;
    }

    .main .left h3{
        font-size: 32px;
    }

    .main .left p{
        font-size: 16px;
    }

    .main .left button{
        width: 100%;
    }

    .skills .skill-items .item{
        width: 100%;
    }

    .portfolio .header button{
        font-size: 12px;
        padding: 8px 14px;
    }

    .portfolio .portfo-items .item{
        width: 80%;
    }

    .feedback .customers .item{
        width: 100%;
    }

}
