/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(to bottom, #1a1a1a, #333);
}

/* Hero Container and Overlay */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0;
    margin: 0;
    top: 0;
}

.hero-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        335deg,
        rgba(194, 244, 125, 0.6),
        rgba(77, 206, 95, 0.6),
        rgba(173, 45, 153, 0.6),
        rgba(126, 250, 165, 0.6)
    );
    background-size: 400% 400%;
    animation: gradient-animation 15s ease-in-out infinite;
    z-index: 1;
    opacity: 1;
    mix-blend-mode: soft-light;
}

.hero-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-section.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.hero-content {
    width: 100%;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.hero-section .hero-content {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

#home {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

#home h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

#home h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.logo-container {
    position: relative;
    width: 400px;
    height: 160px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.logo-background {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: url('assets/images/atekslogo.jpg');
    background-size: cover;
    background-position: center;
    animation: moveBackground 15s infinite alternate ease-in-out;
    -webkit-mask: url('assets/images/logo.svg') center/contain no-repeat;
    mask: url('assets/images/logo.svg') center/contain no-repeat;
}

.hero-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    animation: fadeInLogo 1s ease-out forwards;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-logo:hover {
    filter: drop-shadow(0 0 15px rgba(255, 124, 0, 0.5));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-logo {
        height: 60px;
    }
}

.logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: -1;
}

@media (max-width: 768px) {
    .logo-container {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    #home h1 {
        font-size: 2.5rem;
    }

    #home h2 {
        font-size: 1.5rem;
    }

    .logo-container img {
        max-width: 150px;
    }
}

/* Ensure content scrolls over fixed overlay */
.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.logo-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-background {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: url('assets/images/atekslogo.jpg');
    background-size: cover;
    background-position: center;
    animation: moveBackground 15s infinite alternate ease-in-out;
    -webkit-mask: url('assets/images/logo.svg') center/contain no-repeat;
    mask: url('assets/images/logo.svg') center/contain no-repeat;
}

.hero-logo {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
    animation: fadeInLogo 1s ease-out forwards;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes moveBackground {
    0% { transform: translate(0, 0) scale(1.1); }
    25% { transform: translate(-10%, 10%) scale(1.2); }
    50% { transform: translate(5%, -15%) scale(1.3); }
    75% { transform: translate(-15%, -5%) scale(1.2); }
    100% { transform: translate(10%, 5%) scale(1.1); }
}

.logo-container:hover .logo-background {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .logo-container {
        width: 300px;
        height: 120px;
    }
}

.logo-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    -webkit-mask: url('assets/images/logo.svg') center/contain no-repeat;
    mask: url('assets/images/logo.svg') center/contain no-repeat;
    animation: floatLogo 20s infinite alternate ease-in-out;
    z-index: 2;
}

@keyframes floatLogo {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(5px, -5px) scale(1.05);
    }
    50% {
        transform: translate(-5px, 5px) scale(1.1);
    }
    75% {
        transform: translate(3px, 3px) scale(1.05);
    }
    100% {
        transform: translate(-3px, -3px) scale(1);
    }
}

.logo-container:hover .logo-mask {
    animation-play-state: paused;
}

.hero-logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transform: scale(1.05);
}

.slide.active .hero-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Navigation Styles */
.bottom-nav {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: max-content;
}

.bottom-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.bottom-nav .nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.bottom-nav .nav-link:hover,
.bottom-nav .nav-link.active {
    color: #FF7C00;
}

.bottom-nav .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF7C00;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.bottom-nav .nav-link:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF7C00;
    transform: scaleX(0.7);
}

.bottom-nav .nav-linkc {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    background: #FF7C00;
    border-radius: 25px;
    border: 2px solid #FF7C00;
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(255, 124, 0, 0.2);
}

.bottom-nav .nav-linkc:hover {
    background: transparent;
    color: #FF7C00;
}

/* Bottom Navigation - Blog Page */
.blog-page .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.5rem 0;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    justify-content: center;
}

.blog-page .bottom-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.blog-page .bottom-nav .nav-link {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.blog-page .bottom-nav .nav-link:hover,
.blog-page .bottom-nav .nav-link.active {
    color: #c2f47d;
    background: rgba(194, 244, 125, 0.1);
}

.blog-page .bottom-nav .nav-link:after {
    display: none;
}

@media (max-width: 991px) {
    .bottom-nav:not(.blog-page .bottom-nav) {
        bottom: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.95);
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottom-nav ul {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottom-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .bottom-nav .nav-linkc {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem 0;
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .bottom-nav {
        padding: 0.6rem;
    }

    .bottom-nav ul {
        gap: 0.3rem;
    }

    .bottom-nav .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .bottom-nav .nav-linkc {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Ensure proper spacing for content above fixed nav */
@media (max-width: 991px) {
    .hero-section {
        padding-bottom: 70px;
    }
    
    .hero-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding-bottom: 70px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-section {
        min-height: 100%;
        height: auto;
        overflow-y: auto;
        padding: 3rem 1rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .about-item,
    .service-item,
    .feature-item,
    .faq-item {
        padding: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-section {
        min-height: 100%;
        height: auto;
        overflow-y: auto;
        padding: 2rem 0.5rem;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    /* Reduce icon sizes on mobile */
    .about-item i,
    .service-item i,
    .feature-item i,
    .faq-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    /* Adjust text sizes */
    .about-item h3,
    .service-item h3,
    .feature-item h3,
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .about-item p,
    .service-item p,
    .feature-item p,
    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Enable smooth scrolling for mobile */
.hero-container {
    -webkit-overflow-scrolling: touch;
}

/* Ensure content is scrollable on mobile */
@media (max-width: 991px) {
    .hero-container {
        height: auto;
        overflow-y: auto;
    }

    .hero-section.active {
        display: block;
        height: auto;
        min-height: 100%;
    }
}

/* Common Grid Layout */
.about-content,
.services-grid,
.features-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Responsive Grid Layouts */
@media (max-width: 1200px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about-item,
    .service-item,
    .feature-item,
    .faq-item {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem 80px;
    }

    .about-item h3,
    .service-item h3,
    .feature-item h3,
    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .about-item p,
    .service-item p,
    .feature-item p,
    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-item i,
    .service-item i,
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-item,
    .service-item,
    .feature-item,
    .faq-item {
        padding: 1.25rem;
    }

    .hero-content {
        padding: 1.5rem 1rem 70px;
    }
}

/* Remove duplicate media queries */
@media (max-width: 991px) {
    .hero-section {
        padding-bottom: 70px;
    }
}

/* Common Grid Item Styles */
.about-item,
.service-item,
.feature-item,
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

/* Hover Effects */
.about-item:hover,
.service-item:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Common Icon Styles */
.about-item i,
.service-item i,
.feature-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Common Heading Styles */
.about-item h3,
.service-item h3,
.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

/* Common Paragraph Styles */
.about-item p,
.service-item p,
.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-item,
    .service-item,
    .feature-item,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.service-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid,
    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1rem;
    }

    .bottom-nav ul {
        gap: 1rem;
    }

    .bottom-nav .nav-link {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section address {
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF7C00;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
   
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer icon and link styles */
.footer-section i {
    width: 20px;
    margin-right: 8px;
    color: #FF7C00;
}

.footer-section address .cta-button {
    display: inline-block;
   
    /*padding: 0.75rem 1.5rem;*/
    background-color: #FF7C00;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.footer-section address .cta-button:hover {
    background-color: #ff3737;
    transform: translateY(-2px);
}

.footer-section address p {
    display: flex;
    align-items: center;
}

.footer-section ul li {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-section address p,
    .footer-section ul li {
        justify-content: center;
    }
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        padding: 0;
        margin-bottom: 2rem;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    background: #fff;
}

section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

section.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

#home {
    min-height: 100vh;
    padding: 0;
}

#about {
   /* background-color: #f8f9fa;*/
}

#services {
    /*background-color: #fff;*/
}

#products {
   /* background-color: #f8f9fa;*/
}

#contact {
    /*background-color: #fff;*/
}

/* Services Section */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

.service-item h3 {
    
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
 
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    color: #FF7C00;
    font-size: 1.4rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

/* Contact Link Styles */
.contact-link {
    color: #FF7C00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.nav-link[target="_blank"]:after {
    content: " ↗";
    font-size: 0.8em;
    vertical-align: super;
}

/* Typography */
h1, h2, h3, p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1.display-4 {
    color: #c2f47d;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
 
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* About Section in Hero */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Services Section in Hero */
.services-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    padding: 0 2rem;
}

.service-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Products Section in Hero */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Common Card Styles */
.about-card h3,
.service-card h3,
.product-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: white;
}

.about-card p,
.service-card p,
.product-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .bottom-nav ul {
        gap: 1rem;
    }

    .bottom-nav .nav-link {
        font-size: 0.9rem;
    }

    .about-content,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-card,
    .service-card,
    .product-card {
        padding: 1.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.service-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 2.5rem;
    color: #FF7C00;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid,
    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1rem;
    }

    .bottom-nav ul {
        gap: 1rem;
    }

    .bottom-nav .nav-link {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}

/* CTA Button Styles */
.cta-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 2rem;
    background: linear-gradient(45deg, #FF7C00, #ff9d45);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 124, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff9d45, #FF7C00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 124, 0, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-text, .cta-icon {
    position: relative;
    z-index: 1;
}

.cta-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #FF7C00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    border: none;
    z-index: 1000;
    font-size: 1.2rem;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    background: #ff3737;
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .hero-container {
        height: auto;
        overflow-y: auto;
    }

    .hero-section {
        position: relative;
        height: auto;
        min-height: 100vh;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-bottom: 80px; /* Space for fixed bottom nav */
    }

    .hero-section.active {
        display: block;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.95);
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottom-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .bottom-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .bottom-nav {
        padding: 0.3rem;
    }

    .bottom-nav .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.4rem;
    }
}

@media (max-width: 991px) {
    html, body {
        overflow-y: auto;
        height: auto;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        position: relative;
    }

    .hero-section {
        position: relative;
        height: auto;
        min-height: 100vh;
        display: none;
        opacity: 1;
        visibility: visible;
        padding-bottom: 80px;
    }

    .hero-section.active {
        display: block;
    }

    .hero-content {
        padding: 60px 20px 80px;
    }

    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 70px;
    }

    .hero-content {
        padding: 40px 15px 70px;
    }

    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .about-item,
    .service-item,
    .feature-item,
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 30px 10px 60px;
    }

    .about-content,
    .services-grid,
    .features-grid,
    .faq-grid {
        gap: 1rem;
        padding: 0 10px;
    }
}

/* Blog Page Styles */
.blog-page {
    background: #000;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.navbar {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(194, 244, 125, 0.2);
}

.nav-logo {
    height: 40px;
    width: auto;
}

.blog-container {
    min-height: 100vh;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, #000000, #1a1a1a);
}

.display-4 {
    color: #c2f47d;
    font-size: clamp(2.5rem, 5vw, 4rem);

}

.lead {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(80vh - 220px);
    max-height: 750px;
    overflow: hidden;
    margin: 1rem auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    display: block;
    animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slider-dots {
    position: fixed;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(194, 244, 125, 0.5);
    transform: scale(1.1);
}

.slider-dot.active {
    background: #c2f47d;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Top Logo Styles */
.top-logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.top-logo:hover {
    transform: scale(1.05);
}

/* Adjust main container to account for fixed logo */
.blog-container {
    padding-top: 20px;
}

@media (max-width: 768px) {
    .top-logo {
        height: 40px;
    }
    
    .top-logo-container {
        padding: 8px 15px;
    }
    
    .blog-container {
        padding-top: 56px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding-top: 56px;
    }
    
    .hero-section {
        top: 56px;
        height: calc(100vh - 56px);
    }
}

/* Slide Content Styles */
.slide-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.slide-content h2 {
    color: #c2f47d;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.slide-content .intro-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #c2f47d;
    margin-bottom: 2rem;
}

.slide-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.slide-content ul li {
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.slide-content ul li:before {
    content: "•";
    color: #c2f47d;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.slide-content ul li strong {
    color: #c2f47d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .slide-content p, 
    .slide-content ul li {
        font-size: 1rem;
    }

    .slide-content .intro-text {
        font-size: 1.1rem;
    }
}

.slide {
    position: relative;
    overflow: hidden;
}

.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.background-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.slide-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .background-logo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 991px) {
    section {
        position: relative;
        height: auto;
        min-height: 100vh;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-bottom: 80px;
    }

    section.active {
        display: block;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
}
