* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Splash Screen FULL FIX */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 253);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Logo center */
#splash img {
  width: 400px;
}

/* Hide website initially */
#website {
  display: none;
}
/* ---------------- RESET ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7fb;
    color: #333333;
    line-height: 1.6;
    scroll-behavior: smooth;
}


/* ---------------- HEADER ---------------- */
/* HEADER */


header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#0a2540;
color:white;
box-shadow:0 4px 15px rgba(0,0,0,0.15);
position:sticky;
top:0;
z-index:1000;
}
.welcome-bg{
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0, 0, 0, 0.65)
    ),
    url("../images/logo-removebgg-preview.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;

    color: rgb(140, 219, 13);
    text-align: center;

    box-shadow: 0 10px 25px rgba(122, 111, 6, 0.3);
}

.welcome-bg p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-home{
    background-color: oklch(36.03% 0.01066 196.902);
    color: rgb(94, 206, 226);
    padding: 50px;
    border-radius: 15px;
}
.services{
    background: #d60101;
    padding: 50px;
    border-radius: 20px;
}

.services ul li{
    font-size: 25px;
    font-weight: 600;
    margin: 25px 0;
    display: flex;
    align-items: center;
}

.services .icon{
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.services h2{
    font-size: 50px;
    color: #38eb0b;
    margin-bottom: 30px;
}
.goal{
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #10a74f;
    padding: 30px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    border-left: 5px solid #fbbf24;
}

.goal h2{
    color: #fbbf24;
    margin-bottom: 15px;
}

.goal p{
    line-height: 1.8;
    font-size: 16px;
}
/* LOGO AREA */

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:24px;
font-weight:600;
letter-spacing:1px;
}

/* LOGO IMAGE */

.logo img{
height:60px;
width:60px;
object-fit:contain;
display:block;
}

/* OPTIONAL HOVER EFFECT (premium feel) */

.logo img:hover{
transform:scale(1.05);
transition:0.3s;
}

/* NAVIGATION */

nav{
display:flex;
align-items:center;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:16px;
position:relative;
transition:0.3s;
}

/* HOVER EFFECT */

nav a:hover{
color:#00c6ff;
}

/* UNDERLINE ANIMATION */

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:hsl(193, 100%, 50%);
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

header{
flex-direction:column;
gap:10px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:10px;
}

.logo img{
height:38px;
}

}

/* ---------------- TITLE ---------------- */
body>h1 {
    text-align: center;
    font-size: 40px;
    margin: 30px 0;
    color: #0a2540;
    letter-spacing: 2px;
}

/* ---------------- SECTION ---------------- */

section {
    padding: 70px 12%;
    margin-bottom: 30px;
}

section h2 {
    margin-bottom: 15px;
}

/* ---------------- HERO ---------------- */

.hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 90px 12%;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 750px;
    margin: auto;
    margin-bottom: 15px;
}

/* ---------------- BUTTON ---------------- */

button {
    padding: 14px 30px;
    margin: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    background: #00c6ff;
    color: white;
    transition: .3s;
    font-weight: 500;
}

button:hover {
    background: #008ecf;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ---------------- ABOUT ---------------- */

.about-index,
.about{
    background-image: url('../images/ai-bg-preview.png.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 100px 50px;
    border-radius: 15px;
    color:#FFD700;
    position: relative;
}

.about h2{
    font-size: 40px;
    text-align: center;
    color:  #04a3ff;
    margin-bottom: 25px;
}

.about p{
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}
.TRUSTED ,
.trusted-brands{
    background: linear-gradient(135deg, #4E342E, #8B4513);
    color: rgb(254, 254, 255);
    padding: 60px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.trusted-brands:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.trusted-brands h2{
    text-align: center;
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trusted-brands p{
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.trusted-brands b{
    color: #FFD700;
    font-weight: bold;
}
.vision,
.vision{
    background: linear-gradient(135deg, #4E342E, #1E3A5F);
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.vision:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.vision h2{
    text-align: center;
    color: #FFD700;
    font-size: 42px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision p{
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.vision b{
    color: #FFD700;
    font-weight: bold;
}
.why-choose,
.gaming-zone{
    background-image: url('../images/middhabg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 50px;
    color: rgb(245, 245, 245);
    position: relative;
}

.overlay{
    background: rgba(0, 0, 0, 0.65);
    padding: 40px;
    border-radius: 15px;
}
.service,
.portfolio-item,
.contact-info,

.contact-form {
    background: rgb(84, 163, 187);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}


/* ---------------- SERVICES ---------------- */

.services {
    background: #87a4b8;
    border-radius: 10px;
}

.services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.services li {
    background: rgb(143, 218, 221);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

/* ---------------- WHY ---------------- */

.why {
    background: rgb(29, 103, 122);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.why ul {
    margin-top: 10px;
}

.why li {
    margin-bottom: 8px;
}

/* ---------------- GOAL ---------------- */

.goal {
    background:  #cffafe;
    border-left: 6px solid #00c6ff;
    border-radius: 8px;
}

/* ---------------- SERVICE PAGE ---------------- */

.service {
    margin-bottom: 25px;
}

.service img {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    height: auto; /* FIX FOR MOBILE */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* SERVICE SECTION */
.service {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.service h2 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 26px;
}

   /* IMAGE CENTER */
.service-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.service-image img {
    width: 100%;
    max-width: 420px;
    height: auto; /* FIX */
    object-fit: cover;
    border-radius: 10px;
}

.service p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
}

/* ---------------- PORTFOLIO ---------------- */

.portfolio-item {
    margin-bottom: 25px;
}

.portfolio-item img {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ---------------- CONTACT ---------------- */
.contact-intro{
    background-color: #567ed4;
    color: white;
    border: 2px solid #e1f013;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
    font-size: large;
}
.contact-info{
    
    background-color: #b680cc;
    color: rgb(20, 20, 20);
    border: 2px solid #031aee;
    border-radius: 0;
    text-align: center;   <horizontal> 
    padding: 30px;
    box-shadow : 0 0 20px rgba(0,212,255,0.4);
    font-size: 'large' ;
}
.contact-form input,


.contact-form textarea {
    width: 100%;
    height: 80px;   /* Box height */
    padding: 10px;
    font-size: 16px;
}
.heading-icon {
  width: 32px;          /* controls size */
  height: 32px;
  object-fit: contain;
  vertical-align: -5px; /* aligns exactly like emoji */
  margin-right: 8px;
}

.heading-icons {
  width: 32px;          /* controls size */
  height: 32px;
  object-fit: contain;
  vertical-align: -5px; /* aligns exactly like emoji */
  margin-right: 8px;
}

.heading-iconsss {
  width: 32px;          /* controls size */
  height: 32px;
  object-fit: contain;
  vertical-align: -5px; /* aligns exactly like emoji */
  margin-right: 8px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -2px;
  margin-right: 6px;
}
.icons {
  width: 2em;
  height: 1.5em;
  vertical-align: -2px;
  margin-right: 6px;
}

#iconsss {
  width: 2em;
  height: 1.5em;
  vertical-align: -2px;
  margin-right: 6px;
}

/* ---------------- WHATSAPP ---------------- */

.whatsapp {
    text-align: center;
    background: #e9fff2;
    border-radius: 10px;
}

.whatsapp button {
    background: #3aa9bd;
}

.whatsapp button:hover {
    background: #664286;
}

/* ---------------- CTA ---------------- */

.cta {
    text-align: center;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: white;
    border-radius: 10px;
}

.cta button {
    background: white;
    color: #0072ff;
    font-weight: bold;
}

.cta button:hover {
    background: #e6f6ff;
}

/* ---------------- FOOTER ---------------- */

footer {
    background: #0a2540;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

/* ---------------- ANIMATION ---------------- */

.fade {
    opacity: 1; /* always visible by default */
    transform: translateY(0);
    transition: 1s;
}

/* animation class */
.fade.animate {
    opacity: 0;
    transform: translateY(40px);
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:768px){

header{
flex-direction:row; /* KEEP SAME AS PC */
justify-content:space-between;
align-items:center;
}

nav{
display:flex;
flex-direction:row; /* FORCE HORIZONTAL */
flex-wrap:nowrap;
overflow-x:auto;
}

nav a{
margin:0 10px;
white-space:nowrap;
font-size:14px;
}

}
 /* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width:768px){

    .menu-toggle {
        display: block;
        color: white;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a2540;

        display: none;
        flex-direction: column;
        text-align: center;
    }

    nav a {
        padding: 15px;
        margin: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    nav.active {
        display: flex;
    }

}

.service {
    text-align: left;
}

.heading-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.heading-with-icon img {
    width: 1em;
    height: 1em;
}