*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f9fc;
color:#333;
line-height:1.6;
}


/* NAVBAR */

.navbar{
display:flex;
gap: 600px;
align-items:center;
padding: 10px 60px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
white-space:nowrap;

}
a{
    
    margin-right: 50px;
}

.logo{
display:flex;
align-items:center;
gap: 15px ;
font-weight:600;
font-size:18px;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#6c63ff;
}


/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 10%;
gap:40px;
}

.hero-left{
max-width:500px;
}

.hero-left h1{
font-size:48px;
margin-bottom:20px;
}

.hero-left span{
color:#6c63ff;
}

.hero-left p{
margin-bottom:25px;
}

.hero-right img{
width:420px;
border-radius:10px;
}


/* BUTTONS */

.btn-main{
background:#6c63ff;
color:white;
padding:12px 22px;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:500;
transition:.3s;
}

.btn-main:hover{
background:#574fe0;
}

.btn-outline{
border:2px solid #6c63ff;
background:transparent;
padding:10px 22px;
border-radius:6px;
cursor:pointer;
margin-left:10px;
color:#6c63ff;
}


/* ABOUT */

.about{
display:flex;
align-items:center;
gap:50px;
padding:80px 10%;
background:white;
}

.about-img img{
width:400px;
border-radius:10px;
}

.about-content{
max-width:500px;
}

.about-content h2{
font-size:32px;
margin-bottom:15px;
}

.about-content p{
margin-bottom:15px;
}


/* FEATURES */

.features{
padding:80px 10%;
text-align:center;
}

.features h2{
margin-bottom:40px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:.3s;
}

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


/* YOUTUBE */

.youtube{
padding:80px 10%;
background:white;
text-align:center;
}

.youtube h2{
margin-bottom:40px;
}

.youtube-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.yt-card{
background:#f7f7ff;
padding:15px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.yt-card iframe{
width:100%;
height:200px;
border:none;
border-radius:8px;
}

.yt-card h3{
margin-top:10px;
}

.yt-btn-wrapper{
text-align: center;
margin-top: 40px;
}

.yt-btn{
background: #ff0000;
color: white;
padding: 12px 30px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: 0.3s;
}

.yt-btn:hover{
background: #cc0000;
transform: scale(1.05);
}

/* CONTACT */

.contact{
/* padding:10px 10%; */
text-align:center;
}

.contact-wrapper{
display:flex;
gap:40px;
margin-top:40px;
align-items:center;
justify-content:center;
flex-wrap:wrap;
}

.map iframe{
width:500px;
height:350px;
border:none;
border-radius:10px;
}

.contact-info{
text-align:left;
}

.contact-info h3{
margin-bottom:15px;
}

.contact-info p{
margin-bottom:8px;
}


/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
padding:15px;
border-radius:50%;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}


/* FOOTER */

.footer{
background:#0a0a0a;
color:#ffffff;
padding:60px 8%;
font-family:Arial, Helvetica, sans-serif;
}

/* Container */
.footer-container{
display: grid;
grid-template-columns: 1fr 0.6fr 1.2fr 1.2fr;
gap: 20px;
align-items: start;
}

/* Logo */
.footer-logo{
width: 150px;
height: 150px;
object-fit: contain;
background: transparent;
filter: drop-shadow(0 0 15px rgba(108, 99, 255, 0.8));
animation: glowPulse 2s ease-in-out infinite;
border-radius: 100px;
}

@keyframes glowPulse {
0%   { filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.5)); }
50%  { filter: drop-shadow(0 0 25px rgba(108, 99, 255, 1)); }
100% { filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.5)); }
}

.footer-col.about{
background: transparent;
padding: 0;
}

/* Headings */
.footer h3{
margin-bottom:20px;
font-size:20px;
color:#ffffff;
}


/* Paragraph text */
.footer p{
font-size:14px;
line-height:1.6;
color:#d0d0d0;
margin-bottom:10px;
}

/* Links */
.footer a{
color:#d0d0d0;
text-decoration:none;
font-size:14px;
}

.footer a:hover{
color:#ffffff;
}

/* Lists */
.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

/* Contact */
.contact p{
margin-bottom:10px;

}


/* Social */
.social ul{
list-style:none;
padding:0;
}

.social li{
margin-bottom:10px;
}

/* Bottom copyright */
.footer-bottom{
text-align:center;
margin-top:40px;
font-size:14px;
color:#aaa;
}

/* Responsive */
@media(max-width:900px){
.footer-container{
grid-template-columns:1fr 1fr;
gap:30px;
}
}

@media(max-width:500px){
.footer-container{
grid-template-columns:1fr;
text-align:center;
}
}

/* RESPONSIVE HERO ETC */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-right img{
width:100%;
}

.about{
flex-direction:column;
text-align:center;
}

.map iframe{
width:100%;
}


}

/* CLIENTS GALLERY SECTION */

.clients-gallery{
padding: 80px 10%;
text-align: center;
background: #f8f9fc;
overflow: hidden;
}

.section-header{
margin-bottom: 50px;
}

.section-header h2{
font-size: 36px;
margin-bottom: 10px;
}

.section-header p{
color: #777;
font-size: 16px;
}

/* AUTO SCROLL TRACK */

.gallery-track-wrapper{
overflow: hidden;
position: relative;
padding: 20px 0;
}

.gallery-track-wrapper::before,
.gallery-track-wrapper::after{
content: '';
position: absolute;
top: 0;
width: 150px;
height: 100%;
z-index: 2;
}

.gallery-track-wrapper::before{
left: 0;
background: linear-gradient(to right, #f8f9fc, transparent);
}

.gallery-track-wrapper::after{
right: 0;
background: linear-gradient(to left, #f8f9fc, transparent);
}

.gallery-track{
display: flex;
gap: 20px;
animation: autoScroll 20s linear infinite;
width: max-content;
}

.gallery-track:hover{
animation-play-state: paused;
}

@keyframes autoScroll{
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

.gallery-slide{
flex-shrink: 0;
width: 280px;
height: 200px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
transition: 0.3s;
}

.gallery-slide:hover{
transform: scale(1.03);
box-shadow: 0 12px 35px rgba(108,99,255,0.3);
}

.gallery-slide img{
width: 100%;
height: 100%;
object-fit: cover;
}

.gallery-btn-wrapper{
margin-top: 50px;
}

.btn-main{
background: #ff0000;
color: white;
padding: 12px 30px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: 0.3s;
}


.clients-gallery{
padding: 80px 10%;
text-align: center;
background: #f8f9fc;
overflow: hidden;
}

.section-header{
margin-bottom: 50px;
}

.section-header h2{
font-size: 36px;
margin-bottom: 10px;
}

.section-header p{
color: #777;
font-size: 16px;
}

.gallery-track-wrapper{
overflow: hidden;
position: relative;
padding: 20px 0;
}

.gallery-track-wrapper::before,
.gallery-track-wrapper::after{
content: '';
position: absolute;
top: 0;
width: 150px;
height: 100%;
z-index: 2;
}

.gallery-track-wrapper::before{
left: 0;
background: linear-gradient(to right, #f8f9fc, transparent);
}

.gallery-track-wrapper::after{
right: 0;
background: linear-gradient(to left, #f8f9fc, transparent);
}

.gallery-track{
display: flex;
gap: 20px;
animation: autoScroll 20s linear infinite;
width: max-content;
}

.gallery-track:hover{
animation-play-state: paused;
}

@keyframes autoScroll{
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

.gallery-slide{
flex-shrink: 0;
width: 280px;
height: 200px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
transition: 0.3s;
}

.gallery-slide:hover{
transform: scale(1.03);
box-shadow: 0 12px 35px rgba(108,99,255,0.3);
}

.gallery-slide img{
width: 100%;
height: 100%;
object-fit: cover;
}

.gallery-btn-wrapper{
margin-top: 50px;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 60px 10%;
    background: #f8f9fc;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FULL SCREEN MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s;
}

.close-btn:hover {
    color: #6c63ff;
    transform: scale(1.1);
}

/* Navigation Buttons */
.modal-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-prev, .modal-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    pointer-events: auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-prev:hover, .modal-next:hover {
    background: rgba(108, 99, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-prev, .modal-next {
        font-size: 25px;
        padding: 10px 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 500px) {
    .gallery-section {
        padding: 40px 5%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
}