/* Reset */

html{
scroll-behavior:smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


body {
background:#dbe9f4;
overflow-x:hidden;
}


/* Header */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.company-name span {
    color: #000;
    font-weight: 600;
}

.company-name:hover {
    opacity: 0.8;
}

.back-btn {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}



/* Hero Section */

.hero-container {
display:flex;
width:90%;
max-width:1200px;
align-items:center;
justify-content:space-between;
min-height:100vh;
margin:auto;
position:relative;
}


/* Left Content */

.left-content {
flex:1;
padding-right:50px;
animation:fadeLeft 1s ease;
}

.tagline {
font-size:.85rem;
font-weight:700;
letter-spacing:1px;
line-height:1.4;
margin-bottom:10px;
color:#000;
max-width:400px;
}

.logo-text {
font-family:serif;
font-size:5rem;
font-weight:400;
margin-bottom:40px;
}

.cta-button {
background:#000;
color:#fff;
padding:12px 35px;
border:none;
border-radius:8px;
font-size:1rem;
cursor:pointer;
transition:.3s;
}

.cta-button:hover {
background:#333;
}


/* Right Content */

.right-content {
flex:1;
display:flex;
justify-content:center;
align-items:center;
animation:fadeRight 1s ease;
}


.inner-icon {
width:500px;
max-width:100%;
}

.inner-icon img {
width:100%;
height:auto;
}


/* Scroll Indicator */

.scroll-indicator {
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
font-size:14px;
opacity:.7;
animation:bounce 2s infinite;
}


/* Features Section */

.features-section {
min-height:100vh;
background:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:80px 10%;
text-align:center;
}

.features-section.light {
background:#f7f9fc;
}


.features-section h2 {
font-size:2.5rem;
margin-bottom:20px;
}

.features-section p {
font-size:1.2rem;
color:#555;
max-width:700px;
}


/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .left-content {
        padding-right: 0;
        margin-top: 40px;
    }
    .blue-circle {
        width: 300px;
        height: 300px;
    }
}


/* Animations */

@keyframes fadeLeft {
from {
opacity:0;
transform:translateX(-80px);
}
to {
opacity:1;
transform:translateX(0);
}
}


@keyframes fadeRight {
from {
opacity:0;
transform:translateX(80px);
}
to {
opacity:1;
transform:translateX(0);
}
}


@keyframes bounce {
0%,100% {
transform:translate(-50%,0);
}

50% {
transform:translate(-50%,10px);
}
}

.inner-icon {
    width: 100%;
    height: 100%;
}

.inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Makes image perfectly fit circle */
}

/* Responsive */

@media(max-width:768px){

.hero-container {
flex-direction:column-reverse;
text-align:center;
}

.left-content {
padding-right:0;
margin-top:40px;
}

.logo-text {
font-size:3rem;
}

.inner-icon {
width:350px;
}

}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
    opacity: 0.7;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: #000;
    border-radius: 10px;
    animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}







.product-header {
background: #fff;
border-bottom: 1px solid #eee;
position: sticky;
top: 0;
z-index: 999;
}

.product-nav .container {
max-width: 1200px;
margin: auto;
display: flex;
gap: 30px;
padding: 15px 5%;
overflow-x: auto;
scrollbar-width: none;
}

.product-nav .container::-webkit-scrollbar {
display: none;
}

.product-nav a {
text-decoration: none;
color: #555;
font-size: 14px;
font-weight: 500;
white-space: nowrap;
transition: .3s;
position: relative;
}

.product-nav a:hover {
color: #000;
}

.product-nav a::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #000;
transition: .3s;
}

.product-nav a:hover::after {
width: 100%;
}

.product-nav a.active {
color: #000;
font-weight: 600;
}




/* Introduction Section */

.intro-section {
padding: 100px 5%;
background: #fff;
}

.intro-container {
max-width: 1200px;
margin: auto;
display: flex;
gap: 60px;
align-items: center;
}

.intro-left {
flex: 1;
}

.intro-left h2 {
font-size: 40px;
margin-bottom: 20px;
}

.intro-left p {
font-size: 16px;
line-height: 1.8;
color: #555;
}

.intro-right {
flex: 1;
}

.intro-right img {
width: 100%;
border-radius: 12px;
}

.intro-right {
flex: 1;
display: flex;
justify-content: center;
}

.intro-right img {
width: 100%;
max-width: 420px;
height: auto;
}


/* Responsive */

@media(max-width:768px){

.intro-container {
flex-direction: column;
text-align: center;
}

.intro-left h2 {
font-size: 30px;
}

}


.variants-section{
padding:80px 0;
background:#f8f9fb;
}

.variants-section .container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

.variants-section h2{
font-size:36px;
margin-bottom:30px;
}

.accordion-item{
border-bottom:1px solid #e5e5e5;
padding:20px 0;
cursor:pointer;
}

.accordion-title{
display:flex;
align-items:center;
justify-content:space-between;
font-weight:600;
font-size:17px;
}

.accordion-left{
display:flex;
align-items:center;
gap:18px;
}

.accordion-title span{
min-width:35px;
font-size:14px;
color:#999;
}

.accordion-arrow{
transition:0.3s ease;
font-size:18px;
color:#999;
}

.accordion-item.active .accordion-arrow{
transform:rotate(90deg);
color:#000;
}

.accordion-content{
max-height:0;
overflow:hidden;
transition:0.3s ease;
color:#555;
padding-left:55px;
line-height:1.7;
}

.accordion-item.active .accordion-content{
max-height:150px;
margin-top:10px;
}


.impl-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:25px;
}

/* Tablet */
@media(max-width:1000px){
.impl-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media(max-width:600px){
.impl-grid{
grid-template-columns:1fr;
}
}

.impl-card{
aspect-ratio: 3 / 4;
border-radius:15px;
overflow:hidden;
position:relative;
color:#fff;
display:flex;
align-items:flex-end;
transition:0.4s ease;
cursor:pointer;
background-size:cover;
background-position:center;
}

.impl-card:nth-child(1){
background-image:url('../webImages/impl1.jpg');
}

.impl-card:nth-child(2){
background-image:url('../webImages/impl2.jpg');
}

.impl-card:nth-child(3){
background-image:url('../webImages/impl3.jpg');
}

.impl-card:nth-child(4){
background-image:url('../webImages/impl4.jpg');
}

.impl-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.impl-content{
position:relative;
padding:25px;
z-index:2;
}

.impl-content h3{
margin-bottom:10px;
}

.impl-content p{
font-size:14px;
margin-bottom:15px;
color:#ddd;
}

.impl-content a{
background:#fff;
color:#000;
padding:8px 18px;
border-radius:5px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.impl-content a:hover{
background:#000;
color:#fff;
border:1px solid #fff;
}

/* Hover Animation */

.impl-card:hover{
transform:scale(1.05);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}










.contact-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-box{
background:#fff;
padding:30px;
border-radius:10px;
width:420px;
max-width:90%;
position:relative;
}

.popup-box h3{
margin-bottom:20px;
}

.popup-box input,
.popup-box textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.popup-box textarea{
height:90px;
resize:none;
}

.popup-box button{
background:#000;
color:#fff;
padding:12px;
width:100%;
border:none;
border-radius:6px;
cursor:pointer;
}

.close{
position:absolute;
top:10px;
right:15px;
font-size:20px;
cursor:pointer;
}