﻿
body {
    font-family: 'Segoe UI', sans-serif;
}
.h-10 {
    height: 3.5rem !important;
}
/* Sticky header */
#header {
    position: sticky;
    background: #fff;
    color: black;
    top: 0;
    z-index: 1000;
}

    /* ON SCROLL */
    #header.scrolled {
        background: #fff;
        backdrop-filter: blur(10px);
    }

/* NAV LINKS */
.nav-link {
    position: relative;
    transition: 0.3s;
}

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0%;
        height: 2px;
        background: #a855f7;
        transition: 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* HAMBURGER */
.line {
    width: 25px;
    height: 2px;
    background: black;
    transition: 0.3s;
}

/* ANIMATION TO X */
.menu-open .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .line:nth-child(2) {
    opacity: 0;
}

.menu-open .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
    position: absolute;
    width: 100%;
    background: white;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}

    .mobile-menu a {
        padding: 15px;
        border-bottom: 1px solid #000;
    }

    /* OPEN STATE */
    .mobile-menu.open {
        max-height: 300px;
    }

/* HERO SLIDER */
.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: none;
}

    .hero-slide.active {
        display: flex;
    }

.overlay {
    background: rgba(0,0,0,0.6);
}

/* Hover effect */
.card:hover {
    transform: translateY(-8px);
    transition: 0.3s;
}

.bg-black {
    --tw-bg-opacity: 1;
    /*    background-color: rgb(98, 16, 239);*/
    /*background-color: rgba(30, 58, 138, var(--tw-bg-opacity));*/
    background-color: #190933 !important;
}

.bg-white {
    --tw-bg-opacity: 1;
    /*    background-color: rgb(98, 16, 239);*/
    /*background-color: rgba(30, 58, 138, var(--tw-bg-opacity));*/
    background-color: #FDF5EE !important;
}

/* FLOATING CARDS */
.card-float {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-float img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.card-float span {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-weight: 600;
    font-size: 14px;
}

/* Hover zoom */
.card-float:hover img {
    transform: scale(1.1);
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Delays */
.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

.delay-3 {
    animation-delay: 3s;
}

/* GLOW BUTTON */
.btn-glow {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid white;
    transition: 0.3s;
}

    .btn-glow:hover {
        background: linear-gradient(45deg, #7c3aed, #2563eb);
        border: none;
        box-shadow: 0 0 20px rgba(124,58,237,0.7);
    }

/* CARD BASE */
/*.product-card {
    position: relative;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    overflow: hidden;
}*/

/* INNER CARD */
/*.product-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: #0b0b0b;
    border-radius: 20px;
    z-index: 1;
}*/

/* IMAGE */
/*.product-card img {
    position: relative;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    z-index: 2;
}*/

/* LARGE CARD */
/*.product-card.large img {
    height: 300px;
}*/

/* CONTENT */
/*.product-card .content {
    position: absolute;
    color: #ffff;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    font-size: 16px;
    font-weight: 500;
}

    .product-card .content.top {
        top: 16px;
        bottom: auto;
    }*/

/* HOVER EFFECT */
/*.product-card:hover {
    transform: translateY(-8px);
    transition: 0.3s;
}*/

/* GLOW */
/*.product-card:hover {
    box-shadow: 0 0 25px rgba(124,58,237,0.5);
}*/

/* OPTIONAL CUT CORNER EFFECT */
/*.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: black;
    border-top-left-radius: 20px;
    z-index: 3;
}*/


/* FOOTER TITLES */
.footer-title {
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

/* LINKS */
.footer-links li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

    .footer-links li:hover {
        color: #a855f7;
    }

/* SOCIAL ICONS */
.icon {
    width: 32px;
    height: 32px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.3s;
}

    .icon:hover {
        background: #a855f7;
        color: white;
        border: none;
    }


/* WRAPPER */
/* HERO WRAPPER */
.hero-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-slide {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-tech-tree.jpg'); /* your new image */
    background-size: cover;
    background-position: right center; /* keeps tree visible */
    background-repeat: no-repeat;
    animation: zoomInOut 10s ease-in-out infinite;
}

/* ZOOM IN OUT ANIMATION */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08); /* zoom in */
    }

    100% {
        transform: scale(1);
    }
}


/* ACTIVE SLIDE */
.hero-slide.active {
    opacity: 1;
    transform: scale(1.1); /* slow zoom */
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* CONTENT (LEFT SIDE LIKE TATA) */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 100px 40px;
}

    /* TITLE */
    .hero-content h1 {
        font-size: 60px;
        font-weight: 300;
        color: #fff;
        line-height: 1.2;
        animation: fadeUp 1s ease forwards;
    }

/* HIGHLIGHT WORD */
.highlight {
    color: #a855f7;
    animation: glowText 2s ease-in-out infinite alternate;
}

/* PARAGRAPH */
.hero-content p {
    margin-top: 20px;
    color: #ddd;
    font-size: 18px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

/* BUTTON */
.hero-btn {
    background: linear-gradient(45deg, #eeebf4, #242527);
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid white;
    transition: 0.3s;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.8s;
}

    .hero-btn:hover {
        background: linear-gradient(45deg, #7c3aed, #2563eb);
        border: none;
        box-shadow: 0 0 20px rgba(124,58,237,0.7);
    }

/* TEXT ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GLOW EFFECT */
@keyframes glowText {
    from {
        text-shadow: 0 0 5px #a855f7;
    }

    to {
        text-shadow: 0 0 20px #a855f7;
    }
}


/* INPUT STYLE */
.input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    outline: none;
    color: black;
}

.input:focus {
    border-color: #a855f7;
}

/* SUBMIT BUTTON */
.btn-submit {
    background: #2563eb;
    padding: 12px 30px;
    border-radius: 30px;
    transition: 0.3s;
}

    .btn-submit:hover {
        background: linear-gradient(45deg, #7c3aed, #2563eb);
    }

/* RIGHT PANEL */
.contact-box {
    border: 1px solid #7c3aed;
    border-radius: 16px;
    padding: 30px;
}

/* CONTACT ITEMS */
.contact-item {
    margin-bottom: 20px;
}

    .contact-item a {
        color: #a855f7;
        display: block;
        margin-top: 5px;
        border-bottom: 1px solid #333;
        padding-bottom: 5px;
    }

/* OUTLINE BUTTON */
.btn-outline {
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

    .btn-outline:hover {
        background: white;
        color: black;
    }


/* LOGO section CSS   */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 90s linear infinite; /* 🔥 slow + smooth */
}

.logo-item {
    width: 180px;
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-item img {
        max-height: 70px;
        max-width: 100%;
        object-fit: contain;
        
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        /* Hover effect */
        .logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.08);
        }

/* 🔥 PERFECT LOOP ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Product Css Section below */

/* PAGE WRAPPER */
.products-page {
    background: #f9fafb;
}

/* HERO SECTION */
.products-hero {
    position: relative;
    text-align: center;
    height: 250px;
    padding: 70px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(180deg, #190933, #693dab, #140726);
}

    .products-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .products-hero h1,
    .products-hero p {
        position: relative;
        z-index: 1;
    }

    .products-hero h1 {
        font-size: 42px;
        font-weight: 700;
        color: #ffffff;
    }

    .products-hero p {
        color: #e5e7eb;
        margin-top: 10px;
    }

/* CONTAINER */
.products-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CARD */
.product-row {
    display: flex;
    align-items: stretch;
    background: #f3f4f6;
    border-radius: 14px;
    overflow: hidden;
    /* LIGHT BORDER */
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

    /* HOVER */
    .product-row:hover {
        border: 2px solid #3b82f6;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* ALTERNATE */
    .product-row.reverse {
        flex-direction: row-reverse;
    }

/* IMAGE */
.product-image {
    width: 55%;
    min-height: 320px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* CONTENT */
.product-content {
    width: 55%;
    padding: 35px;
    background: #f3f4f6;
}

/* ICON */
.icon-circle {
    width: 48px;
    height: 48px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .icon-circle i {
        font-size: 20px;
        color: #3b82f6;
    }

/* TITLE */
.product-content h3 {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 22px;
    margin-bottom: 12px;
}

/* TEXT */
.product-content p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* LIST */
.product-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-content ul {
    padding-left: 18px;
}

.product-content li {
    margin-bottom: 6px;
    color: #374151;
}

    /* BULLET COLOR */
    .product-content li::marker {
        color: #3b82f6;
    }

/* MOBILE */
@media (max-width: 768px) {
    .product-row {
        flex-direction: column !important;
    }

    .product-image,
    .product-content {
        width: 100%;
    }

    .product-image {
        min-height: 220px;
    }
}

/* 🔥 CTA SECTION */
.custom-cta-section {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    /* 🔥 YOUR PURPLE GRADIENT */
    background: linear-gradient(135deg, #190933, #693dab, #140726);
    color: #ffffff;
}

/* CONTENT */
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* TITLE */
.custom-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */
.custom-cta-section p {
    font-size: 16px;
    color: #e5e7eb;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #190933;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    /* HOVER */
    .cta-btn:hover {
        background: #e5e7eb;
    }

/*ABout Section Css*/

/* CONTAINER */
.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* HERO */
/* HERO */
.about-hero {
    position: relative;
    text-align: center;
    height: 250px; /* control banner height */
    padding: 20px 20px 20px; /* top spacing */

    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 🔥 pushes text to TOP */
    align-items: center;
    background: linear-gradient(180deg, #190933, #693dab, #140726);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    /* OPTIONAL DARK OVERLAY (VERY IMPORTANT FOR TEXT VISIBILITY) */
    .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45); /* adjust darkness */
        border-radius: inherit;
    }

    /* CONTENT ABOVE OVERLAY */
    .about-hero h1,
    .about-hero p {
        position: relative;
        z-index: 1;
    }

    /* HEADING */
    .about-hero h1 {
        font-size: 42px;
        color: #ffffff; /* 🔥 better contrast */
        font-weight: 700;
    }

    /* SUBTEXT */
    .about-hero p {
        color: #e5e7eb;
        margin-top: 10px;
    }

/* SECTIONS */
.about-section {
    margin-bottom: 50px;
}

    .about-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .about-section p {
        color: #4b5563;
        line-height: 1.7;
    }

/* HIGHLIGHT */
.about-highlight {
    background: linear-gradient(180deg, #2f0c67, #5c3f87, #24084b);
    color: white;
    padding: 40px;
    text-align:center;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    border-radius: 16px;
    margin-bottom: 50px;
}
    
    /* GRID */
    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }

.about-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

    .about-card:hover {
        transform: translateY(-5px);
    }

/* LIST */
.about-list {
    padding-left: 20px;
}

    .about-list li {
        margin-bottom: 10px;
    }

/* INDUSTRY */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

    .industry-grid div {
        background: #f9fafb;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
    }

/* MISSION */
.about-mission {
    text-align: center;
    padding: 50px;
    background: #f3f4f6;
    border-radius: 16px;
}

/* 🔥 SECTION WRAPPER */
.about-highlight-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 🔥 CARD */
.about-highlight-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #bca8e0;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    /* HOVER */
    .about-highlight-card:hover {
        border: 1.5px solid #a855f7;
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }

/* ICON */
.about-icon {
    width: 55px;
    height: 55px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .about-icon i {
        font-size: 24px;
        color: #3b82f6;
    }

/* TITLE */
.about-highlight-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* TEXT */
.about-highlight-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-highlight-section {
        grid-template-columns: 1fr;
    }
}

.core-values-section {
    text-align: center;
    padding: 20px 20px;
    background: #f9fafb;
}

    /* TITLE */
    .core-values-section h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

/* SUBTITLE */
.core-subtitle {
    color: #6b7280;
    margin-bottom: 50px;
}

/* GRID */
.core-values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.core-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    border: 1px solid #bca8e0;
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

    /* HOVER */
    .core-card:hover {
        transform: translateY(-6px);
        border: 1.5px solid #a855f7;
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

/* ICON */
.core-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .core-icon i {
        font-size: 22px;
        color: #3b82f6;
    }

/* TITLE */
.core-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.core-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }
}

/* 🔥 SECTION */
.about-features-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* GRID */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ITEM (CARD) */
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f9fafb;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid #bca8e0;
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

    /* HOVER */
    .about-feature-item:hover {
        border: 1.5px solid #a855f7;
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

    /* ICON */
    .about-feature-item i {
        color: #3b82f6;
        font-size: 18px;
        margin-top: 2px;
    }

    /* TEXT */
    .about-feature-item span {
        font-size: 14px;
        color: #374151;
        line-height: 1.5;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* 🔥 SECTION */
.industries-section {
    text-align: center;
    padding: 80px 20px;
    background: #f9fafb;
}

    /* TITLE */
    .industries-section h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

/* SUBTITLE */
.industries-subtitle {
    color: #6b7280;
    margin-bottom: 50px;
}

/* GRID */
.industries-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.industry-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    border: 1px solid #bca8e0;
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

    /* HOVER */
    .industry-card:hover {
        border: 1.5px solid #a855f7;
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

/* ICON */
.industry-icon {
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .industry-icon i {
        font-size: 24px;
        color: #3b82f6;
    }

/* TITLE */
.industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.industry-card p {
    font-size: 14px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}