/* ================= GLOBAL ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#222;
overflow-x:hidden;
}

/* ================= NAVBAR ================= */
nav{
position:fixed;
width:100%;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
height:85px;
padding:0 8%;
background:linear-gradient(-45deg,#2D0A3D,#8008B2,#5D137D,#2D0A3D);
background-size:400% 400%;
animation:gradientMove 12s ease infinite;
backdrop-filter:blur(10px);
z-index:1000;
box-shadow:0 10px 40px rgba(0,0,0,0.25);
}

.logo img{
height:85px;   /* Balanced large logo */
width:auto;
display:block;
transition:0.3s ease;
}

.nav-links a{
color:white;
text-decoration:none;
margin-left:30px;
font-weight:500;
position:relative;
transition:0.3s;
}

.nav-links a::after{
content:"";
position:absolute;
width:0%;
height:2px;
left:0;
bottom:-5px;
background:white;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

/* ================= HERO ================= */
.hero{
height:100vh;
background:linear-gradient(-45deg,#2D0A3D,#8008B2,#5D137D,#2D0A3D);
background-size:400% 400%;
animation:gradientMove 12s ease infinite;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
color:white;
text-align:center;
padding:20px;
}

.hero h1{
font-size:60px;
max-width:900px;
line-height:1.2;
animation:fadeUp 1s ease forwards;
}

.hero p{
margin-top:20px;
font-size:20px;
opacity:0.9;
animation:fadeUp 1.4s ease forwards;
}

/* ================= VIDEO SHOWCASE ================= */

.video-showcase{
background:#f9f9f9;
}

.video-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

/* Video Card */
.video-card{
position:relative;
border-radius:25px;
overflow:hidden;
box-shadow:0 25px 60px rgba(128,8,178,0.25);
transition:0.4s ease;
height:420px;
}

.video-card video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* Gradient Border Glow */
.video-card::before{
content:"";
position:absolute;
inset:0;
padding:2px;
border-radius:25px;
background:linear-gradient(135deg,#8008B2,#2D0A3D);

/* Standard mask */
mask: 
linear-gradient(#fff 0 0) content-box, 
linear-gradient(#fff 0 0);

/* Standard composite */
mask-composite: exclude;

/* Webkit support */
-webkit-mask: 
linear-gradient(#fff 0 0) content-box, 
linear-gradient(#fff 0 0);

-webkit-mask-composite: xor;
}


/* Hover Effect */
.video-card:hover{
transform:scale(1.03);
box-shadow:0 30px 80px rgba(128,8,178,0.4);
}

/* Content Side */
.video-content h3{
font-size:32px;
margin-bottom:20px;
color:#2D0A3D;
}

.video-content p{
color:#555;
line-height:1.7;
margin-bottom:25px;
}

/* Responsive */
@media(max-width:900px){
.video-grid{
grid-template-columns:1fr;
}
}

/* ================= BUTTON ================= */
.btn{
margin-top:30px;
padding:14px 35px;
border-radius:50px;
border:none;
cursor:pointer;
font-weight:600;
font-size:16px;
transition:0.4s;
background:linear-gradient(135deg,#8008B2,#2D0A3D);
color:white;
}

.btn:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(128,8,178,0.5);
}

.sound-btn{
position:absolute;
bottom:20px;
right:20px;
background:rgba(0,0,0,0.6);
color:white;
border:none;
padding:10px 15px;
border-radius:50px;
cursor:pointer;
font-size:18px;
}

/* ================= SECTION ================= */
.section{
padding:120px 10%;
}

.section h2{
font-size:42px;
margin-bottom:50px;
text-align:center;
background:linear-gradient(135deg,#8008B2,#2D0A3D);

/* Standard property */
background-clip:text;

/* Vendor prefix */
-webkit-background-clip:text;

/* Required for Safari/Chrome */
color:transparent;
-webkit-text-fill-color:transparent;
}

/* ================= SERVICES GRID ================= */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

/* ================= PREMIUM CARDS ================= */
.service-card{
position:relative;
padding:40px;
border-radius:20px;
background:#ffffff;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:all 0.4s ease;
overflow:hidden;
}

.service-card::before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:5px;
background:linear-gradient(135deg,#8008B2,#2D0A3D);
}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(128,8,178,0.25);
}

.service-card h3{
margin-bottom:15px;
font-size:22px;
color:#2D0A3D;
}

.service-card p{
font-size:15px;
line-height:1.7;
color:#555;
}

.service-summary{
margin-bottom:15px;
color:#555;
font-size:15px;
}

.service-details{
list-style:none;
padding:0;
font-size:14px;
color:#666;
line-height:1.7;
}

.service-details li{
margin-bottom:6px;
}

/* ================= CONTACT SECTION ================= */
.contact-section{
background:#f9f9f9;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.contact-info h2{
font-size:36px;
margin-bottom:20px;
color:#2D0A3D;
}

.contact-info p{
margin-bottom:25px;
line-height:1.6;
}

.info-item{
margin-bottom:20px;
font-size:16px;
}

.info-item a{
color:#8008B2;
text-decoration:none;
font-weight:500;
}

.info-item a:hover{
color:#2D0A3D;
}

.contact-form-wrapper{
background:white;
padding:50px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,0.1);
border-top:4px solid #8008B2;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
width:100%;
padding:15px;
margin-bottom:20px;
border-radius:12px;
border:1px solid #ddd;
font-size:15px;
transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
border-color:#8008B2;
outline:none;
}

.contact-form button{
width:100%;
background:linear-gradient(135deg,#8008B2,#2D0A3D);
color:white;
padding:16px;
border:none;
border-radius:50px;
font-weight:600;
cursor:pointer;
transition:0.4s;
}

.contact-form button:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(128,8,178,0.4);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp{
from{opacity:0; transform:translateY(50px);}
to{opacity:1; transform:translateY(0);}
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

.hero h1{
font-size:40px;
}

.contact-container{
grid-template-columns:1fr;
}

.logo img{
height:70px;
}

}
