@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Montserrat:wght@100..900&display=swap');


*{
margin:0;
padding:0;
box-sizing:border-box;
/* font-family:Arial, Helvetica, sans-serif; */
}

body{
background:white;
}











@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Montserrat:wght@100..900&display=swap');

body{
  font-family: "Montserrat", sans-serif;
}

/* ================= NAVBAR ================= */

.ohm-navbar{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  background:#fff;
  z-index:1000;
  border-bottom:1px solid #eee;
}

/* CONTAINER */
.ohm-container{
  max-width:1200px;
  margin:auto;
  height:70px;
  padding:0 20px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.ohm-logo{
  font-family:"Black Ops One", cursive;
  font-size:22px;
  letter-spacing:2px;
  color:#000;
}

/* MENU */
.ohm-menu{
  display:flex;
  align-items:center;
  gap:24px;
  list-style:none;
}

/* LINKS */
.ohm-menu a{
  text-decoration:none;
  color:#444;
  font-size:14px;

  display:flex;
  align-items:center;
  gap:6px;

  padding:8px 14px;
  border-radius:20px;
  transition:0.3s;
}

/* HOVER */
.ohm-menu a:hover{
  background:#000;
  color:#fff;
}

/* ACTIVE */
.ohm-menu a.active{
  background:#000;
  color:#fff;
}

/* CONTACT BUTTON (DESKTOP) */
.ohm-btn{
  text-decoration:none;
  padding:8px 18px;
  background:#000;
  color:#fff;
  border-radius:30px;
  font-size:13px;
  white-space:nowrap;
  transition:0.3s;
}

.ohm-btn:hover{
  transform:translateY(-2px);
}

/* HAMBURGER */
.ohm-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.ohm-hamburger span{
  width:25px;
  height:3px;
  background:#000;
}

/* MOBILE CONTACT (hidden desktop) */
.ohm-mobile-contact{
  display:none;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .ohm-hamburger{
    display:flex;
  }

  /* hide desktop button */
  .ohm-btn{
    display:none;
  }

  /* menu dropdown */
  .ohm-menu{
    position:absolute;
    top:70px;
    left:0;
    width:100%;

    flex-direction:column;
    align-items:center;
    gap:20px;

    padding:20px 0;
    background:#fff;

    transform:translateY(-120%);
    opacity:0;
    transition:0.4s;
  }

  .ohm-menu.active{
    transform:translateY(0);
    opacity:1;
  }

  /* SHOW CONTACT IN MENU */
  .ohm-mobile-contact{
    display:flex;
  }

}

/* ================= SMALL FIX ================= */

/* prevent overflow */
html,body{
  overflow-x:hidden;
}













.about-section{
width:100%;
height:80vh;
background:#fff;
display:flex;
flex-direction:column;
justify-content:center;
padding:40px 5%;
margin-top: 40px;
}

/* GRID */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
grid-template-areas:"left content right";
gap:40px;
align-items:center;
margin-bottom:50px;
}



.about-image:first-child{
grid-area:left;
}

.about-content{
grid-area:content;
}

.about-image:last-child{
grid-area:right;
}





/* IMAGES */

.about-image img{
width:100%;
height:380px;
object-fit:cover;
border-radius:25px;
filter:grayscale(100%);
}

/* CONTENT */

.about-content{
text-align:center;
}

.about-content h2{
font-size:40px;
margin-bottom:20px;
font-weight:600;
}

.about-content p{
color:#555;
line-height:1.6;
margin-bottom:25px;
}

/* BUTTON */

.about-btn{
padding:14px 34px;
background:#000;
color:#fff;
border:none;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.about-btn:hover{
background:#333;
}

/* TYPEWRITER CURSOR */

.cursor{
display:inline-block;
width:3px;
height:1em;
background:#000;
margin-left:6px;
animation:blink 1s infinite;
}

@keyframes blink{
0%{opacity:1}
50%{opacity:0}
100%{opacity:1}
}

/* LOGO STRIP */

.brand-strip{
display:flex;
justify-content:space-between;
padding:25px;
background:#f3f3f3;
border-radius:12px;
font-weight:600;
letter-spacing:2px;
color:#777;
}



















/* RESPONSIVE */

@media (max-width:900px){

.about-section{
height:auto;
padding:80px 6%;
}

.about-grid{
grid-template-columns:1fr;
grid-template-areas:
"left"
"content"
"right";
gap:30px;
}

/* ensure correct order */

.about-image:nth-child(1){
order:1;
}

.about-content{
order:2;
}

.about-image:nth-child(3){
order:3;
}

/* image adjustments */

.about-image img{
height:260px;
}

/* text sizing */

.about-content h2{
font-size:32px;
}

.about-content p{
font-size:15px;
}

}















/* make content take full height */

.about-content{
text-align:center;
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

/* push button to bottom */

.about-btn{
margin-top:auto;
align-self:center;
}












.about-btn{
position:relative;
padding:14px 36px;
font-size:15px;
letter-spacing:1px;

background:#000;
color:#fff;

border:none;
border-radius:40px;
cursor:pointer;

overflow:hidden;
transition:all .35s ease;
}

/* sliding highlight */

.about-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:#fff;
transition:left .35s ease;
z-index:0;
}

/* text above effect */

.about-btn span{
position:relative;
z-index:2;
}

/* hover animation */

.about-btn:hover::before{
left:0;
}

.about-btn:hover{
color:#000;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}





















.timeline-section{
  padding:80px 20px;
  background:#ffffff;
  color:#0f172a;
}

/* TITLE */
.timeline-title{
  text-align:center;
  margin-bottom:60px;
}

.timeline-title h2{
  font-size:34px;
  margin-bottom:10px;
}

.timeline-title p{
  color:#64748b;
}

/* ===== TIMELINE ===== */
.timeline{
  position:relative;
  max-width:1000px;
  margin:auto;
}

/* CENTER LINE */
.timeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:2px;
  height:100%;
  background:linear-gradient(to bottom, transparent, #0f172a, transparent);
  transform:translateX(-50%);
}

/* ITEM */
.timeline-item{
  width:50%;
  padding:20px 40px;
  position:relative;
  opacity:0;
  transform:translateY(40px);
  transition:0.7s ease;
}

/* LEFT */
.timeline-item.left{
  left:0;
  text-align:right;
}

/* RIGHT */
.timeline-item.right{
  left:50%;
}

/* CARD */
.timeline-card{
  background:#ffffff;
  padding:20px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

.timeline-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.timeline-icon{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#ffffff;
  border:1px solid #0f172a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  position:absolute;
  top:30px;
  z-index:2;
}

/* LEFT ICON */
.timeline-item.left .timeline-icon{
  right:-24px;
}

/* RIGHT ICON */
.timeline-item.right .timeline-icon{
  left:-24px;
}

/* TEXT */
.timeline-card h3{
  margin-bottom:8px;
  font-size:18px;
}

.timeline-card p{
  color:#64748b;
  font-size:14px;
}

/* SHOW */
.timeline-item.show{
  opacity:1;
  transform:translateY(0);
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .timeline::before{
    left:20px;
  }

  .timeline-item{
    width:100%;
    padding-left:60px;
    padding-right:20px;
    text-align:left !important;
  }

  .timeline-item.right,
  .timeline-item.left{
    left:0;
  }

  .timeline-icon{
    left:0 !important;
    right:auto !important;
  }

}





























:root{
  --card-height: 320px;
}

/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:sans-serif;
}

/* ===== SECTION ===== */
.section{
  padding:60px 20px;
  background:#f5f7fb;
}

/* ===== HEADER ===== */
.section-header{
  text-align:center;
  margin-bottom:40px;
}

.section-header h2{
  font-size:32px;
  font-weight:700;
  color:#0f172a;
}

.section-header p{
  margin-top:8px;
  color:#64748b;
  font-size:14px;
}

/* ===== GRID (FIXED) ===== */
.grid{
  display:grid;

  /* 🔥 RESPONSIVE MAGIC */
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));

  gap:16px;
  max-width:1100px;
  margin:0 auto;

  padding:0 10px;
}

/* ===== CARD ===== */
.card-effect{
  perspective:1000px;
}

/* 🔥 IMPORTANT FIX */
.card-inner{
  width:100%;
  height:var(--card-height);

  background:#fff;
  border-radius:18px;
  position:relative;
  overflow:hidden;

  transition:0.5s;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* HOVER */
.card-inner:hover{
  transform:rotateY(8deg) rotateX(8deg);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

/* LIQUID EFFECT */
.card__liquid{
  position:absolute;
  top:-60px;
  width:250px;
  height:180px;
  background:#000;
  border-radius:50%;
  filter:blur(70px);
  opacity:0;
}

.card-inner:hover .card__liquid{
  opacity:0.15;
}

/* SHINE */
.card__shine{
  position:absolute;
  inset:0;
  opacity:0;
  background:linear-gradient(135deg,transparent,rgba(0,0,0,0.2),transparent);
}

.card-inner:hover .card__shine{
  opacity:1;
}

/* CONTENT */
.card__content{
  padding:18px;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* IMAGE */
.card__image{
  height:110px;
  border-radius:12px;
  background:#e5e7eb;
}

/* TEXT */
.card__title{
  font-size:17px;
  font-weight:700;
  color:#000;
}

.card__description{
  font-size:13px;
  color:#555;
  margin-top:4px;
}

/* FOOTER */
.card__footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.card__button{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#000;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* ===== TABLET ===== */
@media(max-width:900px){

  .section{
    padding:50px 16px;
  }

  .grid{
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  }

}

/* ===== MOBILE ===== */
@media(max-width:600px){

  .section{
    padding:40px 12px;
  }

  .section-header h2{
    font-size:24px;
  }

  .grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .card-inner{
    height:auto;
    min-height:260px;
  }

  .card__content{
    padding:16px;
  }

  /* 🔥 disable heavy hover on mobile */
  .card-inner:hover{
    transform:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
  }

}














.footer-links a{
  text-decoration: none;
  color: white;
}













.footer{

background:#0a0a0a;
color:white;

padding:120px 8% 80px;

position:relative;

overflow:hidden;

/* grid background */

background-image:
linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

background-size:60px 60px;

}

/* top section */

.footer-top{

display:flex;
justify-content:space-between;
align-items:flex-start;

margin-bottom:120px;

}

/* brand */

.brand{

font-size:22px;
font-weight:700;
letter-spacing:2px;

}

/* links */

.footer-links{

display:flex;
flex-direction:column;
gap:10px;

}

.footer-links a{

cursor:pointer;
opacity:.7;
transition:.3s;

}

.footer-links a:hover{
opacity:1;
}

/* newsletter */

.newsletter{

max-width:320px;

}

.newsletter h3{

font-size:18px;
margin-bottom:20px;

}

/* email box */

.email-box{

display:flex;

background:white;

border-radius:40px;

overflow:hidden;

}

.email-box input{

flex:1;
border:none;

padding:15px 20px;

outline:none;

font-size:14px;

}

.email-box button{

width:50px;

background:black;

color:white;

border:none;

cursor:pointer;

}

/* BIG DISTORTED TEXT */

.big-text{

position:absolute;

left:0;
bottom:120px;

width:100%;

font-size:12vw;

font-weight:900;

color:#f5f5f5;

opacity:.15;

letter-spacing:-10px;

/* perspective distortion */

transform:
scaleY(1.2)
skewX(-15deg);

pointer-events:none;

white-space:nowrap;

}

/* bottom */

.footer-bottom{

margin-top:200px;

display:flex;
justify-content:space-between;
align-items:center;

font-size:12px;

opacity:.8;

}

.social{

display:flex;
gap:20px;

}

.social a{

cursor:pointer;

}

.social a:hover{

color:white;

}

/* responsive */

@media(max-width:900px){

.footer-top{

flex-direction:column;
gap:40px;

}

.footer-bottom{

flex-direction:column;
gap:20px;

text-align:center;

}

.big-text{

font-size:18vw;

}

}










.nav-item a{
display:flex;
align-items:center;
gap:8px;
text-decoration:none;
color:inherit;
}