    *{margin:0;padding:0;box-sizing:border-box}
    body{
      font-family:'Inter',sans-serif;
      background:#000;
      color:#fff;
      overflow-x:hidden;
    }

    /* NAVBAR */
    header{
      height:70px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 23px;
      border-bottom:1px solid rgba(255,255,255,0.11);
      background:rgba(0,0,0,0.85);
    }
    .logo{
      display:flex;
      align-items:center;
    }

    .logo img{
      height:110px;
      width:auto;
      padding-top: 6px;
    }
    nav a{
      margin-left:28px;
      color:#d1d5db;
      font-size:14px;
      text-decoration:none;
    }
    nav a:hover{color:#1361e7}

    /* HERO */
    .hero{
      position:relative;
      height:calc(100vh - 68px);
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      overflow:hidden;
      z-index:1;
    }

    /* BACKGROUND GLOW */
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(600px 600px at 50% 45%, rgba(37,99,235,0.22), transparent 65%);
      z-index:0;
    }

    /* LION IMAGE */
    .lion{
      position:absolute;
      width:1200px;          /* BIGGER like design */
      max-width:none;        /* important */
      top:52%;               /* push slightly down */
      left:50%;
      transform:translate(-50%, -56%);
      opacity:0.95;
      z-index:1;
      pointer-events:none;
  }


    .hero-content{
      position:relative;
      z-index:2;
      max-width:920px;
      padding:0 20px;
    }

    h1{
      font-size:56px;
      font-weight:800;
      font-family:'Oxanium', cursive;
      line-height:1.15;
      letter-spacing:-0.5px;
    }

    p{
      margin:22px auto 34px;
      max-width:760px;
      color:#b9c0cc;
      font-size:16px;
      font-family:'Oxanium', cursive;
      line-height:1.6;
    }

    .cta{
      display:inline-block;
      padding:14px 34px;
      border:none;
      border-radius:10px;
      background:#2563eb;
      color:#fff;
      font-size:15px;
      cursor:pointer;
      box-shadow:0 0 15px rgba(37,99,235,.65);
    }
    .cta:hover{background:#1e40af}

    /* RESPONSIVE */
    @media(max-width:900px){
      h1{font-size:44px}
      .lion{width:420px}
    }
    @media(max-width:520px){
      h1{font-size:34px}
      p{font-size:15px}
      nav{display:none}
    }



    /* =====================
   GLOBAL ANIMATIONS
===================== */

/* Page fade in */
body {
  animation: pageFade 0.8s ease-out forwards;
}

@keyframes pageFade {
  from { opacity: 0 }
  to { opacity: 1 }
}

/* Navbar slide */
header {
  animation: navSlide 0.8s ease-out forwards;
  position:relative;
  z-index:1000;
}

@keyframes navSlide {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hero text animation */
.hero-content h1 {
  opacity: 0;
  transform: translateY(25px);
  animation: textUp 0.9s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-content p {
  opacity: 0;
  transform: translateY(25px);
  animation: textUp 0.9s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-content .cta {
  opacity: 0;
  transform: translateY(25px);
  animation: textUp 0.9s ease-out forwards;
  animation-delay: 0.7s;
}

@keyframes textUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   LION EFFECT
===================== */

/* Soft glow pulse */
.lion::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* =====================
   LION APPEAR EFFECT
===================== */

.lion {
  opacity: 0;
  transform: translate(-50%, -56%) scale(0.92);
  filter: blur(6px);
  animation: lionReveal 1.2s ease-out forwards;
  animation-delay: 0.35s;
}

@keyframes lionReveal {
  to {
    opacity: 0.95;
    transform: translate(-50%, -56%) scale(1);
    filter: blur(0);
  }
}


/* =====================
   CTA BUTTON
===================== */

.cta {
  transition: all 0.35s ease;
}

.cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(37,99,235,0.9);
}

/* ABOUT SECTION */
.about-section {
    background: #000;
    padding: 100px 8%;
    padding-top: 0%;
    color: #fff;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ===== TEXT SIDE ===== */
.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.about-text.show {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Animated Underline */
.about-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    transition: width 1s ease;
}

.about-text.show h2::after {
    width: 100%;
}

.about-text p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

/* Paragraph fade delay */
.about-text.show p {
    opacity: 1;
    transform: translateY(0);
}

.about-text.show p:nth-child(2) { transition-delay: 0.2s; }
.about-text.show p:nth-child(3) { transition-delay: 0.4s; }
.about-text.show p:nth-child(4) { transition-delay: 0.6s; }

/* ===== IMAGE SIDE ===== */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.about-image.show {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 140, 255, 0.3);
    transition: 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite alternate;
}


/* Floating Effect */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Glow Pulse */
@keyframes glowPulse {
    from { box-shadow: 0 0 25px rgba(0, 140, 255, 0.3); }
    to { box-shadow: 0 0 45px rgba(0, 140, 255, 0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===============================
   CORE SERVICES SECTION
================================= */

.core-services {
    padding: 120px 8%;
    /* background: #0f172a; */
    text-align: center;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 */
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 50px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle glow border */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, rgba(37,99,235,0.4), transparent);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.5s;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.service-card:hover::before {
    opacity: 1;
}

/* ICON */
.service-icon {
    font-size: 34px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1);
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* LINK */
.service-card a {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   CORE SERVICE ENTRY ANIMATION
================================= */

.service-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(.17,.67,.37,1);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===============================
   PROJECT SECTION – PREMIUM STYLE
================================= */

.projects-section {
    padding: 60px 8%;
    text-align: center;
    position: relative;
}

/* subtle background glow */
.projects-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px); /* fixed card width */
    justify-content: center; /* center when only 1 card */
    gap: 35px;
    position: relative;
    z-index: 1;
}

/* ===============================
   PROJECT CARD – PREMIUM DESIGN
================================= */
.project-card{
    width:300px;
    aspect-ratio:1/1;
    position:relative;
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(12px);
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:all 0.4s ease;
}

/* Glow border */
.project-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(37,99,235,0.9),
        transparent
    );
    background-size:200%;
    opacity:0;

    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;

    animation:glowMove 4s linear infinite;
    transition:0.4s;
}

/* Hover effect */
.project-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.6),
        0 0 35px rgba(37,99,235,0.9);
}

.project-card:hover::before{
    opacity:1;
}

/* Animation */
@keyframes glowMove{
    0%{background-position:0%}
    100%{background-position:200%}
}
/* IMAGE */
.project-img {
    height: 55%; /* image takes upper half */
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

/* CONTENT */
.project-info {
    height: 45%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
}
.project-info p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.4;
    margin-bottom: 8px;
    margin-top: 5px;
}

/* BUTTON */
.project-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    transition: 0.3s ease;
}

.project-btn:hover {
    background: #fff;
    color: #000;
}

/* ===== Glow Effect ===== */

.project-card {
    position: relative;
    transition: all 0.4s ease;
}

/* Normal subtle glow */
.project-card {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
}

/* On Hover Glow */
.project-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 10px 40px rgba(0,0,0,0.5),
        0 0 20px rgba(37,99,235,0.6);
}

@keyframes glowMove{
    0%{background-position:0%}
    100%{background-position:200%}
}

.project-card::before{
    background:linear-gradient(
        120deg,
        transparent,
        rgba(37,99,235,0.9),
        transparent
    );
    background-size:200%;
    animation:glowMove 4s linear infinite;
}

/* ===============================
   PROJECT CARD ENTRY ANIMATION
================================= */

.project-card {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: all 0.8s cubic-bezier(.17,.67,.37,1);
}

.project-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===============================
   COMING SOON OVERLAY
================================= */

.project-card.coming-soon {
    position: relative;
    pointer-events: none; /* disable click */
}

/* Blur image */
.project-card.coming-soon .project-img img {
    filter: blur(3px) brightness(0.6);
}

/* Overlay */
.project-card.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 18px;
    animation: fadeInOverlay 1s ease forwards;
}

/* Animation */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Disabled Button Style */
.project-btn.disabled {
    background: #555;
    cursor: not-allowed;
}

/* ==============================
   TECHNOLOGIES SECTION
================================ */

.tech-section {
    padding: 30px 8%;
    background: radial-gradient(circle at center, #0a0a0a, #000);
    text-align: center;
}

/* Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.tech-card {
    padding: 40px 25px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    width: 140px;
    height: 165px;
    transform: translateY(40px);
}

/* Icon */
.tech-card img {
    width: 55px;
    height: 55px;
    margin-bottom: 0px;
    transition: 0.5s ease;
    filter: brightness(0) invert(1);
}


/* Name */
.tech-card p {
    font-size: 15px;
    color: #d1d1d1;
    letter-spacing: 0.5px;
}

/* Hover Glow */
.tech-card:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: rgba(37,99,235,0.4);
    box-shadow: 0 15px 50px rgba(37,99,235,0.3);
}



/* Scroll Reveal */
.tech-card.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}


/* TECH CARD IMAGE PREMIUM EFFECT */

.tech-card {
    animation: floatImage 4s ease-in-out infinite;
}

.tech-card img {
    width: 55px;
    height: 55px;
    margin-bottom: 0px;
    filter: brightness(0) invert(1);
    transition: 0.4s ease;
}
  
/* Glow pulse like About Image */
.tech-card.show {
    box-shadow: 0 0 25px rgba(0, 140, 255, 0.24);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

/* Hover upgrade */
.tech-card:hover {
    box-shadow: 0 0 45px rgba(0, 140, 255, 0.6);
    transform: translateY(-8px);
}

/* title changes */
.projects-title,
.core-title,
.tech-title {
    font-family: 'Oxanium', cursive;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 70px;

    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    position: relative;
}

/* Tech title spacing fix */
.tech-title {
    margin-bottom: 70px;
}

/* SHOW STATE */
.projects-title.show,
.core-title.show,
.contact-title,
.tech-title.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animated underline */
.projects-title::after,
.core-title::after,
.contact-title::after,
.tech-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    transition: width 1s ease;
}

.projects-title.show::after,
.core-title.show::after,
.contact-title.show::after,
.tech-title.show::after {
    width: 130px;
}

/* ===============================
   CONTACT SECTION
================================= */

.contact-section {
    padding: 120px 8%;
    background: radial-gradient(circle at 50% 20%, #0f172a 0%, #000 60%);
    text-align: center;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

.contact-info-card{
  height: 244.6px;
}

.contact-form-card,
.contact-info-card {
    width: 450px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(30,41,59,0.6), rgba(15,23,42,0.6));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.15);
    text-align: left;
    transition: 0.5s ease;
    flex: 1;
    min-width: 380px;
}

.contact-form-card:hover,
.contact-info-card:hover {
    box-shadow: 0 0 60px rgba(0, 102, 255, 0.35);
    transform: translateY(-8px);
}

.contact-form-card h3,
.contact-info-card h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 14px;
}

.contact-form-card textarea {
    height: 120px;
    resize: none;
}

.contact-form-card button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.contact-form-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #2563eb;
}

/* Contact Info Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
}

.info-item i {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.contact-title,
.contact-form-card h3,
.contact-info-card h3 {
    font-family: 'Oxanium', cursive;
}

/* ===============================
   footer SECTION
================================= */

.footer{
background:#232a36;
color:#cbd5e1;
padding:70px 8% 30px;
font-family:'Inter',sans-serif;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:60px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
font-size:18px;
color:#3b82f6;
margin-bottom:5px;
}

.footer-logo img{
height:200px;
width:auto;
display:block;
filter: drop-shadow(0 0 6px rgba(59,130,246,0.4));
margin-top:-70px;
}

.desc{
font-size:14px;
color:#9ca3af;
margin-bottom:15px;
max-width:250px;
margin-left: 0px;
}

.founder{
font-size:13px;
margin-bottom:20px;
color:#9ca3af;
}

.footer-col h3{
color:white;
margin-bottom:15px;
font-size:16px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#9ca3af;
font-size:14px;
transition:all .3s ease;
}

.footer-col ul li a:hover{
color:#3b82f6;
transform:translateX(6px);
}

.social-icons{
display:flex;
gap:18px;
margin-top:10px;
}

.social-icons a{
color:#9ca3af;
font-size:16px;
transition:all .3s ease;
}

.social-icons a:hover{
color:#3b82f6;
transform:scale(1.2);
}

.footer-bottom{
border-top:1px solid #2f3643;
margin-top:40px;
padding-top:20px;
text-align:center;
font-size:13px;
color:#9ca3af;
}

/* =================================
MOBILE VERSION – LEOVISION TECH
================================= */

.mobile-text{
display:none;
}

@media (max-width:768px){

.desktop-text{
display:none;
}

.mobile-text{
display:block;
}

.hero{
background:url("../asset/image/mobile lion.png") center/cover no-repeat;
}

}

/* for mobile image */
@media (max-width:768px){

.lion{
display:none;
}

.hero p{
font-size:0;
}

.hero p::after{
content:"Pioneering cutting-edge IT solutions with futuristic vision and technological excellence.";
}

}

@media (max-width:768px){

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:0 20px;
}

.hero-content{
max-width:330px;
padding-top: 38px;
}

.cta{
margin-top:25px;
}

}

/* HAMBURGER BUTTON */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

@media (max-width:768px){

/* MOBILE NAVIGATION */

.hamburger{
display:block;
}

nav{
position:absolute;
top:68px;
left:0;
width:100%;
background:rgba(0,0,0,0.95);
backdrop-filter:blur(10px);
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
padding:25px 0;
transform:translateY(-120%);
transition:0.4s ease;
z-index:999;
}

nav a{
margin:0;
font-size:16px;
}

/* MENU OPEN */

nav.active{
transform:translateY(0);
}


/* GENERAL */

section{
padding:70px 20px;
}

.hero{
height:100vh;
padding:0 20px;
text-align:center;
}

.hero h1{
font-size:23px;
line-height:1.3;
}

.hero p{
font-size:11px;
margin:16px auto 26px;
}

.lion{
width:340px;
top:50%;
transform:translate(-50%,-50%);
}

@media (max-width:768px){

.lion{
max-width:90%;
left:50%;
transform:translate(-50%, -50%);
}

}

/* ABOUT */

.about-container{
flex-direction:column;
gap:35px;
text-align:center;
}

.about-text h2{
font-size:26px;
}

.about-text p{
font-size:14px;
line-height:1.6;
}

/* =================================
OUR CORE SERVICES
================================= */

.services-grid{
display:flex;
overflow-x:auto;
gap:18px;
scroll-snap-type:x mandatory;
padding-bottom:10px;
}

.services-grid::-webkit-scrollbar{
display:none;
}

.service-card{
min-width:200px;
padding:20px;
border-radius:14px;
scroll-snap-align:start;
}

/* =================================
OUR PROJECTS
================================= */

.projects-grid{
display:flex;
overflow-x:auto;
gap:18px;
scroll-snap-type:x mandatory;
}

.projects-grid::-webkit-scrollbar{
display:none;
}

.project-card{
min-width:25px;
padding:16px;
scroll-snap-align:start;
}

/* =================================
TECHNOLOGIES WE MASTER – MOBILE FIX
================================= */

@media (max-width:768px){

.tech-grid{
display:flex;
overflow-x:auto;
gap:18px;
padding:20px 25px;
scroll-snap-type:x mandatory;
}

.tech-grid::-webkit-scrollbar{
display:none;
}

.tech-card{
flex:0 0 100px;   /* card width */
padding:25px;
scroll-snap-align:center;
}

.tech-card img{
width:40px;
height:40px;
}

.tech-card p{
font-size:14px;
}

}
/* =================================
TESTIMONIAL
================================= */

.testimonial-slider{
overflow-x:auto;
display:flex;
gap:18px;
}

.testimonial-card{
min-width:260px;
}

/* =================================
CONTACT SECTION
================================= */

.contact-wrapper{
flex-direction:column;
gap:25px;
}

.contact-form-card,
.contact-info-card{
width:100%;
min-width:unset;
padding:22px;
}

@media (max-width:768px){

.services-grid,
.projects-grid,
.tech-grid{
max-width:100%;
overflow-x:auto;
}

}

/* =================================
FOOTER
================================= */

.footer-container{
grid-template-columns:1fr;
gap:35px;
text-align:center;
}

.desc{
margin:auto;
}

.social-icons{
justify-content:center;
}

/* =================================
SMOOTH SWIPE
================================= */

.services-grid,
.projects-grid,
.tech-grid{
scroll-behavior:smooth;
}

}

/* FIX MOBILE SIDE BLANK SPACE */

@media (max-width:768px){

html, body{
overflow-x:hidden;
max-width:100%;
}

section{
width:100%;
overflow:hidden;
}

}
