* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5ef;
  color: #111;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 100px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo-icon {
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-item {
  position: relative;
  font-size: 14px;
  cursor: pointer;
  transition: color .3s;
  text-decoration: none;
  color: #000;
}

.nav-item:hover {
  color: #8cc63f;
}

/* DROPDOWN */

.dropdown {
  position: absolute;
  top: 22px;
  left: 0;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.nav-item:hover .dropdown {
  display: flex;
}

.dropdown a {
  padding: 10px 18px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown a:hover{
    background: #f5f5f5;
}

.message-btn {
  background: #c7f500;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}

.message-btn:hover {
  background: #b4e000;
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
  display: flex;
  min-height: 90vh;
}

/* LEFT */

.hero-left {
  flex: 1;
  padding: 120px 140px;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: #444;
}

.hero-left h1 {
  font-size: 95px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 40px;
  position: relative;
}

.megaphone {
  max-width: 100%;
  vertical-align: middle;
  margin-left: 15px;
}

/* BUTTON */

.primary-btn {
  background: black;
  color: white;
  padding: 18px 35px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  margin-bottom: 80px;
  cursor: pointer;
  transition: .3s;
}

.primary-btn:hover {
  background: #222;
  transform: translateY(-3px);
}

/* STATS */

.stats {
  display: flex;
  gap: 120px;
}

.stats h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stats p {
  font-size: 14px;
  color: #666;
  max-width: 220px;
}

/* RIGHT SIDE */

.hero-right {
  flex: 1;
  position: relative;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 10px;
}

/* Vertical Award Text */

.award-text {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 3px;
  color: #444;
}

/* SAY HI CARD */

.sayhi-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 260px;
  height: 260px;
  background: white;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

.sayhi-badge {
  display: inline-block;
  background: #c7f500;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}

.sayhi-card p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.arrow-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f4f4ef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* FLOAT ANIMATION */

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
/* ================= FOLLOW ================= */

.follow {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.follow span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #555;
}

.line {
  width: 1px;
  height: 70px;
  background: #ddd;
}

.icons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.icons a:hover {
  background: #c7f500;
  transform: translateY(-4px);
  color: black;
}
/* ================= ABOUT SECTION ================= */

.about {
  background: #f3f3f0;
  padding: 120px 140px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT IMAGES */

.about-images {
  position: relative;
  flex: 1;
  
}

.main-img {
  width: 420px;
  border-radius: 10px;
  vertical-align: middle;
  max-width: 100%;
}

.card-img {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 260px;
  vertical-align: middle;
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 20px 30px rgba(20,20,20,0.12);
}

/* RIGHT CONTENT */

.about-content {
  flex: 1;
}

.about-subtitle {
  font-size: 14px;
  color: #666;
}

.about-content h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0;
}

.highlight {
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 8px;
  background: #c7f500;
  z-index: -1;
}

.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 480px;
}

.about-btn {
  background: #c7f500;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 40px;
  transition: .3s;
}

.about-btn:hover {
  background: #b4e000;
}

/* RATING */

.rating-box {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.rating-score h3 {
  font-size: 40px;
  font-weight: 800;
}

.rating-score span {
  font-size: 14px;
  color: #666;
}

.rating-stars span {
  font-size: 14px;
  color: #666;
}

.stars {
  margin-top: 5px;
  color: #111;
  font-size: 18px;
}

/* ================= PROCESS ================= */

.process {
  margin-top: 160px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.process-left h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-btn {
  background: #c7f500;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.process-steps {
  display: flex;
  gap: 80px;
}

.step {
  max-width: 250px;
  position: relative;
}

.step-number {
  font-size: 60px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #c7f500;
  position: absolute;
  top: -35px;
  left: -10px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.services-section{
    background:#000;
    padding:100px 0;
    font-family:'Inter', sans-serif;
    color:#fff;
}

.services-container{
    width:1100px;
    margin:auto;
}

.small-title{
    font-size:14px;
    letter-spacing:2px;
    color:#888;
    margin-bottom:20px;
}

.main-title{
    font-size:56px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:60px;
}

.main-title span{
    position:relative;
}

.main-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:100%;
    height:8px;
    background:linear-gradient(90deg,#7CFC00,#C6FF00);
    border-radius:4px;
    z-index:-1;
}

/* Service Row */
.service{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:45px 30px;
    border-top:1px solid #111;
    position:relative;
    overflow:hidden;
}

/* Green Glow */
.service::before{
    content:"";
    position:absolute;
    top:0;
    left:-20%;
    width:60%;
    height:100%;
    background:radial-gradient(circle at center, rgba(173,255,47,0.35), transparent 70%);
    filter:blur(45px);
    z-index:0;
}

.service > *{
    position:relative;
    z-index:1;
}

.service-left{
    display:flex;
    align-items:center;
    gap:40px;
}

.service-number{
    color:#777;
    font-weight:500;
}

.service-title{
    font-size:28px;
    font-weight:600;
}

.service-desc{
    width:420px;
    color:#aaa;
    font-size:15px;
    line-height:1.6;
}

/* Arrow */
.arrow{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#C6FF00; /* green circle */
    color:#000;         /* black arrow */
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
    transition:0.3s ease;
}

.service:hover .arrow{
    transform:translateY(-4px);
}

.service:last-child{
    border-bottom:1px solid #111;
}
.cross-slider-section{
    position:relative;
    background:#000;
    padding:150px 0;
    overflow:hidden;
}

/* Common strip style */
.slider{
    position:absolute;
    width:150%;
    left:-25%;
    height:70px;
    display:flex;
    align-items:center;
    overflow:hidden;
    transform:rotate(-3deg);
}

/* GREEN SLIDER */
.slider-green{
    background:#C6FF00;
    z-index:2;
}

/* BLACK SLIDER */
.slider-black{
    background:#1a1a1a;
    transform:rotate(3deg);
    z-index:1;
}

/* Track */
.slider-track{
    display:flex;
    white-space:nowrap;
    animation:scroll-left 25s linear infinite;
}

/* Reverse animation for black */
.slider-black .slider-track{
    animation:scroll-right 25s linear infinite;
}

.slider-item{
    font-size:22px;
    font-weight:600;
    padding:0 40px;
}

/* Text colors */
.slider-green .slider-item{
    color:#000;
}

.slider-black .slider-item{
    color:#fff;
    opacity:0.8;
}

/* Animations */
@keyframes scroll-left{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

@keyframes scroll-right{
    from{ transform:translateX(-50%); }
    to{ transform:translateX(0); }
}
.case-studies-section{
    background:#000;
    padding:120px 0;
    color:#fff;
    font-family:'Inter', sans-serif;
    overflow:hidden;
}

.case-container{
    width:1300px;
    margin:auto;
}

/* ===== Top Area ===== */
.case-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:80px;
}

.case-heading{
    font-size:64px;
    font-weight:700;
    line-height:1.1;
}

.case-heading .underline{
    position:relative;
    display:inline-block;
}

.case-heading .underline::after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:100%;
    height:10px;
    background:#6CFF00;
    z-index:-1;
}

.case-right{
    max-width:420px;
    text-align:left;
}

.case-desc{
    color:#aaa;
    line-height:1.7;
    margin-bottom:25px;
}

/* Green Arrow Buttons */
.case-nav{
    display:flex;
    gap:15px;
    justify-content:flex-end;
}

.case-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#6CFF00;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    transition:0.3s ease;
}

.case-btn:hover{
    transform:scale(1.1);
}

/* ===== Images Section ===== */
.case-images{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
}

/* Side images */
.case-image.small{
    width:320px;
    height:420px;
    overflow:hidden;
    opacity:0.8;
}

.case-image.small img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Center large image */
.case-image.large{
    width:620px;
    height:500px;
    overflow:hidden;
}

.case-image.large img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Bottom Text */
.case-bottom{
    text-align:center;
    margin-top:50px;
}

.case-title{
    font-size:38px;
    font-weight:600;
    margin-bottom:10px;
}

.case-category{
    font-size:13px;
    letter-spacing:1px;
    color:#888;
}
.team-section{
    background:#efefef;
    padding:120px 0;
    font-family:'Inter', sans-serif;
}

.team-container{
    width:1320px;
    margin:0 auto;
}

/* Header */
.team-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:80px;
}

.team-subtitle{
    font-size:14px;
    color:#666;
    margin-bottom:15px;
}

.team-title{
    font-size:68px;
    font-weight:700;
    line-height:1.05;
    color:#111;
}

.team-title span{
    position:relative;
    display:inline-block;
}

.team-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:10px;
    width:100%;
    height:10px;
    background:#b6f000;
    z-index:-1;
}

/* Button */
.team-btn{
    background:#b6f000;
    padding:16px 28px;
    border-radius:10px;
    font-weight:600;
    color:#000;
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    transition:0.3s ease;
}

.team-btn:hover{
    transform:translateY(-3px);
}

/* Grid */
.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* Card */
.team-card{
    background:transparent;
}

/* Image */
.team-img{
    width:100%;
    height:420px;
    overflow:hidden;
    margin-bottom:22px;
}

.team-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.team-card:hover .team-img img{
    transform:scale(1.05);
}

/* Info */
.team-name{
    font-size:18px;
    font-weight:600;
    color:#111;
}

.team-role{
    font-size:14px;
    color:#777;
    margin:6px 0 15px;
}

.team-social{
    display:flex;
    gap:10px;
}

.team-social span{
    width:30px;
    height:30px;
    border-radius:50%;
    border:1px solid #ccc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    color:#555;
    cursor:pointer;
    transition:0.3s;
}

.team-social span:hover{
    background:#b6f000;
    border-color:#b6f000;
    color:#000;
}
.testimonial-section{
    padding:100px 0;
    background:#f3f3f3;
}

.testimonial-wrapper{
    width:1320px;
    margin:0 auto;
    background:#f6f4ee;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    position:relative;
}

/* Green glow effect */
.testimonial-wrapper::after{
    content:"";
    position:absolute;
    right:-200px;
    bottom:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle, #b6f000 0%, rgba(182,240,0,0.4) 40%, transparent 70%);
    z-index:0;
}

/* Left Image */
.testimonial-image{
    width:50%;
    position:relative;
}

.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Play Button */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#000;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    cursor:pointer;
}

/* Right Content */
.testimonial-content{
    width:50%;
    padding:100px 90px;
    position:relative;
    z-index:2;
}

.testimonial-subtitle{
    font-size:14px;
    letter-spacing:1px;
    color:#666;
    margin-bottom:20px;
}

.testimonial-title{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:30px;
    color:#111;
}

.testimonial-title span{
    position:relative;
    display:inline-block;
}

.testimonial-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:100%;
    height:8px;
    background:#b6f000;
    z-index:-1;
}

.quote-icon{
    font-size:40px;
    margin:20px 0;
    color:#111;
}

.testimonial-text{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
}

/* Author */
.author{
    display:flex;
    align-items:center;
    gap:15px;
}

.author img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.author-info h4{
    font-size:16px;
    margin:0;
}

.author-info span{
    font-size:14px;
    color:#777;
}

/* Dots */
.testimonial-dots{
    margin-top:30px;
    display:flex;
    gap:8px;
}

.testimonial-dots span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ccc;
    display:inline-block;
}

.testimonial-dots span.active{
    background:#111;
}
.blog-section{
    background:#efefef;
    padding:120px 0;
    font-family:'Inter', sans-serif;
}

.blog-container{
    width:1320px;
    margin:0 auto;
}

/* Header */
.blog-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:60px;
}

.blog-title{
    font-size:68px;
    font-weight:700;
    line-height:1.05;
    color:#111;
}

.blog-btn{
    background:#b6f000;
    padding:16px 28px;
    border-radius:10px;
    font-weight:600;
    color:#000;
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    transition:0.3s ease;
}

.blog-btn:hover{
    transform:translateY(-3px);
}

/* Divider */
.blog-divider{
    border-top:1px solid #ddd;
}

/* Blog Row */
.blog-row{
    display:grid;
    grid-template-columns: 220px 1fr 260px;
    gap:40px;
    padding:50px 0;
    border-bottom:1px solid #ddd;
    align-items:center;
}

/* Left Meta */
.blog-meta h4{
    margin:0;
    font-size:16px;
    font-weight:600;
}

.blog-meta span{
    display:block;
    font-size:14px;
    color:#666;
    margin:5px 0 25px;
}

.blog-tag{
    display:inline-block;
    padding:6px 14px;
    font-size:13px;
    border-radius:6px;
    background:#d9e6a3;
    color:#333;
}

/* Title */
.blog-post-title{
    font-size:32px;
    font-weight:600;
    color:#111;
    line-height:1.3;
    max-width:600px;
}

/* Image */
.blog-image{
    width:100%;
    height:160px;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.blog-row:hover .blog-image img{
    transform:scale(1.05);
}
.footer-section{
    padding:40px;
    background:#f2f2f2;
}

.footer-wrapper{
    background:#0c0c0c;
    border-radius:24px;
    padding:80px 70px 40px;
    color:#cfcfcf;
    font-family:'Inter', sans-serif;
}

/* Top Grid */
.footer-top{
    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
    gap:60px;
}

/* Logo */
.footer-logo{
    font-size:28px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

.footer-desc{
    max-width:320px;
    line-height:1.7;
    margin-bottom:30px;
}

/* Social Icons */
.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid #2a2a2a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#aaa;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-social a:hover{
    border-color:#b6f000;
    color:#b6f000;
}

/* Titles */
.footer-title{
    font-size:18px;
    font-weight:600;
    color:#fff;
    margin-bottom:25px;
}

/* Links */
.footer-links a{
    display:block;
    text-decoration:none;
    color:#b5b5b5;
    margin-bottom:14px;
    transition:0.3s ease;
}

.footer-links a:hover{
    color:#b6f000;
}

/* Newsletter */
.newsletter-text{
    margin-bottom:20px;
    line-height:1.6;
}

.newsletter-box{
    display:flex;
    align-items:center;
    background:#161616;
    border-radius:12px;
    padding:8px 8px 8px 16px;
}

.newsletter-box input{
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
    flex:1;
    font-size:14px;
}

.newsletter-btn{
    width:42px;
    height:42px;
    background:#b6f000;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s ease;
}

.newsletter-btn:hover{
    transform:translateY(-3px);
}

/* Divider */
.footer-divider{
    border-top:1px solid #1c1c1c;
    margin:60px 0 30px;
}

/* Bottom */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    color:#9c9c9c;
}

.footer-bottom-center{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-policy{
    display:flex;
    gap:30px;
}

.footer-policy a{
    color:#9c9c9c;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-policy a:hover{
    color:#b6f000;
}

/* Scroll Button */
.scroll-top{
    position:absolute;
    right:30px;
    bottom:30px;
    width:46px;
    height:46px;
    background:#fff;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
