* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'nasalization';
    src: url('../assets/fonts/nasalization-rg.otf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #1c1c1c;
    color: white;
}

header .logo img {
    width: 150px;
}

header .logo H2 {
    margin: auto;
    margin-right: -50px;
    font-size: 1.5rem;
    font-family: "nasalization";
    letter-spacing: 50px;
    text-align:center;
    opacity: 50%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
    
}

/* Dropdown Menu */
nav ul li.dropdown {
    position: relative;
    display: inline-block;
   
}

nav ul li .dropbtn {
    cursor: pointer;
}

nav ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c1c1c;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

nav ul li .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block; 
}

nav ul li .dropdown-content a:hover {
    background-color: #ff6b35;
}

nav ul li:hover .dropdown-content {
    display: block;
}

/* Hero Section with Dynamic Shapes */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color: #0b3d91; /* Dark background for contrast */
}

.hero-2 {
    position: relative;
    height: 30vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color: #0b3d91; /* Dark background for contrast */
}
.bottom {
    margin-bottom: 60px !important;
}



.shapes-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: moveAndRotate 10s infinite linear;
}

.shape1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
}

.shape2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 80%;
    animation-duration: 12s;
}

.shape3 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 30%;
    animation-duration: 15s;
}

.shape4 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 60%;
    animation-duration: 18s;
}

.shape5 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 40%;
    animation-duration: 20s;
}

@keyframes moveAndRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Ensure the content stays above the shapes */
.container {
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;

}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn-yellow {
    display:block;
    padding: 0.7rem 0;
    width: 100%;
    margin: 0.5rem 0;
    background-color: #fff34f;
    color: #1c1c1c;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;

}

.cta-btn-yellow:hover {
    background-color: #c4ba39;
}   

.cta-btn-orange {   
    display:block;
    padding: 0.7rem 0;
    width: 100%;
    margin: 0.5rem 0;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-btn-orange:hover {
    background-color: #e65929;
}


.cta-btn-blue {   
    display:block;
    padding: 0.7rem 0;
    width: 100%;
    margin: 0.5rem 0;
    background-color: #0b3d91;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-btn-blue:hover {
    background-color: #0a2c6b;
}

.cta-btn-white {
    display:block;
    padding: 0.7rem 0;
    width: 100%;
    margin: 0.5rem 0;
    background-color: white;
    color: #0b3d91;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;

}

.cta-btn-white:hover {
    background-color: #4f8efa;
    color:white;
}

.cta-button-3 {
    display:block;
    padding: 0.7rem 0;
    width: 100%;
    margin: 0.5rem 0;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-align: center;

}

.cta-button {
    padding: 0.7rem 1.5rem;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;

}
.cta-button-2 {
    display:inline-block; 
    background-color: #ff6b35;
    padding: 0.7rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;

}

.cta-button:hover {
    background-color: #e65929;
}

/* Services Section */
#services {
    background-color: #fff;
    padding: 2rem 0;
    text-align: center;
}

#services h2 {
    color: #1c1c1c;
    margin-bottom: 1.5rem;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    border-radius: 10px;
    margin: 1rem;
    padding: 1rem;
    flex-basis: 22%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    color: #0b3d91;
    margin: 1rem 0;
}

.card p {
    font-size: 0.9rem;
    color: #555;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
#about {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

#about h2 {
    color: #1c1c1c;
    margin-bottom: 1.5rem;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 2rem 0;
    text-align: center;
}

#contact h2 {
    color: #1c1c1c;
    margin-bottom: 1.5rem;
}

form input, form textarea {
    width: 90%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 0.8rem 1.5rem;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #e65929;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    color: white;
    padding: 1rem 0;
    text-align: center;
   bottom: 0;
    width: 100%;
}

footer a {
    color: #ff6b35;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* Automation Apps Section */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cta-btn-3 {

    width:95%;
}

.app-tile, .service-tile {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly; 
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-tile-2 {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around; 
    background-color: #0b3d91;
    border-radius: 10px;
    padding: 20px;
    margin-top:25px;
    margin-bottom:25px;
    text-align: Left;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-tile-2 h3, .app-tile-2 h2 {
    color: white;
    margin-bottom: 10px;
}

.app-tile-2 p {
    font-size: 0.9rem;
    color: white;
}

.app-tile-2 img {
    width: 90%;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, box-shadow 0.3s ease;

}

.app-tile-2-grid {
    display: grid;
    width:100%;

    grid-template-columns: 30% 30% 30%;  
    justify-content: space-between;
    text-justify: center;
}

.app-tile-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.app-tile-2 img:hover {
    width:92%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}




.app-tile img , .service-tile img {
    width: 90%;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, box-shadow 0.3s ease;

}

.app-tile h3, .service-tile h3 {
    color: #0b3d91;
    margin-bottom: 10px;
}

.app-tile p, .service-tile p {
    font-size: 0.9rem;
    color: #555;
}

.app-tile:hover, .service-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.app-tile img:hover, .service-tile img:hover {
    width:92%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#page-container {
    position: relative;
    min-height: 100vh;
  }

  #automation, #tech-support {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

#automation h1, #tech-support h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #0b3d91;
    margin-bottom: 1.5rem;
}

#automation p, #tech-support p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#web-to-pdf p {
    margin-bottom: 1rem;
}
.automation-benefits, .support-benefits {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.automation-benefits h2, .support-benefits h2 {
    text-align: center;
    color: #0b3d91;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.automation-benefits ul, .support-benefits ul {
    list-style: none;
    padding: 0;
}

.automation-benefits ul li, .support-benefits ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
}

.automation-benefits ul li:before, .support-benefits ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #0b3d91;
    font-weight: bold;
}

/* Call-to-Action Banner */
.cta-banner {
    background-color: #0b3d91;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.cta-banner h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-banner p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color:white;
}
.cta-banner .cta-button {
    padding: 0.7rem 1.5rem;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-banner .cta-button:hover {
    background-color: #e65929;
}
.btn-block {
    display: block;
    width: 90%;
}

.product-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 20px;
    margin-top: 20px;
}

.product-tile {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly; 
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width:95%;
}


.merchandise-tile img {
    width: 90%;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, box-shadow 0.3s ease;

}

.merchandise-tile {
    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width:95%;
}


.product-tile h3 {
    color: white;
    margin-bottom: 10px;
}


.product-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.product-info {
    display:flex;
    flex-direction: column;
    justify-content: space-evenly; 
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.merchandise-info {
    display:flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merchandise-info img {
    width: 90%;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, box-shadow 0.3s ease;
}


.product-cta {
    background-color: #0b3d91;
    padding: 1rem;
    text-align: center;
    color:white;
    width:95%;
    height:fit-content

}

.merchandise-cta {

    background-color: #0b3d91;
    padding: 1rem;
    text-align: center;
    color:white;
    width:95%;
    height:fit-content;
    gap:20px;

    
}
.product-cta p {
    font-size: 1rem;
}

.pricing-table {
    display: flex;
    width: 100%;
    flex-direction: column;
    white-space: wrap;
    hyphens: auto;
    overflow: hidden;
}

.pricing-table-element {
    display:inline;
    text-align: center;
    
}

.product-benefits {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.product-benefits h2 {
    color: #0b3d91;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.product-benefits p {
    margin-bottom: 2rem;
    font-size: 0.8rem;
}


.product-benefits {
    text-align: left;
    font-size: 10px;
}


.product-benefits ul {
    list-style: none;
    padding: 0;
}

.product-benefits ul li {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.product-benefits ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #0b3d91;
    font-weight: bold;
}

.product-specs {
    background-color: #ffffff75;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.product-specs h2 {
    text-align: center;
    color:white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-specs p {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}


.product-specs {
    text-align: center;
    font-size: 10px;
}


.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs ul li {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: white;
    padding-left: 1rem;
    position: relative;
    text-align: left;
}

.product-specs ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.white-divider {
    display:block;
    background-color: white;
    height: 1px;
    width: 80%;}

    .contact-modal, .beta-test-modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 50%;
    }
    .modal-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.2;
    text-align : center;
    }

    .modal-divider {
        margin: 20px auto;
        width: 60%;
        border-bottom: 1px solid #1a65bb;
    }
    .close {
        cursor: pointer;
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .display1 {
        display: flex;
        column-gap: 2%;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .gallery2 {
      width: 90%;
      max-width: 900px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .main-image {
      width: 100%;
      height: 500px;
      object-fit: contain;
      display: block;
      background-color: #000;
      cursor: zoom-in;
    }

    .thumbnails {
      display: flex;
      overflow-x: auto;
      padding: 10px;
      gap: 10px;
      background: #fafafa;
    }

    .thumbnails img {
      height: 80px;
      border-radius: 6px;
      cursor: pointer;
    }


    .imagemodal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

.img-gallery {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}


.product-cta {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
width:100%;
}


#cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
  }
  #cart-panel.open {
    right: 0;
  }
  #cart-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }





/* Mobile Styles */
@media (max-width: 768px) {
    /* Container */
    .container {
        width: 95%;
    }

    /* Header */
    header .logo img {
        width: 120px;
    }

    header .logo h2 {
        font-size: 1rem;
        letter-spacing: 10px;
        margin-right: 0;
        padding-left: 20px;
        padding-top: 10px;

    }



    nav ul li {
        margin-bottom: 10px;
    }

    nav ul li a {
        padding: 0.5rem;
    }

    /* Hero Section */
    .hero, .hero-2 {
        height: 60vh;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Service Cards */
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex-basis: 90%;
    }

    /* About Section */
    #about {
        padding: 1rem 0;
    }

    /* Contact Form */
    form input, form textarea {
        padding: 0.6rem;
    }

    form button {
        padding: 0.6rem 1rem;
    }

    /* CTA Buttons */
    .cta-btn-orange, .cta-btn-blue, .cta-btn-white, .cta-button, .cta-button-2, .cta-button-3, .cta-btn-yellow {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Automation Apps Section */
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .app-tile {
        padding: 1rem;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-tile, .product-info {
        padding: 1rem;
        margin: 0 auto;
    }

    .product-tile img, .product-info img {
        width: 100%;
        height: auto;
    }

    #cart-toggle {
    top:unset !important;
    bottom: 20px;
    }

    .product-cta {
        padding: 1rem;
    }

    /* Footer */
    footer {
        padding: 0.5rem 0;
    }

    .cta-banner {
        padding: 1rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    /* Modal */
    .modal-content {
        width: 90%;
    }

    .app-tile-2 {
        padding: 1rem;
    }

    .app-tile-2-grid {
        grid-template-columns: 1fr;
    }
    
}
