*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family:"Gabarito", sans-serif !important;
}

/* variable and values */

:root{
    --main-color:#F8B400;
    --next-color:#1E1E1E;
    --third-color:#234182;
    --black:#252525;
    --head:26px;
    --sub-head:22px;
    --text:18px;
}

/* Mobile navigation Bar */
.mobile-navigation{
    display: none !important;
}

@media screen and (min-width:320px) and (max-width:768px){
    .mobile-navigation{
        display: unset !important;
        /* box-shadow: 0px 2px 5px gray; */
        background-color: #fff;
        border-bottom: 1px solid gainsboro;
    }
    .navbar-toggler{
        box-shadow:none !important;
        border:none !important;
    }
    .desktop-navigation{
        display: none !important;
    }

    .nut{
      width: 65px !important;
    }
    .bolt{
      bottom: unset;
      top: -90px !important;
      width: 90px !important;
      left: -30px !important;
    }
}

/* desktop navigation Bar */
.desktop-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background-color: #fff;
    box-shadow: 0px 0px 1px gray;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.subnav{
    display: flex;
    gap: 90px;
}

.subnav a{
    text-decoration: none;
    color: var(--black);
    font-size: var(--sub-head);
}


/* hoem section */

.hero {
  overflow: hidden;
  position: relative;
  margin-top: 6rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 8%;
  background: #fff;
  background-image: url("../bg5.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Left text section */
.hero-content {
  flex: 1;
  min-width: 320px;
  z-index: 2;
}

.small-text {
  font-size: 0.95rem;
  color: #666;
  /* margin-bottom: 10px; */
  margin-bottom: none !important;
}

.small-text strong {
  color: #000;
}

.hero-content h1 {
  font-size: 5.5rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #f8b400;
}

.desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 450px;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 15px;
}

.btn {
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #f8b400;
  color: #fff;
  border-radius: 8px !important;
}

.btn.primary:hover {
  background: #e2a100;
}

.btn.secondary {
  background: #f3f3f3;
  color: #333;
  border-radius: 8px !important;
}

.btn.secondary:hover {
  background: #e9e9e9;
}

/* Right Image section */
.hero-image {
  flex: 1;
  min-width: 320px;
  position: relative;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  clip-path: path('M 0 0 Q 50 20 100 0 Q 150 -20 200 0 Q 250 20 300 0 Q 350 -20 400 0 Q 450 20 500 0 L 500 400 L 0 400 Z');
  /* fallback if clip-path not supported */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0 95%);
  object-fit: cover;
}

/* Rating overlay */
.rating {
  position: absolute;
  bottom: 15px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rating p {
  font-size: 0.9rem;
  color: #333;
}

.rating strong {
  color: #f8b400;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.con{
  padding: 6px 30px;
  font-size: 17px;
  background-color: var(--main-color);
  border: none;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 3rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .desc {
    margin: 0 auto 30px;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    clip-path: none;
    border-radius: 30px;
  }

  .rating {
    position: static;
    justify-content: center;
    /* margin-top: 15px; */
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* about start */
/* Section Layout */
.about-section {
  padding: 60px 20px;
  background-image: url("../bg4.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; 
  overflow: hidden;
  position: relative;

}

.about-container {
  text-align: center;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nut{
  width: 120px;
  position: absolute;
  top: 20px;
  right: -10px;
}

/* Left Side */
.about-left {
  text-align:center;
}

.about-btn {
  background: #f3f3f3;
  border: none;
  color: #333;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: default;
  margin-bottom: 15px;
}

.abt-video{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abt-video video{
  width: 80%;
  border-radius: 13px;
  box-shadow: 2px 2px 7px gray;
}

.ours{
  width: 100%;
  display: flex;
  justify-content:center;
  gap: 20px;
  align-items: center;
  margin-top: 4rem;
  overflow: hidden;
}

.stats{
  position: relative;
}
.bolt{
  position: absolute;
  left: -30px;
  bottom:-40px;
  width: 120px;
}

.mission{
  width: 400px;
  border-radius: 10px;
  border: 1px solid #000;
  padding: 20px;
  flex-basis: 38%;
  /* background-image: url('../mission.png'); */
  background-color:#111;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.vision{
  width: 400px;
  border-radius: 10px;
  border: 1px solid #000;
  padding: 20px;
  height: 184px;
  flex-basis: 38%;
  /* background-image: url('../vision.png'); */
  background-color: #111;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

@media screen and (min-width:320px) and (max-width:768px){
  .about-text{
    font-size: 0.97rem !important;
  }
  .ours{
    flex-direction: column;
  }
  .vision{
    height: unset;
  }
}

.about-left h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-text strong {
  color: #333;
}

/* Founder Section */
.founder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.founder h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.founder p {
  font-size: 0.8rem;
  color: #777;
}

.signature {
  height: 28px;
  margin-left: auto;
}

/* Center Image */
.about-center img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
        @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

/* Right Section */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  position: relative;
  /* animation: pulse 3s infinite; */
  animation: floatLogo 4s ease-in-out infinite;
}

/* Circular Logo */
.circle-logo {
  position: absolute;
  top: -30px;
  right: 0;
  text-align: center;
}

.circle-text {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  font-size: 0.7rem;
  color: #aaa;
  animation: spin 10s linear infinite;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(128, 128, 128, 0.292);
  padding: 10px;
  border-radius: 50%;
  color: #bbb;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mission & Vision */
.mission h4,
.vision h4 {
  font-size: 1.94rem;
  color: var(--main-color);
  margin-bottom: 8px;
}

.mission p,
.vision p {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 15px;
}

.vision, .mission{
  height: 160px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    gap: 30px;
  }

  .about-right {
    order: 3;
  }

  .circle-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .about-right img{
    width: 80%;
  }

  .about-left, .about-right {
    align-items: center;
    text-align: center;
  }

  .founder {
    justify-content: center;
  }

  .about-center img {
    width: 90%;
    margin: 0 auto;
  }
}


/* service starts */
.services-section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.section-title span {
  color: #F9B233;
}

.section-subtitle {
  color: #777;
  font-size: 0.95rem;
  margin: 10px auto 40px;
  max-width: 500px;
}

/* SCROLLING CONTAINER */
.scroll-wrapper {
  /* overflow: scroll; */
  position: relative;
}

.scroll-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: scrll 25s forwards linear infinite;
  width: 100%;
}

/* Stop scrolling on hover */
.scroll-container:hover {
  animation-play-state: paused;
}

/* CARD DESIGN */
.service-card {
  min-width: 270px;
  max-width: 270px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.card-info {
  background: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  border-top: 1px solid #f2f2f2;
  font-size: 0.95rem;
}

.card:hover{
  /* border: 1px solid white; */
  box-shadow: 0px 0px 9px whitesmoke;
  padding: 25px;
}

/* QUOTE BUTTON */
.quote-btn-container {
  margin-top: 40px;
}

.quote-btn {
  display: inline-block;
  background: #F9B233;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background: #e49e1e;
}

/* KEYFRAMES for smooth horizontal scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .service-card {
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .scroll-container {
    animation-duration: 30s;
    justify-content: start;
  }
}

@media (max-width: 600px) {
  .scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    animation: none;
  }

  .service-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  .service-card img {
    height: 180px;
  }

  .quote-btn {
    padding: 10px 20px;
  }
}

.expert{
  font-size: 30px;
  font-weight: 800;
  margin-top: 20px;
  color: white;
  text-align: center;
}



/* ex4 */
.ex1{
  width:260px; height: 300px; background-image:url('../villa.jpg'); padding: 20px; background-position: center; background-size: cover;
}

.ex1:hover{
  color: white;
  background-image: url('../villa1.jpg');
  background-color: #000;
  padding: 20px;
}


.ex-p1{
  display: none;
}

.ex1:hover > .ex-p1{
  display: unset !important;
  margin-top: 20px;
}

/* ex2 */
.ex2{
  width:260px; height: 300px; background-image:url('../home.jpg'); padding: 20px; background-position: center; background-size: cover;
}

.ex2:hover{
  color: white;
  background-image: url('../home1.jpg');
  background-color: #000;
  padding: 20px;
}


.ex-p2{
  display: none;
}

.ex2:hover > .ex-p2{
  display: unset !important;
  margin-top: 20px;
}

/* ex3 */
.ex3{
  width:260px; height: 300px; background-image:url('../custom.jpg'); padding: 20px; background-position: center; background-size: cover;
}

.ex3:hover{
  color: white;
  background-image: url('../cus1.jpg');
  background-color: #000;
  padding: 20px;
}


.ex-p3{
  display: none;
}

.ex3:hover > .ex-p3{
  display: unset !important;
  margin-top: 20px;
}

/* ex2 */
.ex4{
  width:260px; height: 300px; background-image:url('../sus.jpg'); padding: 20px; background-position: center; background-size: cover;
}

.ex4:hover{
  color: white;
  background-image: url('../sus1.jpg');
  background-color: #000;
  padding: 20px;
}


.ex-p4{
  display: none;
}

.ex4:hover > .ex-p4{
  display: unset !important;
  margin-top: 20px;
}


/* ex5 */
.ex5{
  width:260px; height: 300px; background-image:url('../re.jpg'); padding: 20px; background-position: center; background-size: cover;
}

.ex5:hover{
  color: white;
  background-image: url('../re1.jpg');
  background-color: #000;
  padding: 20px;
}


.ex-p5{
  display: none;
}

.ex5:hover > .ex-p5{
  display: unset !important;
  margin-top: 20px;
}


/* why start */
.why-choose {
  background: url('../why.png') center/contain no-repeat;
  position: relative;
  padding: 80px 20px;
  border-radius: 30px;
  overflow: hidden;
}

/* Dark overlay to improve contrast */
.overlay {
  /* background: rgba(0, 0, 0, 0.75); */
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

/* Title */
.why-choose h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #eaeaea;
}

.why-choose h2 span {
  color: #F9B233;
}

.subtitle {
  font-size: 0.95rem;
  color: #bcbcbc;
  max-width: 500px;
  margin: 10px auto 50px auto;
}

/* Cards Grid */
.cards {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Card */
.card {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px);
}

/* Card Content */
.number {
  font-size: 2.6rem;
  font-weight: 500;
  opacity: 0.4;
  margin-bottom: 10px;
  color: var(--main-color);
}

.card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: whitesmoke;
  border-radius: 8px;
  padding: 5px 20px;
  background-color: #f8b400;
  text-shadow: 1px 1px 3px gray;
}

.card p {
  font-size: 0.85rem;
  color: #c2c2c2;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose {
    padding: 60px 15px;
    background: url('../why.png') center/cover no-repeat;
  }

  .why-choose h2 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .card {
    padding: 20px;
  }

  .number {
    font-size: 1.4rem;
  }

  .card h4 {
    font-size: 0.95rem;
  }

  .card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Project page */

.projects-section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.section-title span {
  color: #F9B233;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #777;
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Project Card */
.project-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Card Info Overlay */
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  padding: 15px;
  text-align: left;
}

.project-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 0.85rem;
  color: #666;
}

/* Open Icon (top-right) */
.open-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  transition: background 0.3s;
}

.project-card:hover .open-icon {
  background: #F9B233;
  color: #fff;
}

/* Button */
.quote-btn-container {
  margin-top: 40px;
}

.quote-btn {
  display: inline-block;
  background: #F9B233;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.quote-btn:hover {
  background: #e49e1e;
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }

  .project-info {
    padding: 10px;
  }

  .quote-btn {
    padding: 10px 20px;
  }
}


/* testimonial start */

  .testimonial-section {
      padding: 80px 0;
      text-align: center;
      overflow: hidden;
    }

    .testimonial-section h2 {
      font-size: 2rem;
      font-weight: 700;
    }

    .testimonial-section h2 span {
      color: #f5b000;
    }

    /* Slider Container */
    .slider {
      display: flex;
      gap: 20px;
      overflow: hidden;
      margin-top: 50px;
      position: relative;
    }

    .slide-track {
      display: flex;
      animation: scroll 30s linear infinite;
      gap: 20px;
    }

    .testimonial-card {
      background: #f9f9f9;
      border-radius: 16px;
      padding: 25px;
      width: 300px;
      flex-shrink: 0;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-card p {
      font-size: 0.95rem;
      color: #444;
      min-height: 80px;
    }

    .stars {
      color: #f5b000;
      font-size: 1rem;
    }

    .author {
      font-weight: 600;
      margin-top: 5px;
      color: #000;
    }

    .play-btn {
      background: #f5b000;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      font-weight: bold;
      position: absolute;
      bottom: 15px;
      right: 15px;
    }

    .testimonial-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .testimonial-card {
        width: 250px;
      }
      .testimonial-section h2 {
        font-size: 1.5rem;
      }
    }


/* Faq Start */

 .faq-section {
      background: url("../faq.png") top/cover no-repeat;
      color: #fff;
      padding: 100px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      /* min-height: 600px; */
    }

    .faq-section::before {
      content: '';
      position: absolute;
      inset: 0;
      /* background: rgba(0, 0, 0, 0.7); */
      z-index: 1;
    }

    .faq-content {
      position: relative;
      z-index: 2;
    }

    .faq-title h2 {
      font-size: 2rem;
      font-weight: 700;
    }

    .faq-title p {
      font-size: 1rem;
      color: #ddd;
    }

    .btn-yellow {
      background: #f5b000;
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 10px 25px;
      transition: 0.3s;
    }

    .btn-yellow:hover {
      background: #ffcb3c;
    }

    .accordion-item {
      background-color: #1c1c1c;
      border: none;
      margin-bottom: 10px;
      border-radius: 10px;
    }

    .accordion-button {
      background-color: #2a2a2a;
      color: #fff;
      font-weight: 500;
      border-radius: 10px;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background-color: #f5b000;
      color: #000;
    }

    .accordion-body {
      background: #1c1c1c;
      color: #ccc;
    }

    @media (max-width: 768px) {
      .faq-title h2 {
        font-size: 1.2rem;
        font-weight: 400;
      }
      .faq-title p {
        font-size: 0.9rem;
      }
      .faq-section{
        background: url("../faq.png") center/cover no-repeat;
        padding: 20px;
        padding-top: 3rem;
      }
    }



/* FOOTER START */


  footer {
    background: #fff;
    color: #333;
    padding: 50px 10%;
    border-top: 1px solid #ddd;
    overflow: hidden;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 200px;
    min-width: 200px;
  }

  .footer-logo {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #111;
  }

  .footer-section ul {
    list-style: none;
    padding-left: 0 !important;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: var(--next-color);
    border-bottom: 2px solid var(--next-color);
  }

  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f3f3f3;
    transition: background 0.3s;
  }

  .social-icons a:hover {
    background: var(--main-color);
    color: var(--next-color);
  }

  .social-icons i {
    color: #333;
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #eaeaea;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
    color: #666;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    footer {
      padding: 40px 6%;
    }

    .footer-container {
      flex-direction: column;
    }

    .footer-section {
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
  }



  /* effect */
   h1{
    font-size: clamp(24px, 4vw, 48px);
    font-weight:800;
    letter-spacing: -0.02em;
  }

  /* Keep original markup: span is the dynamic word */
  h1 .typed{
    color: var(--main-color);
    position: relative;
    white-space: nowrap;
    display: inline-block;
    min-width: 6ch; /* avoids layout jump while typing */
    vertical-align: bottom;
  }

  /* blinking caret implemented as pseudo-element */
  h1 .typed::after{
    content: "";
    display:inline-block;
    width:2px;
    height:1.05em;
    background:var(--accent);
    margin-left:6px;
    vertical-align:middle;
    transform-origin: 50% 50%;
    opacity:1;
    /* animation: blink 26s steps(2,end) infinite; */
  }

  @keyframes blink{
    0% { opacity:1 }
    50% { opacity:0 }
    100% { opacity:1 }
  }

  /* optional subtle fade when replacing words */
  .fade-in {
    /* animation: fadeIn 260ms ease-out; */
  }
  @keyframes fadeIn {
    from { opacity: 0.02; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Respect reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    h1 .typed::after { animation:none; }
    .fade-in { animation:none; }
  }

  /* small helper for demo page layout */
  .wrap { padding:40px; text-align:left; }
  p.hint { color:var(--muted); margin-top:8px; font-size:14px; }


  /* count */

      .stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 12px;
        padding: 30px 40px;
    }

    .stat {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        /* padding-right: 20px; */
    }

    .stat h2 {
        font-size: 5.5rem;
        color: #f8b400;
        /* margin-bottom: px; */
    }

    .stat p {
        font-size: 1.6rem;
        color: #555;
        /* letter-spacing: 0.5px; */
        text-align: left;
        max-width: 150px;
    }

    @media (max-width: 768px) {
        .stats {
            gap: 25px;
            width: 100%;
            padding: 15px 20px;
        }
        .stat{
          flex-direction: column;
          gap: 0;
          /* padding-left: 10px !important; */
          justify-content: center;

        }
        .stat h2 {
            font-size: 35px;
        }
        .stat p{
          font-size: 20px;
          text-align: center;
          max-width: 100px;
        }

        .about-section{
          padding: 10px 20px;
          padding-top: 40px;
        }

        .ours{
          margin-top: 2rem;
        }
    }


  /* Second Home Css */

  /* Full Parallax Slider */
.creative-parallax--slider .f-slider-layer {
    position: relative;
}
.creative-parallax--slider .swiper-slide.swiper-slide-active:before {
    content: "";
    width: 475px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 3%;
    transform: translateX(-50%) skew(-20deg, 0deg);
    z-index: 1;
    opacity: .4;
    background-color: #F9B233;
    animation-name: fadeInTwo;
    animation-duration: 2.3s;
    animation-delay: 0s;
}
.creative-parallax--slider .f-slider-layer img{
    width: 100%;
    height: 100vh;
    vertical-align: middle;
    object-fit:cover;
}
.creative-parallax--slider .f-slider-layer:before {
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5;
}
.creative-parallax--slider .f-slider-layer:after{
    background-color: #F9B233;
    content: "";
    width: 280px;
    height: 540px;
    position: absolute;
    top: 60%;
    right: 1.5%;
    transform: translate(-50%, -50%) skew(-20deg, 0deg);
    z-index: 1;
    
}
.creative-parallax--slider .swiper-slide-active .f-slider-layer:after{
    animation-name: fadeInThree;
    animation-duration: 2.3s;
    animation-delay: 0s;
}
.creative-parallax--slider .f-slider-layer .f-slider-one-data{
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 16%;
    width: 40%;
    z-index: 9;
}
.creative-parallax--slider .f-slider-one-data h1{
    font-size: 67px;
    line-height: 87px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0px;
    opacity: 0;
    
}
.creative-parallax--slider .swiper-slide-active .f-slider-one-data h1{
    
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 1s;
}
.f-slider-layer .f-slider-one-data p{
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 55px;
    width: 95%;
    font-weight: 400;
    opacity: 0;
}
 .swiper-slide-active .f-slider-layer  .f-slider-one-data p{
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 1.5s;
}
.f-slider-layer .slide-btn{
    text-decoration: none;
    background-color: #F9B233;
    padding: 18px 70px 18px 50px;
    font-size: 16px;
    font-family: Epilogue, sans-serif;
    color: #000;
    display: inline-flex;
    position: relative;
    border: 2px solid #F9B233;
    font-weight: 700;
    transition: .3s ease-in-out;
    opacity: 0;   
}
 .swiper-slide-active .f-slider-layer .slide-btn{
transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 2s;
}
.f-slider-layer .slide-btn:hover{
    background-color: transparent;
    color: #fff;
}
.f-slider-layer .slide-btn:after{
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: -2px;
    right: -32px;
    background: transparent;
    border-left: 0 solid transparent;
    border-right: 30px solid transparent;
    border-top: 65px solid #F9B233;
}
.f-slider-layer .slide-btn i{
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .5s ease-in-out;

}
.f-slider-layer .slide-btn:hover i{
    color: #000;
    width: 45px;
}
.f-slider-layer .slide-btn i:after{
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: skew(-24deg, 0deg);
    transition: .5s ease-in-out;
}
.f-slider-layer .slide-btn:hover i:after{
    background-color: #F9B233;
}
.swiper-nav {
    position: absolute;
    bottom: 10%;
    right: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.swiper-nav button{
    width: 80px;
    height: 115px;
    background: transparent;
    color: #fff;
    border: 0;
    position: relative;
    z-index: 0;
    border-color: #F9B233;
    transition: .3s ease-in-out;
    cursor: pointer;
}
.swiper-nav button:first-child{
    margin-right: 10px;
}
.swiper-nav button:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 2px solid;
    transform: skew(-23deg, 0deg);
    border-color: #F9B233;
}
.swiper-nav button:hover:before{
    border-color: #c1c1c1;
}
@keyframes fadeInThree{
    0% {
        opacity: 0;
    }
    40% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeInTwo{
    0% {
        opacity: 0;
        transform: translateX(-50%) skew(-20deg, 0deg);
    }

    40% {
        opacity: 0;
        transform: translateX(-30%) skew(-20deg, 0deg);
    }
    100% {
        opacity: .4;
        transform: translateX(-50%) skew(-20deg, 0deg);
    }
}


/* ===================== RESPONSIVE IPAD PRO ============================= */
@media (max-width: 1366px) {
    .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 60%;
        left: 5%;
        top: 50%;
    }
    .creative-parallax--slider .swiper-slide.swiper-slide-active:before{
        width: 265px;
    }
    .creative-parallax--slider .f-slider-layer:after {
               width: 185px;
        height: 75%;
        right: 6.5%;
        top: 50%;
    }
        .creative-parallax--slider .f-slider-one-data h1 {
        font-size: 50px;
        line-height: 60px;
    }

}
/* ===================== RESPONSIVE IPAD ============================= */
@media (max-width: 992px) {
    .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 65%;
    }
    .creative-parallax--slider .f-slider-one-data h1 {
        font-size: 50px;
        line-height: 60px;
    }
}

/* ===================== RESPONSIVE IPAD ============================= */
@media (max-width: 767px) {
        .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 90%;
        top: 50%;
        text-align: center;
    }
    .creative-parallax--slider .f-slider-one-data h1{
            font-size: 30px;
    line-height: 40px;
    }
    .f-slider-layer .f-slider-one-data p{
        font-size: 15px;
        line-height: 25px;
    }
        .creative-parallax--slider .swiper-slide.swiper-slide-active:before {
        right: -100%;
    }
    .creative-parallax--slider .f-slider-layer:after{
        display: none;
    }
    .f-slider-layer .slide-btn{
                padding: 13px 55px 13px 25px;
    }
    .swiper-nav {
        left: 50%;
        transform: translate(-50%, -50%);
        right: unset;
                bottom: 2%;
    }
    .swiper-nav button{
                width: 50px;
        height: 50px;
        border-width: 1px;
                transform: unset;
    }
    .swiper-nav button:before{
        transform: unset;
    }
}
