/* Base Reset */
* {
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to all text elements */
h1,
h2,
h3,
h4,
h5,
h6,

span,
li,
blockquote,
label,
a {
    animation: fadeSlideUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Optional: add delay based on order */
h1 {
    animation-delay: 0.1s;
}

h2 {
    animation-delay: 0.2s;
}

h3 {
    animation-delay: 0.3s;
}



span,
li,
blockquote,
label,
a,
div {
    animation-delay: 0.5s;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.main-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Top Info Bar */
.top-bar {
    background-color: #008ca1;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.main-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px !important;

    object-fit: contain;
    /* or 'cover' if you want it cropped */
    display: block;
}


/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 60px;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 800;
    transition: color 0.3s;
}

.profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(to right, #00b4db, #0083b0);
    /* gradient blue */
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.profile-button:hover {
    transform: translateY(-2px);
}

.has-submenu {
    position: relative;
    cursor: pointer;
}

.submenu {
    display: none;
    position: absolute;
    /* top: calc(100% - 1px); */
    left: 0;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* width: 200px; */
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(0); */
    transition: all 0.3s ease;
    z-index: 999;

    gap: 0;
    /* no big gaps */
    overflow: visible;
    max-height: none;
}


.has-submenu:hover .submenu {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    color: #007bff;
    /* transform: translateY(0); */
}

.has-submenu:hover .submenu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* Horizontal items */
    column-gap: 10px;
    row-gap: 10px;
    max-height: none;
    height: auto;
    color: #007bff;
}

.submenu {
    width: 300px;
    /* Adjust width for two columns */
}

.submenu li {
    width: 100%;
    color: #007bff;
    /* Two columns */
}


/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.4s ease;
    padding-top: 60px;
}

.sidebar a {
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: background 0.3s;
}

.sidebar a:hover {
    background-color: #00e0ff;
    color: black;
}

.sidebar .closebtn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }
}


.scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.image-scroll {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeZoom 9s infinite ease-in-out;
}

.image-item:nth-child(1) {
    animation-delay: 0s;
}

.image-item:nth-child(2) {
    animation-delay: 3s;
}

.image-item:nth-child(3) {
    animation-delay: 6s;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 1;
        transform: scale(1.05);
    }

    30% {
        opacity: 1;
        transform: scale(1.05);
    }

    40% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.transparent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: left;
    align-items: left;
    color: white;
    text-align: left;
    padding: 20px;
}

.content-box .tagline {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.content-box h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 18px;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}


.image-overlay {
    position: absolute;
    top: 170px;
    background-color: #868686;
    color: white;
    padding: 30px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.transparent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    padding-left: 30px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: 2;
    /* backdrop-filter: blur(3px); */
    display: flex;
    align-items: center;
}

.transparent-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 10% 120%, 0% 100%);
    background: rgba(3, 138, 161, 0.5);
    /* Cyan layer */
    z-index: -1;
}

.transparent-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0% 100%);
    background: rgba(63, 73, 75, 0.5);
    /* Cyan layer */
    z-index: -1;
}

.content-box {
    padding-left: 60px;
    color: #fff;
    max-width: 500px;
    z-index: 3;
}

.content-box .tagline {
    color: #b2ebf2;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.content-box h1 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.content-box p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #e0f7fa;
}

.cta-btn {
    margin-top: 20px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.cta-btn:hover {
    background-color: rgba(0, 172, 193, 0.8);
    color: #fff;
}

.cta-btn .icon {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .transparent-overlay {
        clip-path: none;
        width: 100%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
    }

    .transparent-overlay::after {
        display: none;
    }

    .content-box h1 {
        font-size: 1.5rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 8px 16px;
    }
}


.image-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.image-description {
    font-size: 1rem;
    opacity: 0.9;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    will-change: transform;
    user-select: none;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.auto-scroll-toggle {
    text-align: center;
    margin-top: 20px;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: rgba(76, 175, 80, 0.7);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .image-scroll {
        height: 300px;
    }

    .nav-button {
        font-size: 1.5rem;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

.footer {
    background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(26, 148, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 148, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #1a94ff, #00d4ff);
}

.company-info {
    max-width: 300px;
}

.company-info .logo {
    display: flex;
    align-items: center;
    /* margin-bottom: 20px; */
}

.logo-icon {

    /* background: linear-gradient(45deg, #1a94ff, #00d4ff); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}



.company-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.company-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 25px;
}

.certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-badge img {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a94ff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(26, 148, 255, 0.2);
    transform: translateY(-2px);
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: #b8c5d6;
    transition: color 0.3s ease;
}

.services-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1a94ff;
    font-size: 10px;
    top: 2px;
}

.services-list li:hover {
    color: #1a94ff;
    cursor: pointer;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #1a94ff;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #1a94ff, #00d4ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon::before {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.contact-icon.location::before {
    content: '📍';
}

.contact-icon.email::before {
    content: '✉';
}

.contact-icon.phone::before {
    content: '📞';
}

.contact-details h4 {
    color: #1a94ff;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #b8c5d6;
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #b8c5d6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #1a94ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 148, 255, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    /* text-decoration: none; */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    /* animation: float 3s ease-in-out infinite; */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .company-info {
        max-width: 100%;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a94ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 148, 255, 0.4);
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.scroll-to-top.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 148, 255, 0.6);
}

/* Floating animation */
.scroll-to-top {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Demo content for testing */
.demo-content {
    height: 150vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    text-align: center;
}

.scroll-instruction {
    margin-top: 20px;
    font-size: 0.6em;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}