/*
Theme Name: My Custom Theme
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.desktop-only{
    display:flex;
}

.mobile-sticky-nav{
    display:none;
}
/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: sticky;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 1.3);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-elements
{
    padding: 30px 110px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-elements a.active {
  color: white;
}

.nav-elements a {
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.nav-elements a.active::after {
  content: "";
  position: absolute;
  /*left: 0;*/
  /*bottom: -6px;*/
  /*width: 100%;*/
  /*height: 2px;*/
  background: rgba(255, 255, 255, 0.4);
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a{
    margin-left: 0;
}

.logo img {
  width: 100px;
}

.logo span {
  font-weight: 700;
  color: #ff2d2d;
}

nav a {
  margin-left: 25px;
  color: #ddd;
  text-decoration: none;
  font-size:25px;
}

nav a:hover {
  color: #ff2d2d;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
  
}
nav a.active {
    /*background: #b12d28;*/
    background: rgba(177, 45, 40, 0.4);
    color: #fff;
    border-radius: 50px;
    padding: 15px 50px;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 250px 60px;
  background: linear-gradient(120deg, #000, #111, #000);
}
.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.2;
}

.hero span {
  color: #ff2d2d;
}

.hero p {
  margin-top: 15px;
  color: #aaa;
  text-align: center;
  font-size: 40px;
}

.btn {
  margin-top: 25px;
  padding: 14px 30px;
  background: linear-gradient(45deg, #ff2d2d, #ff4d4d);
  border: none;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.4);
}

.btn:hover {
  transform: scale(1.05);
}

.hero-img img {
  width: 500px;
  border-radius: 20px;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 50px 10px;
}

.title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

/* Cards */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid #1a1a1a;
}
.card:hover {
  transform: translateY(-10px);
  border-color: #ff2d2d;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
}
.card h3 {
  color: #ff2d2d;
  margin-bottom: 10px;
}
.card p {
  color: #aaa;
}

/* About */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about img {
  width: 600px;
    border-radius: 20px;
    opacity: 1;
}
.about p {
  color: #bbb;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.review {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #1a1a1a;
  transition: 0.3s;
}
.review:hover {
  border-color: #ff2d2d;
  box-shadow: 0 0 15px rgba(255, 45, 45, 0.3);
}

/* CTA */
.cta {
  background: linear-gradient(120deg, #111, #000);
  text-align: center;
  padding: 80px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 45, 45, 0.2);
}

.cta a{
    padding: 20px 30px;
    text-decoration:none;
    background:#b12d28;
    color:white;
    border-radius:50px;
}

.cta a:hover{
    padding: 20px 30px;
    background:white;
    color:black;
     transition: transform 0.3s ease;
}

.cta h2{
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 30px;
}

.cta p{
    font-size: 30px;
    margin-bottom: 60px;
    font-weight: 400;
}

footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #222;
  color: #777;
}


.hero-section {
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  color: #fff;
  font-size: 75px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}

.hero-tags {
  color: #888;
  font-size: 22px;
}

.hero-tags span {
  background: #b12d28;
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  margin: 0 5px;
  display: inline-block;
  font-size:50px;
}

.lets-connect a{
    padding: 16px 25px;
    background: #b12d28;
    width: fit-content;
    text-align: center;
    border-radius: 60px;
    margin-left:0px;
}

.lets-connect a:hover{
     background:white;
    color:black; 
    padding: 16px 25px;
}


/*Clients Section*/
.flipper-clients-section {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.flipper-clients-section h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.flipper-clients-section p {
  color: #aaa;
  margin-bottom: 50px;
}

.flipper-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.flipper-client-box {
  background: white;
  border-radius: 20px;
  height: 120px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flipper-logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flipper-client-box.flipper-flip .flipper-logo-inner {
  transform: rotateY(180deg);
}

.flipper-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  backface-visibility: hidden;
}

.flipper-back {
  transform: rotateY(180deg);
}

/*.clientsection{*/
/*    padding: 20px 30px;*/
/*}*/

.portfolio-wrapper{
    /*padding: 20px 30px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-wrapper a{
    padding: 20px 30px;
    text-decoration:none;
    background:#b12d28;
    color:white;
    border-radius:50px;
}

.portfolio-wrapper a:hover{
    padding: 20px 30px;
    background:white;
    color:black;
     transition: transform 0.3s ease;
}

.work-cta{
   display: flex;
    justify-content: center;
    margin-top: 60px;
    padding: 20px 120px;
    text-decoration: none;
    background: #b12d28;
    color: white;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.clientsection {
    padding:20px 30px;
}

.clientsection h2 {
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight:500;
}
.clientsection p {
    font-size: 24px;
    margin-bottom: 40px;
}

.client-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-wrapper a{
    padding: 20px 30px;
    text-decoration:none;
    background:#b12d28;
    color:white;
    border-radius:50px;
}

.client-wrapper a:hover{
    padding: 20px 30px;
    background:white;
    color:black;
     transition: transform 0.3s ease;
}

/*Clients Section End*/






/*Services Section Start*/
.services-section {
  background: #000;
  text-align: center;
}

.services-heading {
    color: white;
    font-size: 60px;
    margin-bottom: 50px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  /*max-width: 1200px;*/
  margin: auto;
}

/* BOX */
.service-box {
  background: #111;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.3s;
  border: 2px solid transparent;
}

.service-box img{
    width:80px;
}

/* HOVER EFFECT */
.service-box:hover {
  border: 2px solid #b12d28;
  transform: translateY(-5px);
}

/* TEXT */
.service-box h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-box p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/*Services Section End*/


/*Portfolio Section*/

.work-section {
      max-width: 1400px;
      margin: 0 auto;
    }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .work-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .work-card:hover {
      transform: translateY(-4px);
    }

    .image-wrapper {
      position: relative;
      height: 420px;
      overflow: hidden;
      background: #eaeaea;
    }

    .image-wrapper img {
      width: 100%;
      display: block;
      transform: translateY(0);
      transition: transform 9s linear;
    }

    .image-wrapper:hover img {
      transform: translateY(calc(-100% + 420px));
    }

    .card-content {
      padding: 18px 16px 20px;
    }

    .card-content h3 {
      font-size: 22px;
      color: #111;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .card-content p {
      font-size: 15px;
      color: #666;
      line-height: 1.5;
    }

    .card-content p span {
      font-weight: 700;
      color: #111;
    }

    /*@media (max-width: 1200px) {*/
    /*  .work-grid {*/
    /*    grid-template-columns: repeat(3, 1fr);*/
    /*  }*/
    /*}*/

    /*@media (max-width: 900px) {*/
    /*  .work-grid {*/
    /*    grid-template-columns: repeat(2, 1fr);*/
    /*  }*/

    /*  .image-wrapper {*/
    /*    height: 360px;*/
    /*  }*/

    /*  .image-wrapper:hover img {*/
    /*    transform: translateY(calc(-100% + 360px));*/
    /*  }*/
    /*}*/

    /*@media (max-width: 600px) {*/
      
    /*}*/
    
    /*portfolio section end*/
    
    
    /*About Us Section*/

    /*.grid{*/
    /*    display:grid;*/
    /*    grid-template-columns:1fr 1fr;*/
    /*    gap:50px;*/
    /*    align-items:start;*/
    /*}*/

    /* Left */
    /*.story{*/
    /*    font-size:12px;*/
    /*    color:#9ca3af;*/
    /*    display:flex;*/
    /*    align-items:center;*/
    /*    gap:10px;*/
    /*    margin-bottom:15px*/
    /*}*/
    /*.story::after{*/
    /*    content:'';*/
    /*    width:40px;*/
    /*    height:2px;*/
    /*    background:#b12b28*/
    /*}*/

    /*.heading{*/
    /*    font-size:34px;*/
    /*    font-weight:700;*/
    /*    line-height:1.4;*/
    /*    width:60%*/
    /*}*/
    /*.heading span{*/
    /*    color:#b12b28;*/
    /*    font-size: 36px;*/

    /*}*/


    /*.big-img{*/
    /*    margin-top:20px;*/
    /*    width:70%*/
    /*}*/
    /*.big-img img{*/
    /*    width:100%;*/
    /*    border-radius:20px*/
    /*}*/

    /* right side */
    /*.side-img img*/
    /*{*/
    /*    width:100%;*/
    /*    border-radius:20px;*/
    /*        height: 270px;*/
    /*}*/

    /*.stats*/
    /*{*/
    /*    display:flex;*/
    /*    gap:25px;*/
    /*    margin-top:10px;*/
    /*    flex-wrap:wrap*/
    /*}*/
    /*.stat h2{*/
    /*    font-size:30px*/
    /*}*/
    /*.stat p{*/
    /*    font-size:18px;*/
    /*    color:#9ca3af*/
    /*}*/

    

    /*@media(max-width:768px){*/
    /*  .grid{*/
    /*    grid-template-columns:1fr*/
    /*}*/
    /*  .heading,.big-img,.desc{*/
    /*    width:100%*/
    /*}*/
    /*}*/
    
    
    
    
    
    
    
    
    
    
    
    
       .about-section {
      width: 100%;
      padding: 30px 14px;
      background: #000;
    }

    .about-container {
      width: 100%;
      margin: 0 auto;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 18px;
      padding: 80px 18px 30px;
    }

    .stat-item span {
      display: block;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #bdbdbd;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .stat-item h2 {
      font-size: 68px;
      line-height: 1;
      font-weight: 400;
      color: #fff;
    }

    .content-row {
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    /*align-items: stretch;*/
    align-items: center;
    justify-content: center;
    }

    .about-card {
      background: #171717;
      border-radius: 18px;
      padding: 50px 60px 15px;
      min-height: 650px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .about-label {
      font-size: 14px;
      text-transform: uppercase;
      color: #d6d6d6;
      letter-spacing: 1px;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .about-title {
      font-size: 64px;
      line-height: 1.3;
      font-weight: 500;
      color: #fff;
      /*max-width: 620px;*/
      margin-bottom: 55px;
      text-transform: uppercase;
    }
    
    .about-title span{
        color:#b12d28;
    }

    .about-texts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-top: auto;
    }

    .about-texts p {
      font-size: 20px;
      line-height: 1.65;
      color: #d0d0d0;
      font-weight: 400;
    }
      .about-text-button{
        color: #95BF46;
        /*text-align: center;*/
        /*margin-left: auto;*/
        /*margin-right: auto;*/
        display: block;
        margin-top: 20px;
        background: white;
        width: fit-content;
        padding: 6px 30px;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 600;
        }
        
        .about-text-button:hover{
            color: white;
            background:black;
            transition: transform 0.3s ease;
                  
        }

    .about-image {
      min-height: 650px;
      border-radius: 18px;
      overflow: hidden;
          margin-left: auto;
    margin-right: auto;
    }

    .about-image img {
      object-fit: cover;
      display: block;
         width: 70%;
    margin-left: auto;
    margin-right: auto;
      
    }

    @media (max-width: 1400px) {
      .stat-item h2 {
        font-size: 56px;
      }

      .about-title {
        font-size: 52px;
      }

      .about-texts p {
        font-size: 18px;
      }
    }

    @media (max-width: 1024px) {
      .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
      }

      .content-row {
        grid-template-columns: 1fr;
      }

      .about-card,
      .about-image {
        min-height: auto;
      }

      .about-card {
        padding: 50px 35px;
      }

      .about-label {
        margin-bottom: 50px;
      }

      .about-title {
        font-size: 42px;
        margin-bottom: 35px;
      }

      .about-texts {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }
    /*About Us Section End*/
    
    
    
    
    /*Footer Start*/
    .site-footer {
      background: #000;
      color: #fff;
      padding: 80px 40px 28px;
    }

    .footer-container {
      max-width: 1500px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: center;
      gap: 80px;
      padding-bottom: 58px;
    }

    .footer-left {
      max-width: 560px;
      flex: 1;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 36px;
    }

    .footer-logo img {
      width: 78px;
      height: auto;
      display: block;
    }

    .footer-logo-text {
      font-size: 62px;
      line-height: 1;
      font-weight: 500;
      color: #ff6a2a;
      letter-spacing: -1px;
      display: inline-block;
      transform: rotate(-18deg);
    }

    .footer-description {
      font-size: 28px;
      line-height: 1.9;
      color: #f2f2f2;
      max-width: 760px;
      margin-bottom: 42px;
      font-weight: 400;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .footer-socials a {
      width: 55px;
      height: 55px;
      border-radius: 12%;
      background: #fff;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .footer-socials a:hover {
      transform: translateY(-3px);
      background: #b12d28;
      color: #fff;
    }

    .footer-socials svg {
      width: 35px;
      height: 35px;
      fill: currentColor;
    }

    .footer-right {
      display: flex;
      gap: 100px;
      flex-wrap: wrap;
      padding-top: 10px;
    }

    .footer-column h4 {
      font-size: 34px;
      line-height: 1.2;
      font-weight: 500;
      color: #fff;
      margin-bottom: 34px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 26px;
    }

    .footer-column ul li:last-child {
      margin-bottom: 0;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #f7f7f7;
      font-size: 32px;
      line-height: 1.2;
      font-weight: 400;
      transition: 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #b12d28;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.22);
      padding-top: 34px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 15px;
      line-height: 1.3;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 46px;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.4;
    transition: 0.3s ease;
    font-weight: 300;
    }

    .footer-bottom-links a:hover {
      color: #fff;
    }

    @media (max-width: 1400px) {
      .footer-description {
        font-size: 22px;
      }

      .footer-column h4 {
        font-size: 28px;
      }

      .footer-column ul li a,
      .footer-copy,
      .footer-bottom-links a {
        font-size: 24px;
      }
    }

    @media (max-width: 1024px) {
      .site-footer {
        padding: 60px 24px 24px;
      }

      .footer-top {
        flex-direction: column;
        gap: 50px;
      }

      .footer-right {
        gap: 60px;
      }

      .footer-description {
        font-size: 20px;
        line-height: 1.7;
      }

      .footer-column h4 {
        font-size: 26px;
        margin-bottom: 24px;
      }

      .footer-column ul li {
        margin-bottom: 18px;
      }

      .footer-column ul li a,
      .footer-copy,
      .footer-bottom-links a {
        font-size: 22px;
      }
    }

.mobile-only{
    display:none;
}
    @media (max-width: 767px) {
        
        
        .hero {
                flex-direction: column;
                text-align: center;
                /*padding-top: 120px;*/
                padding: 50px 20px;
              }
              
        .hero-img img {
                width: 90%;
              }
              
        .about {
                flex-direction: column;
                gap:0px;
              }
              
        .hero-content h1 {
                color: #fff;
                font-size: 30px;
                line-height: 1.5;
                margin-bottom: 30px;
            }
            
        .hero-tags span {
                margin: 5px 5px;
            display: inline-block;
            font-size: 25px;
            }
            
        .hero p {
                margin-top: 15px;
                font-size: 25px;
            }
            
        .clientsection h2 {
                font-size: 40px;
                margin-bottom:20px;
            }
            
            .portfolio-wrapper a {
            padding: 10px 20px;
            text-decoration: none;
            background: #b12d28;
            color: white;
            border-radius: 50px;
        }
            
        .clientsection p {
    font-size: 18px;
    line-height: 1.8;
}

        .desktop-only{
            display:none;
        }
        
        
        /*Mobile Menu*/
        .mobile-navbar {
  width: 100%;
  padding: 12px 16px;
  position: relative;
  z-index: 9999;
  background: #000;
}

        .mobile-nav-inner {
          display: grid;
          grid-template-columns: 1fr auto 1fr;
          align-items: center;
        }
        
        .mobile-talk {
          justify-self: start;
          margin-left:-30px;
        }
        
        .mobile-talk a {
          display: inline-block;
          text-decoration: none;
          color: #fff;
          background: #b12d28;
          padding: 10px 16px;
          border-radius: 40px;
          font-size: 14px;
          font-weight: 500;
        }
        
        .mobile-logo {
          justify-self: center;
        }
        
        .mobile-logo img,
        .mobile-menu-logo img {
          width: 80px;
          max-width: 100%;
          /*display: block;*/
        }
        
        .menu-toggle {
          justify-self: end;
          width: 42px;
          height: 42px;
          background: transparent;
          border: none;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-end;
          gap: 6px;
          cursor: pointer;
          padding: 0;
        }
        
        .menu-toggle span {
          display: block;
          height: 2px;
          background: #fff;
          border-radius: 10px;
          transition: 0.3s ease;
        }
        
        .menu-toggle span:nth-child(1) {
          width: 26px;
        }
        
        .menu-toggle span:nth-child(2) {
          width: 20px;
        }
        
        .menu-toggle span:nth-child(3) {
          width: 26px;
        }
        
        .mobile-menu-overlay {
          position: fixed;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 100dvh;
          background: #000;
          z-index: 10000;
          transform: translateY(100%);
          transition: transform 0.45s ease;
          padding: calc(env(safe-area-inset-top) + 20px) 20px 30px;
          display: flex;
          flex-direction: column;
          overflow-y: auto;
        }
        
        .mobile-menu-overlay.active {
          transform: translateY(0);
        }
        
        .mobile-menu-header {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 50px;
          min-height: 60px;
        }
        
        .menu-close {
          background: transparent;
          border: none;
          color: #fff;
          font-size: 42px;
          line-height: 1;
          cursor: pointer;
          padding: 0;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        
        .mobile-menu-links {
          display: flex;
          flex-direction: column;
          gap: 22px;
          text-align:center;
        }
        
        .mobile-menu-links a {
          text-decoration: none;
          color: #fff;
          font-size: 35px;
          font-weight: 500;
          transition: 0.3s ease;
        }
        
        .mobile-menu-links a:hover,
        .mobile-menu-links a.active {
          color: #b12d28;
        }
        
        body.menu-open {
          overflow: hidden;
        }
        
        .mobile-only {
        display: block !important;
        }


        /*Mobile Menu*/
        
      .site-footer {
        padding: 42px 18px 20px;
      }
    
      .footer-logo-text {
        font-size: 46px;
      }
    
      .footer-description {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 28px;
      }
    
      .footer-socials a {
        width: 46px;
        height: 46px;
      }
    
      .footer-socials svg {
        width: 20px;
        height: 20px;
      }
    
      .footer-right {
        flex-direction: column;
        gap: 34px;
      }
    
      .footer-column h4 {
        font-size: 22px;
        margin-bottom: 16px;
      }
    
      .footer-column ul li a {
        font-size: 18px;
      }
    
      .footer-copy,
      .footer-bottom-links a {
        font-size: 17px;
      }
    
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
    
      .footer-bottom-links {
        gap: 22px;
        justify-content:center;
      }
      
      .about-section {
        padding: 20px 10px;
      }
    
      .stats-row {
        grid-template-columns: 1fr 1fr;
        padding: 10px 10px 20px;
      }
    
      .stat-item h2 {
        font-size: 40px;
        text-align: center;
      }
      
      .services-heading {
        font-size: 40px;
        }
    
      .stat-item span {
        font-size: 12px;
        text-align: center;
      }
    
      .content-row {
        gap: 14px;
      }
    
      .about-card {
        border-radius: 14px;
        padding: 30px 22px;
      }
    
      .about-image {
        border-radius: 14px;
        height: 320px;
      }
    
      .about-label {
        margin-bottom: 28px;
      }
    
      .about-title {
        font-size: 30px;
        margin-bottom: 25px;
      }
    
      .about-texts p {
        font-size: 16px;
        line-height: 1.7;
      }
      
      .cta {
            padding: 30px 20px;
        }
        
      .cta h2 {
            font-size: 40px;
            font-weight: 500;
            margin-bottom: 30px;
            line-height: 1.3;
        }
    
      .cta p {
            font-size: 25px;
            margin-bottom: 60px;
            font-weight: 400;
            line-height: 1.5;
        }


    .clientsection {
            padding: 20px 20px;
        }


    .work-grid {
        grid-template-columns: 1fr;
      }

    .image-wrapper {
        height: 320px;
      }

    .image-wrapper:hover img {
        transform: translateY(calc(-100% + 320px));
      }
      
    .client-wrapper {
        flex-flow: column;
        margin-bottom: 50px;
    }

    .flipper-clients-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mobile-menu-logo img {
        margin-right: 70px;
    }
    
    .portfolio-wrapper {
    flex-direction: column;
}
    
    .work-cta {
    padding: 20px 40px;
    }


.mobile-sticky-nav {
  display: none;
}

@media (max-width: 991px) {
  .mobile-sticky-nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    overflow: hidden;
  }

  .mobile-sticky-nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-sticky-nav-list::-webkit-scrollbar {
    display: none;
  }

  .mobile-sticky-nav-list li {
    flex: 0 0 auto;
  }

  .mobile-sticky-nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
  }

  .mobile-sticky-nav-list a.active {
    background: rgba(177, 45, 40, 0.18);
    color: white;
    border: 1px solid rgba(177, 45, 40, 0.35);
  }
}
      
      
    }
    /*Footer End*/
























