/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Istok Web", serif;
    font-weight: 400;
    font-style: normal;


}

.title-head
    {
        font-family: "Istok Web", serif;
        font-weight: 700;
        font-style: normal;
      }


:root {
    --neon-blue: #00f3ff;
    --neon-purple: #7b2ff7;
    --dark-bg: #0a0a0a;
    --hamburger-color: #cccccc;
    /* Subtle Gray */
    --transition-duration: 0.3s;
    --footer-bg: rgba(10, 10, 10, 0.95);
    --footer-text: #ffffff;
    --footer-link-hover: var(--neon-blue);
    --card-bg: rgba(255, 255, 255, 0.05);
    --section-bg: rgba(10, 10, 10, 0.85);
}

body {
    background: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem; /* Add padding for spacing */
    background: rgba(10, 10, 10, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-style {
    max-height: 8rem; /* Larger default height */
    width: auto; /* Automatically adjust width */
    height: auto; /* Maintain aspect ratio */
    transform: scale(1.2);
    transform-origin: left top;
    margin-right: -10%;
    margin-bottom: -10%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .logo-style {
        max-height: 5rem; /* Slightly smaller on tablets */
    }
}

@media (max-width: 768px) {
    .logo-style {
        max-height: 4rem; /* Smaller on mobile screens */
    }
}

@media (max-width: 480px) {
    .logo-style {
        max-height: 3rem; /* Smallest size for small screens */
    }
}




@keyframes borderGlow {

    0%,
    100% {
        border-color: transparent;
        box-shadow: none;
    }

    50% {
        border-color: var(--neon-blue);
        box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all var(--transition-duration) ease;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 5px;
    background: var(--card-bg);
    box-shadow: inset 0 0 0 0 var(--neon-blue);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--neon-blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
    border-radius: 5px;
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

.nav-links a:hover {
    color: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-purple);
    transform: translateY(-3px);
}

/* Glowing Navbar Overlay */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(123, 47, 247, 0.2), transparent 70%);
    transform: translateX(-50%) rotate(45deg);
    pointer-events: none;
    opacity: 0.3;
    animation: rotateBackground 10s linear infinite;
}

@keyframes rotateBackground {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Enhanced Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Ensure it's above nav-links */
    width: 35px;
    height: 30px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
}

.hamburger div {
    width: 100%;
    height: 4px;
    background: var(--hamburger-color);
    border-radius: 2px;
    transition: all 0.4s ease;
    position: relative;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--hamburger-color);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--hamburger-color);
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    margin-top: 6%;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    /* Ensure consistency with existing styles */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 2rem;
    /* Space between text and graphic */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    margin-top: 8%;
}

.text-content {
    flex: 1;
    min-width: 300px;
    /* Ensure text doesn't get too narrow */
}

.text-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform var(--transition-duration) ease;


}






.cta-button:hover {
    transform: scale(1.05);
}

.graphic-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    /* Ensure graphic doesn't get too narrow */
}

.graphic-content dotlottie-player {
    width: 400px;
    height: 400px;
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
    border-radius: 10px;
}

.graphic-content dotlottie-player:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .graphic-content {
        margin-top: 2rem;
    }

    .graphic-content dotlottie-player {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .graphic-content dotlottie-player {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .graphic-content dotlottie-player {
        width: 250px;
        height: 250px;
    }
}

/* Demo Section */
.demo {
    padding: 4rem 2rem;
    text-align: center;
}

.demo h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.demo-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-10px);
}

.demo-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Technologies We Use Section Styles */
.technologies {
    padding: 4rem 2rem;
    background: var(--section-bg);
    color: var(--footer-text);
    text-align: center;
}

.technologies h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technologies p {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-purple);
}

.tech-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    width: 100%;
}

.tech-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-purple);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
    transition: color var(--transition-duration) ease;
}

.tech-card:hover .tech-icon {
    color: var(--neon-purple);
}

.tech-name {
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 4rem 2rem;
    background: var(--section-bg);
    color: var(--footer-text);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.why-choose-us p {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-content {
    text-align: left;
}

.why-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        grid-template-areas:
            "animation"
            "content";
    }
    
    .why-animation {
        grid-area: animation;
        margin: 0 auto;
        max-width: 250px;
    }
    
    .why-content {
        grid-area: content;
        text-align: center;
    }
    
    dotlottie-player {
        width: 100% !important;
        max-width: 250px !important;
        height: auto !important;
    }
}

.why-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-purple);
}

.why-card i.tech-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    transition: color var(--transition-duration) ease;
}

.why-card:hover i.tech-icon {
    color: var(--neon-purple);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.why-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

/* About Us Section Styles */
.about-us {
    padding: 4rem 2rem;
    background: var(--section-bg);
    color: var(--footer-text);
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    color: var(--neon-blue);
}

.about-text p {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.about-text ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.about-text ul li strong {
    color: var(--neon-blue);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text ul {
        text-align: left;
        display: inline-block;
    }
}

/* Contact Us Section Styles */
.contact-us {
    padding: 4rem 2rem;
    background: var(--section-bg);
    color: var(--footer-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.contact-animation dotlottie-player {
    width: 100% !important;
    height: 100% !important;
    max-width: 800px;
    max-height: 800px;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-us p {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-form {
    /* Removed card-specific styles */
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    resize: vertical;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form button {
    padding: 0.75rem 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition-duration) ease;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* Contact Information Styles */
.contact-info {
    /* Removed card-specific styles */
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: var(--neon-blue);
    font-size: 1.2rem;
}

/* Contact Map Styles (Optional) */
.contact-map iframe {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-purple);
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.contact-map iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
}

/* Footer Styles */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color var(--transition-duration) ease;
}

.footer-section ul li a:hover {
    color: var(--footer-link-hover);
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input[type="email"] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter button {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition-duration) ease;
}

.newsletter button:hover {
    transform: scale(1.05);
}

/* Footer Secondary */
.footer-secondary {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.legal-links ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links ul li a {
    font-size: 0.9rem;
    color: var(--footer-text);
}

.legal-links ul li a:hover {
    color: var(--footer-link-hover);
}

.developed-by p {
    font-size: 0.9rem;
}

.developed-by a {
    color: var(--footer-link-hover);
    text-decoration: none;
    transition: color var(--transition-duration) ease;
}

.developed-by a:hover {
    color: var(--neon-purple);
}

/* Footer Social */
.footer-social {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    text-align: center;
}

.footer-social h3 {
    margin-bottom: 1rem;
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--footer-text);
    font-size: 1.8rem;
    transition: color var(--transition-duration) ease;
}

.social-links a:hover {
    color: var(--footer-link-hover);
}

/* Developed By Icon (Optional) */
.developed-by a i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: right 0.5s ease;
        padding-top: 5rem;
        border-left: 1px solid var(--neon-blue);
        z-index: 999;
        /* Ensure it's below the hamburger */
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .legal-links ul {
        justify-content: center;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    .footer-social h3 {
        font-size: 1.2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
    }

    /* Adjust Technologies Icons for Mobile */
    .tech-icon {
        font-size: 1.8rem;
    }

    .tech-name {
        font-size: 0.85rem;
    }

    /* Adjust Contact Information for Mobile */
    .contact-info {
        align-items: self-start;
    }

    /* Why Choose Us Section Adjustments */
    .why-container {
        grid-template-columns: 1fr;
    }

    /* About Us Section Adjustments */
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text ul {
        text-align: left;
        display: inline-block;
    }
}


/* Service we serve section */
.industries-section {
    padding: 4rem 2rem;
    background: var(--section-bg);
    text-align: center;
    color: var(--footer-text);
}

.industries-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-section p {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 243, 255, 0.1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 243, 255, 0.2), 0 0 20px var(--neon-purple);
}

.industry-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.industry-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--footer-text);
}

.industry-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .industries-section p {
        font-size: 0.95rem;
    }

    .industry-card i {
        font-size: 2rem;
    }
}

/* end service we serve section */
