:root {
    --cream: #FEF3E2;
    --gold: #F3C623;
    --orange-gold: #FFB22C;
    --orange: #FA812F;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --text: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background-color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    transition: all 0.3s ease;
    /* smooth transition */
}

.navbar.scrolled {
    /* background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.314); */
    background: rgb(3, 3, 3);
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.756); */
}


.navbar.scrolled .nav-link {
    color: var(--orange-gold);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--gold) !important;
}


.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    width: 100px;
    margin:10px !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    /* color: var(--dark) !important; */
    color: var(--cream);
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    transition: width 0.3s ease;
}


.active {
    color: var(--gold) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    color: var(--gold) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}


.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.40);
    top: 0;
}


.hero video {
    position: absolute;
    top: 0px;
    left: 0px;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--orange-gold);
    font-weight: 600;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(243, 198, 35, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, rgb(255, 255, 0) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-secondary-custom {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(250, 129, 47, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 129, 47, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    color: #fff;
    border: 2px solid var(--orange);
}

.btn-secondary-custom:hover {
    background: var(--orange);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

h1,
h2,
h3,
h5,
section {
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    overflow: hidden;
    padding-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Story Section */
.story-section,
.products-section,
.differ-section,
.clients-section {
    background: linear-gradient(135deg, #f9f9f9 0%, var(--cream) 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* align-items: center; */
}

.story-grid img {
    /*aspect-ratio: 1;*/
}

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.story-image {
    font-size: 15rem;
    color: var(--orange);
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange-gold) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(243, 198, 35, 0.2);
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    color: var(--cream);
}


/* Isolators Section */
.isolators-section {
    background: #fff;
}

.isolators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.isolator-item {
    background: linear-gradient(135deg, var(--cream) 0%, #f5f5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.isolator-item:hover {
    border-color: var(--orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(250, 129, 47, 0.15);
}

.isolator-voltage {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.isolator-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.isolator-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products Section */
/* .products-section {
    background: linear-gradient(135deg, #f9f9f9 0%, var(--cream) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--orange);
    box-shadow: 0 20px 50px rgba(250, 129, 47, 0.2);
}

.product-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
} */



.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.product-header {
    background: linear-gradient(135deg, #ff6b35 0%, #00c6ff 100%);
    position: relative;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-header img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s ease;
}



.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-content p {
    color: var(--dark-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffa475;
}


/* Services Section */
.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--cream) 0%, #f5f5f5 100%);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(250, 129, 47, 0.15);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Clients Section */
/* .clients-section {
    background: linear-gradient(135deg, #f9f9f9 0%, var(--cream) 100%);
} */

.clients-grid {
    display: grid;
    justify-content:center;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.client-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(250, 129, 47, 0.2);
}

.client-logo {
    font-size: 3rem;
    /* color: var(--orange); */
    margin-bottom: 1rem;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.client-type {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enquiry Section */
.enquiry-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: #fff;
}

.enquiry-section .section-title,
.enquiry-section .section-subtitle {
    color: #fff;
}

.enquiry-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 198, 35, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

a {
    text-decoration:none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(243, 198, 35, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(250, 129, 47, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 129, 47, 0.4);
}

/* Contact Section */
.contact-section {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, var(--cream) 0%, #f5f5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(250, 129, 47, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a,
.contact-section a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

footer {
    background: var(--dark-light);
    color: var(--cream);
    padding: 3rem 0 1rem;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--orange-gold);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--orange-gold);
    color: var(--cream);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-grid,
    .hero-buttons {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .story-image {
        font-size: 8rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .products-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* From Uiverse.io by Navarog21 */
.anim-button {
    /*width: 10em;*/
    position: relative;
    height: 3.5em;
    border: 3px ridge var(--orange-gold);
    outline: none;
    background-color: transparent;
    /* color: white; */
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    align-content: center;
}

.anim-button::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #fcf6ee;
    transition: 0.5s;
    transform-origin: center;
}

.anim-button::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #fcf6ee;
    transition: 0.5s;
}

.anim-button:hover::before,
.anim-button:hover::after {
    transform: scale(0)
}

.anim-button:hover {
    box-shadow: inset 0px 0px 25px var(--gold);
}

.breadcrumb-section {
    height: 225px;
    background: url("assets/img/breadcrumb-back.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 14rem 2rem 9rem 2rem;
}

.breadcrumb-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.819);
    z-index: 1;
}

/* Make text appear above the overlay */
.breadcrumb-section * {
    position: relative;
    z-index: 2;
}


.breadcrumb-section a {
    color: var(--orange);
    text-decoration: none;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vision-box,
.mission-box {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: -webkit-fill-available;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vision-box h2,
.mission-box h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.vision-box p,
.mission-box p,
.mission-box ul {
    color: var(--dark-light);
    line-height: 1.7;
    font-size: 1rem;
}

.mission-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.mission-box ul li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-box,
    .mission-box {
        padding: 30px;
    }

    .vision-box h2,
    .mission-box h2 {
        font-size: 1.5rem;
    }
    
      .navbar-collapse.show {
    background: black !important;
    padding: 1rem;
    border-radius: 0.5rem;
  }
    
    .navbar-collapse {
    background: rgba(0, 0, 0, 0.899);
    padding: 1rem;
    border-radius: 0.5rem;
  }
    
}

.isolator {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange-gold) 100%);
    color: white;
    border: none;
    border-radius: 10px;    
    overflow: hidden;
    height:-webikit;
        box-shadow: 0px 10px 15px 5px #80808024;
}

.isolator img{
    aspect-ratio:1
}

.isolator a {
    text-decoration: none;
    color: white;
}

.isolator h5 {
    margin: 20px 10px;
     display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-img-section {
    padding: 60px 0;
    color: var(--text-light);
}

.main-img-section .carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}




/* From Uiverse.io by barisdogansutcu */
.download-button {
    position: relative;
    border-width: 0;
    color: var(--cream);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
    background-color: var(--orange);
}

.download-button .docs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    z-index: 1;
    background-color: var(--orange);
    border: solid 1px #e8e8e82d;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.download-button:hover {
    box-shadow: rgba(0, 0, 0, 0.555) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.download {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
    z-index: -1;
    border-radius: 0px 0px 4px 4px;
    transform: translateY(0%);
    background-color: white;
    color: var(--gold);
    border: solid 1px #01e0572d;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    cursor: pointer;
}

.download-button:hover .download {
    transform: translateY(100%);
}

.download svg polyline,
.download svg line {
    animation: docs 1s infinite;
}

@keyframes docs {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-15%);
    }

    100% {
        transform: translateY(0%);
    }
}

.key-features .timeline-item {
    position: relative;
    padding: 20px;
    border: 1px solid var(--orange-gold);
    border-left: 4px solid var(--orange-gold);
    background: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;

}

.key-features .timeline-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255, 255, 0) 0%, var(--orange) 100%);
    z-index: 0;
    transition: width 0.4s ease;

}

.key-features .timeline-item:hover::after {
    width: 100%;
}


.key-features .timeline-item:hover h4 {
    color: white;
}

.key-features .timeline-item * {
    position: relative;
    z-index: 1;
}

.key-features .timeline-item:hover {
    transform: translateX(6px);
}

.key-features .timeline-item h4 {
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1rem;
}

.Key-specifications {
    place-self: center;
}

.Key-specifications td,
.Key-specifications th {
    padding: 20px;
}

.Key-specifications td {
    width: 40%;
}


.applications-section .section-title {
    font-size: 2rem;
    font-weight: 700;
}

.applications-section .section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.app-card {
    background: var(--cream);
    border: 1px solid var(--orange-gold);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-card i {
    font-size: 2rem;
    color: var(--orange-gold, #f9a825);
    margin-bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.app-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.app-card:hover {
    background: linear-gradient(145deg, var(--orange-gold, #f9a825), #ffb347);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 191, 0, 0.2);
}

.app-card:hover h5 {
    color: var(--cream);
}

.app-card:hover i {
    color: var(--cream);
    transform: scale(1.5) translateY(-5px);
}

.certifications-section {
    color: #111;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 1.5rem;
}

.section-heading::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--orange-gold);
    /* green underline */
}

.cert-card {
    background: var(--gold);
    /* bright blue bar */
    color: #fff;
    font-weight: 500;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-left: 6px solid var(--orange-gold);
    /* dark strip on left */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: var(--orange-gold);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 80px 0;
    background: white;
}

/* .product-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
} */

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-gold), var(--cream));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover {
    border-color: var(--orange-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    font-size: 3rem;
    color: var(--orange-gold);
    margin-bottom: 1rem;
}

.product-card h4 {
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}


.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(7) {
    animation-delay: 0.7s;
}

.feature-item:nth-child(8) {
    animation-delay: 0.8s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-icon i {
    color: white;
    font-size: 1.3rem;
}

.feature-text {
    color: black;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.image-container {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    animation: bounce 2s infinite;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 15px 20px;
    }

    .floating-badge {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.client-logo-card img {
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.8;
}

.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--orange-gold) !important;
}

.thumbnail .isolator{
    height: -webkit-fill-available;
}

.thumbnail img{
        height:300px;
        background: white;
}
