* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Splash Screen FULL FIX */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  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: #333;
    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;
}

/* 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:auto;
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:#00c6ff;
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,
.mission,
.vision,
.why-choose,
.service,
.portfolio-item,
.contact-info,

.contact-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}


/* ---------------- SERVICES ---------------- */

.services {
    background: #f9fbff;
    border-radius: 10px;
}

.services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.services li {
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

/* ---------------- WHY ---------------- */

.why {
    background: white;
    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: #f0f6ff;
    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-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}
.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: 120px;
    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: #25D366;
}

.whatsapp button:hover {
    background: #1ebc59;
}

/* ---------------- 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;
}