* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #fff;
    overflow-x: hidden;
}

header {
    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  
}

.logo img {
    height: 60px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    transition: 0.3s;
   /* background: transparent;*/
   background: #fff;
   z-index: 1;
}

.navbar.scrolled {
    background: white;
    transition: 0.3s;
}

.nav-links {
    margin-right: 20px;
    list-style: none;
    display: flex;
}

.nav-links li {
    align-self: center;
    margin: 0 30px;
}

.nav-links a {
    text-decoration: none;
    color: #131313;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffcc00;
}

.schedule-btn {
    background-color: rgb(86, 207, 244);
    color: #333 !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: normal;
    /*display: inline-block;*/
    display: none;
}
.schedule-btn:hover {
    background-color: gold;
}
.hamburger {
    font-size: 20px;
    cursor: pointer;
    display: none;
   
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 7%;
}

.content {
    max-width: 50%;
    margin-top:120px;
}

.title {
    color: #191919;
 /*   min-height: 130px; */
    font-size: 70px;
    font-weight: bold;
}

.subtitle {
    color: #333;
    font-size: 22px;
    margin: 30px 0;
    width: 90%;
}

  
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-btn {
    background: yellowgreen;
    color: #333;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 1s forwards 1.5s;
}


.title,
.subtitle,
.quote-btn {
  opacity: 0; /* Start hidden */
  animation: slideInLeft 1s ease forwards;
}

/* Optional: Add delay for a smooth staggered entrance */
.title:nth-of-type(2) {
  animation-delay: 0.2s;
}

.subtitle {
  animation-delay: 0.4s;
}

.quote-btn {
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  


.image {
    margin-top:120px;
    opacity: 0;
    animation: slideInUp 1s ease forwards;
    animation-delay: 0.8s; /* You can adjust delay as needed */
    will-change: transform, opacity;
}

.image img {
    max-width: 800px;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .logo img{
        height: 42px;       
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 17px;
    }

    .hamburger {  
        color: rgb(99, 99, 99);
        display: block;
        font-size: 25px;
        height: max-content;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 17px;
      
    }

    .navbar{
       align-items: normal; 
       padding: 0;
    }

    .nav-links {
        margin: 0;
        padding: 0;
        margin-top: 120px;
        position: absolute;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;   
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 20px;
        margin: 10px 0;
    }


    .title{
        font-size: 35px;
        max-width: 100%;
        text-align: center;
    }
    
    .subtitle{
      margin-left: auto;
      margin-right: auto;
      margin-top: 20px;
      margin-bottom: 30px;  
      font-size:13px;   
    }
    
    .container {
        padding: 0;
        flex-direction: column;
        text-align: center;
    }   

    .content {
        padding: 20px;
        max-width: 100%;
    }
    
    .image {
        margin-top:20px;
    }


    .image img {
        max-width: 300px;
        margin-top: 20px;
    }
}



.who-we-are-section {
    background-color: #edf0f2;
      /*background-color: #fff;*/
    padding: 80px 3%;
}

.who-we-are-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 5%;
}

.who-we-are-heading {
    font-size: 40px;
    color: black;
    text-align: left;
    margin-top:10px;
    margin-bottom: 30px;
}

.who-we-are-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.who-we-are-text {
    max-width: 50%;
}

.who-we-are-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-size: 50px;
    letter-spacing: 0.5px;
    /*font-weight: bold;*/
    color: black;
    margin-bottom: 20px;
    animation: fadeSlideUp 1s ease forwards;
}

.who-we-are-description {
    font-size: 20px;
    color: black;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeSlideUp 1s ease forwards;
}

/* Button hover effect */
.read-more-btn {
  background: yellowgreen;
  font-size: 16px;
  padding: 12px 20px;
  color: #333;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #8bc34a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0,0,0,0.2);
}

/* Extra smooth fade/slide for title & text */


  /*.who-we-are-image {*/
  /*    background: white;*/
  /*}*/
  
/* Base animation styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image zoom-in */
.who-we-are-image img {
  max-width: 90%;
  height: auto;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.who-we-are-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
    .who-we-are-content {
        flex-direction: column;
        text-align: center;
    }

    .who-we-are-text {
        max-width: 100%;
    }

    .who-we-are-title { 
        font-size: 35px;
    }

    .who-we-are-description {
        margin: 10px;
        font-size: 16px;
    }
}



/* ===== Background Glow Animation ===== */

/*
.gradient-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,0,150,0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0,255,255,0.08), transparent 60%),
              radial-gradient(circle at 50% 50%, rgba(255,255,0,0.03), transparent 80%);
  animation: bgMove 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

*/
/* ===== Section Container ===== */
.our-services-section {
  position: relative;
  padding: 100px 7%;
  background: linear-gradient(135deg, #121212, #1a1a1a, #121212); /* premium deep dark gradient */
  text-align: center;
  overflow: hidden;
 
  justify-self: center;
  /*
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.5),
    inset 0 2px 10px rgba(255,255,255,0.03);
    */
  transform-style: preserve-3d;
  animation: bgMove 10s ease-in-out infinite alternate;

}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* ===== Tablet View (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .our-services-section {
    padding: 80px 5%;
    margin: 20px;
    border-radius: 25px;
  }
}

/* ===== Mobile View (up to 767px) ===== */
@media (max-width: 767px) {
  .our-services-section {
    padding: 60px 20px;
    margin: 5px;
    border-radius: 40px;
    box-shadow: 
      0 6px 12px rgba(0,0,0,0.3),
      inset 0 1px 6px rgba(255,255,255,0.02);
  }
}

/* ===== Heading Fade-in ===== */
.our-services-heading {
  position: relative;
  z-index: 1;
  width: 70%;
  text-align: left;
  font-size: 60px;
  color: whitesmoke;
  font-weight: 300;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* ===== Cards Layout ===== */
.our-services-cards {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== Service Card ===== */
.service-card {
  width: 280px;

  background: rgba(255,255,255,0.03); /* subtle transparent glass look */
    background: linear-gradient(135deg, #2a2929, #232121, #191919); /* premium deep dark gradient */

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 30px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

/* Neon animated border */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(90deg, #ff9800, #ff2e63, #4facfe, #00f2fe);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease, background-position 2s linear;
}

/* Hover: Border glow + tilt + shadow */
.service-card:hover {
  transform: translateY(-10px) scale(1.03) rotateY(3deg) rotateX(3deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0px rgba(255,255,255,0.05);
}
.service-card:hover::before {
  opacity: 1;
  background-position: 100% 0;
}

/* ===== Card Image Zoom on Hover ===== */
.service-card img {
  width: 70px;
  margin-bottom: 15px;

  /* ✅ Keep icon white */
  filter: brightness(0) invert(1); 

  /* Smooth hover animation */
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* ✅ On hover → scale & glow more */
.service-card:hover img {
  transform: scale(1.15) rotate(2deg);
}



/* ===== Text Styling ===== */
.service-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;

  /* ✅ Gradient text */
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* ✅ 3D depth + soft glow */
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.2),
    0px 0px 8px rgba(0, 255, 200, 0.2);
}

.service-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ===== Animate on Scroll (hidden state) ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* When visible */
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}




/* Ensure swiper slides inherit your card styles */
.swiper {
  margin-top: 80px;
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: yellowgreen;
  opacity: 1;
}

@media (max-width: 768px) {
    .our-services-cards {
        flex-direction: column;
        align-items: center;
    }

    .our-services-heading {
        width: 100%;
        font-size: 45px;
        text-align: center;
    }
   
}


/* Industries Section */
.industry-section {
padding: 50px 20px;
max-width: 1200px;
margin: auto;
text-align: center;
}

.industry-title {
text-align: center;
color: #131313;
font-size: 48px;
font-weight: normal;
max-width: 800px;
margin: auto;
margin-bottom: 20px;
margin-top: 60px;
}

.industry-subtitle {
text-align: center;
font-size: 18px;
color: #555;
max-width: 800px;
margin: auto;
margin-bottom: 40px;
margin-top: 40px;

}

.industry-grid {
width: 100%;
display: grid;
margin-bottom: 60px;
grid-template-columns: repeat(5, 1fr); /* 5 columns for large screens */
gap: 30px;
justify-items: center;
}

.industry-item {
display: flex;
align-items: center;
background: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 250px;
}

.industry-item img {
width: 60px;
height: 60px;
}

.industry-name {
margin-left: 10px;
font-size: 16px;
font-weight: bold;
color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {  /* Medium screens (Tablets) */
.industry-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
}
}

@media (max-width: 768px) {  /* Small screens (Mobile) */
.industry-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
}

.industry-title {
    font-size: 40px;
    padding: 10px;
}

.industry-subtitle {
    font-size: 16px;
}


.industry-item {
    display: block;
}

.industry-item img {
    width: 50px;
    height: 50px;
    }
    
.industry-name {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    }  
}


.how-we-work {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;

  /* 3D Mesh Gradient Background */
  
  background: radial-gradient(circle at 30% 20%, rgba(0, 170, 102, 0.15), transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(150, 150, 150, 0.1), transparent 40%),
              linear-gradient(135deg, #f9f9f9, #f4f6f9);
              
}

.curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100px;
}

.curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
}

/* === SECTION HEADING === */
.section-header {
  text-align: center;
  padding: 80px 20px 40px;
}

.section-header h2 {
  font-size: 56px;
  font-weight: 700;
     background: linear-gradient(90deg, #151615, #3b3c3c);
  /*
   background: linear-gradient(90deg, #7ed957, #3ccfaf);
   */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Vertical connector line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #00aa66, #ccc);
  transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px 30px;
}

/* Left & right alignment */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Dots on connector */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 40px;
  width: 20px;
  height: 20px;
  background: #00aa66;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 170, 102, 0.3);
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

/* === Card Styling === */
.timeline-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 30px;
  transition: all 0.4s ease;
}

.timeline-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.timeline-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #00aa66;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* === Animation (fade & slide) === */
.timeline-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* ✅ RESPONSIVE OPTIMIZATION */
/* ============================= */

/* ✅ Tablet view */
@media (max-width: 1024px) {
  .section-header h2 {
    font-size: 46px;
  }

  .section-header p {
    font-size: 16px;
    max-width: 90%;
  }

  .timeline-item {
    padding: 30px 20px;
  }
}

/* ✅ Mobile view */
@media (max-width: 768px) {
  .how-we-work {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-header {
    padding: 60px 15px 30px;
  }

  .section-header h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 15px;
    max-width: 90%;
  }

  /* Timeline line moves left */
  .timeline::before {
    left: 15px;
    width: 3px;
  }

  /* Timeline items full width */
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left;
    margin-bottom: 40px;
  }

  /* Dot position fixed */
  .timeline-item::before {
    left: 0;
    right: auto;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card h3 {
    font-size: 20px;
  }

  .timeline-card p {
    font-size: 15px;
  }
}

/* ✅ Extra small phones */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 60px;
  }

  .section-header p {
    font-size: 14px;
  }

  .timeline-card {
    padding: 18px;
  }

  .timeline-card h3 {
    font-size: 18px;
  }

  .timeline-card p {
    font-size: 14px;
  }
}

  
/* ===== MAIN SECTION ===== */
.way-of-building {
  justify-self: center;
  max-width: 1400px;
  padding: 100px 1%;
  text-align: center;
  position: relative;
}

/* ===== HEADING ===== */
.section-heading h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2e2c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}
.heading-subtext {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

/* ===== SLIDER CONTAINER ===== */
.slider-container {
  position: relative;
  margin: 60px auto 0;
  overflow: hidden;

  border-radius: 20px;
  padding: 30px;

  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border: 2px solid rgba(126, 217, 87, 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(126, 217, 87, 0.08);

  transform-style: preserve-3d;
  perspective: 1200px;
  transition: all 0.4s ease;
}

.slider-container:hover {
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(126, 217, 87, 0.15);
  transform: translateY(-5px);
}

/* ===== SLIDER TRACK ===== */
.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* ===== EACH SLIDE ===== */
.slider-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 40px;
}
.slider-slide:nth-child(even) {
  flex-direction: row-reverse;
}

/* ===== TEXT SECTION ===== */
.build-text {
  flex: 1;
  text-align: left;
}
.build-text h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.build-text p {
  font-size: 16px;
  color: #e8e5e5;
  line-height: 1.7;
  margin-bottom: 15px;
}
.build-text a {
  color: #7ed957;
  font-weight: 600;
  text-decoration: none;
}
blockquote {
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid #7ed957;
  font-style: italic;
  color: #bbb;
}

/* ===== AUTHOR ===== */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.author strong {
  font-size: 15px;
  color: #34a840;
}
.author span {
  font-size: 13px;
  color: #777777;
}

/* ===== IMAGE SECTION ===== */
.build-image {
  flex: 1;
  text-align: center;
}
.build-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}
.build-image img:hover {
  transform: scale(1.05);
}

/* ===== SLIDER BUTTONS ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}
.slider-btn:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* ===== RESPONSIVE OPTIMIZATION ===== */
@media (max-width: 1024px) {
  .slider-slide { gap: 40px; }
  .build-text h3 { font-size: 34px; }
  .section-heading h2 { font-size: 36px; }
}

@media (max-width: 768px) {
  .slider-slide {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }
  .slider-slide:nth-child(even) {
    flex-direction: column; /* Keep same order */
  }

  .build-text {
    order: 2;
    text-align: center;
  }

  .build-image {
    order: 1;
    text-align: center;
  }

  .build-text h3 {
    font-size: 26px;
    line-height: 1.3;
  }

  .build-text p {
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto 15px;
  }

  blockquote {
    margin: 15px auto;
    max-width: 85%;
    text-align: center;
    padding-left: 0;
    border-left: none;
    font-size: 14px;
  }

  .author {
    justify-content: center;
  }

  .build-image img {
    max-width: 85%;
  }

  .section-heading h2 {
    font-size: 28px;
  }
  .heading-subtext {
    font-size: 14px;
    padding: 0 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}



/* Portfolio Section */
/*.portfolio-section {*/
/*  padding: 60px 20px;*/
/*  text-align: center;*/
/*}*/

/*.portfolio-section h2 {*/
/*  justify-self: center;*/
/*  font-weight: normal;*/
/*  width: 50%;  */
/*  font-size: 3.5rem;*/
/*  margin-bottom: 40px;*/
/*  color: #1f2937;*/
/*}*/


/*.portfolio-section p {*/
/*  justify-self: center;*/
/*  font-weight: normal;*/
/*  width: 60%;  */
/*  font-size: 1.0rem;*/
/*  color: #6b7280;*/
/*  margin-bottom: 80px;*/
/*}*/


/*.portfolio-grid {*/
/*  display: grid;*/
/*  gap: 70px;*/
/*  grid-template-columns: 1fr;*/
/*    max-width: 1200px;*/
/*  margin: 0 auto;*/
/*}*/

/*@media (min-width: 768px) {*/
/*  .portfolio-grid {*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*  }*/
/*}*/


/*.card {*/
/*  border-radius: 40px;*/
/*  padding: 10px;*/
/*  color: white;*/
/*  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: space-between;*/
/*}*/

/*.card-image {*/
/*    align-self: center;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border-radius: 15px;*/
/*    overflow: hidden;*/
/*    margin: 5px;*/
/*  }*/

/*.card-image img {*/
/*  width: 370px;  */
/*  height: auto;*/
/*  display: block;*/
/*}*/

/*.card h3 {*/
/*  color: #000;*/
/*  font-weight: bold;*/
/*  font-size: 1.8rem;*/
/*  margin-top: 30px;*/
/*}*/


/*@media (max-width: 768px) {*/
/*    .portfolio-section h2 {*/
/*        font-size: 2.5rem;*/
/*        width: 100%;*/
/*      }*/

/*      .portfolio-section p {*/
/*        width: 100%;  */
/*        font-size: 0.9rem;*/
/*      }*/

/*      .card {*/
        
/*        padding: 30px 10px;*/
/*      }*/

/*      .card-image img {*/
/*        width: 250px;  */
/*        height: auto;*/
/*        display: block;*/
/*      }*/
      
/*}*/



/*.card p {*/
/*  width: 100%;*/
/*  color: #191919;*/
/*  font-size: 0.95rem;*/
/*  line-height: 1.4;*/
/*  padding-left: 30px;*/
/*  padding-right: 30px;*/
/*  margin-bottom: 30px;*/
/*  margin-top: 20px;*/
/*  align-self: center;*/
/*}*/

/* Gradients */
/*.gradient-1 {*/
/*  background: linear-gradient(90deg, #cdffd8, #94b9ff);*/
/*}*/

/*.gradient-2 {*/
/*  background: linear-gradient(90deg, #fff7ad, #ffa9f9);*/
/*}*/

/*.gradient-3 {*/
/*  background: linear-gradient(90deg, #c2d6ef, #b8a9ff);*/
/*}*/

/*.gradient-4 {*/
/*  background: linear-gradient(90deg, #e9f8ae, #a7efb3);*/
/*}*/

/*.store-btns{*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    display: flex;*/
/*}*/
/*.playstore-icon{*/
/*    align-self: center;*/
/*    height: 55px;*/
/*    width: 150px;*/
/*}*/

/*.appstore-icon{*/
/*    border-radius: 5px;*/
/*    background-color: white;*/
/*    height: 40px;*/
/*    width: 120px;*/
/*}*/


.demo-button {
    margin: auto;
    flex: 1;
    display: inline-block;
    padding: 10px 20px;
    background-color: #273747; /* Bootstrap blue */
    color: #fff;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.demo-button:hover {
background-color: #1770cf;
}

.collab-section {
  background-color: #f1f1f1;
color: white;
padding: 40px 60px;
}

.collab-data{
justify-self: center;
display: flex;
align-items: center;
justify-content: center; 
max-width: 1200px;
} 

.collab-image {
flex: 1;
max-width: 40%;
}

.collab-image img {
width: 100%;
height: auto;
border-radius: 12px;
}

.collab-content {
flex: 1;
padding-left: 60px;
}

.collab-title {
  color: #121212;
font-size: 50px;
font-weight: bold;
margin-bottom: 20px;
}

.collab-description {
font-size: 16px;
color: #121212;
margin-bottom: 30px;
line-height: 1.6;
}

.collab-button {
padding: 12px 28px;
border: 2px solid white;
background-color: #47d40f;
color: rgb(255, 255, 255);
font-size: 16px;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s ease;
}

.collab-button:hover {
background-color: white;
color: black;
}

@media (max-width: 768px) {

.collab-data {
  flex-direction: column;
  padding: 0;
}
.collab-image, .collab-content {
  max-width: 100%;
  padding: 0;
}
.collab-content {
  padding-top: 30px;
}
}

.modern-footer {
background-color: #131313;
color: #e2e8f0;
font-family: 'Segoe UI', sans-serif;
padding: 60px 20px 20px;

}

.modern-footer-container {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 40px;
}

.modern-footer-section h4 {
font-size: 1.1rem;
margin-bottom: 15px;
color: #facc15;
}

.modern-footer-section p,
.modern-footer-section a {
font-size: 0.95rem;
color: #94a3b8;
line-height: 1.7;
text-decoration: none;
}

.modern-footer-section a:hover {
color: #facc15;
text-decoration: underline;
}

.brand-logo {
width: 160px;
margin-bottom: 15px;
}

.brand-tagline {
font-size: 0.95rem;
color: #cbd5e1;
margin-top: 10px;
}

.modern-footer-section ul {
list-style: none;
padding: 0;
}

.modern-footer-section ul li {
margin-bottom: 10px;
}

.social-icon {
width: 24px;
height: 24px;
color: #ffffff;
transition: color 0.3s ease, transform 0.3s ease;
}

.modern-social-icons a {
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
border-radius: 50%;
background-color: #1e293b;
}

.modern-social-icons a:hover .social-icon {
color: #facc15;
transform: scale(1.1);
}

.modern-social-icons {
display: flex;
gap: 15px;
margin-top: 10px;
}

.modern-footer-bottom {
text-align: center;
margin-top: 40px;
font-size: 0.85rem;
color: #64748b;
}






.tech-stack-section {
  background: linear-gradient(145deg, #fff, #f8f8f8);
  padding: 80px 5%;
  text-align: center;
}

.tech-header h4 {
  color: #63b189;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 25px;
  margin-bottom: 10px;
}
.tech-header h2 {
  font-size: 40px;
  color: #222;
  font-weight: 800;
}
.tech-header span {
  background: linear-gradient(90deg, #7ed957, #3ccfaf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-header p {
  max-width: 600px;
  margin: 15px auto 40px;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

/* Chips */
.tech-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tech-chips .chip {
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 14px;
  color: #444;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.tech-chips .chip.active,
.tech-chips .chip:hover {
  background: linear-gradient(90deg, #7ed957, #3ccfaf);
  color: #fff;
  box-shadow: 0 5px 12px rgba(126, 217, 87, 0.2);
}

/* Carousel */
.tech-carousel {
  justify-self: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}
.tech-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

/* Tech Card */
.tech-card {
  flex: 0 0 240px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}
.tech-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 6px;
}
.tech-card p {
  font-size: 14px;
  color: #666;
}
.tech-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(126, 217, 87, 0.3);
}

/* Carousel Nav */
.carousel-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.carousel-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.05);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-nav button:hover {
  background: #7ed957;
  color: #fff;
}

/* Responsive */
@media(max-width:768px) {
  .tech-card {
    flex: 0 0 200px;
  }
  .tech-header h2 { font-size: 32px; }
}
