@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    background-color: #000;
    font-family: Poppins;
    color: #f2f2f2;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('fonts/InstrumentSerif-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
:root{
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;

    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;
}


/* Header */
/* Header */
header {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: #000;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo */
.logo {
  font-weight: bold;
  font-size: 1.8rem;
  background: linear-gradient(
    90deg,
    #00a8ff,
    #6c63ff,
    #b245ff,
    #ff4ecd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Reset */
a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Navigation links */
.nav-links a {
  position: relative;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FF4533;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* now it will be just below the button */
  left: 0;
  background-color: #fff;
  min-width: 220px;
  flex-direction: column;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

/* 👇 This is the KEY — stable open while hovering anywhere on dropdown */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Link styles */
.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  color: #444;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.dropdown-content a i {
  width: 20px;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  transform: translateX(5px);
  color: #000;
}


/* Hamburger Menu */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    background-color: #fff;
    width: 240px;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    display: none;
    gap: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    display: flex;
    animation: dropdown 0.3s ease forwards;
  }

  .dropdown-content {
    position: relative;
    box-shadow: none;
    padding: 10px 0 0;
    background-color: transparent;
  }

  .dropdown-content a:hover {
    background-color: rgba(0,0,0,0.05);
  }
}

/* Animations */
@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*ikkada description*/

.about-369 {
  padding: 80px 20px;
  color: #111;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: auto;
}

.about-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
 background: linear-gradient(
    90deg,
    #ff4d4d,  /* red */
    #ff9a3c,  /* orange */
    #f7d046,  /* yellow */
    #3cd39e,  /* green */
    #3ca7d9,  /* blue */
    #a25cff   /* purple */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #fff;
}

.about-highlight {
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    #f7d046,  /* yellow */
    #d92f2f,  /* green */
    #ff00ff   /* purple */
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



/*dheeni mundhu images petta smoothening ki ee scroll effect*/


/* carousel ante services and sliders section ikkada*/
.carousel{
    position: relative;
    height: 800px;
    overflow: hidden;
    margin-top: -50px;
}
.carousel .list{
    position: absolute;
    width: 1140px;
    max-width: 90%;
    height: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.carousel .list .item{
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    font-size: 15px;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel .list .item:nth-child(n + 6){
    opacity: 0;
}
.carousel .list .item:nth-child(2){
    z-index: 10;
    transform: translateX(0);
}
.carousel .list .item img{
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
}

.carousel .list .item .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel .list .item:nth-child(2) .introduce{
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    transition: opacity 0.5s;
}
.carousel .list .item .introduce .title{
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
    color: #d4a3a7;
}
.carousel .list .item .introduce .topic {
    font-size: 4em;
    font-weight: 500;
   background: linear-gradient(90deg, #ff4d9e, #ff9a3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.carousel .list .item .introduce .des{
    font-size: small;
    color: #fff;
}
.carousel .list .item .introduce .seeMore{
    font-family: Poppins;
    color: #fff;
    margin-top: 1.2em;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #ff4d4d;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 3px;
    transition: background 0.5s;
}
.carousel .list .item .introduce .seeMore:hover{
   color: #fff;

}
.carousel .list .item:nth-child(1){
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}
.carousel .list .item:nth-child(3){
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4){
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5){
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}
/* animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        transform: translateY(-30px);
        filter: blur(10px);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
.carousel .list .item:nth-child(2) .introduce .topic{
    animation-delay: 1.2s;
}
.carousel .list .item:nth-child(2) .introduce .des{
    animation-delay: 1.4s;
}
.carousel .list .item:nth-child(2) .introduce .seeMore{
    animation-delay: 1.6s;
}
/* next click */
.carousel.next .item:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}
.carousel.next .item:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}
.carousel.next .item:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}
.carousel.next .item:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}
/* previous */
.carousel.prev .list .item:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);        
    }
}

/* detail  */
.carousel .list .item .detail{
    opacity: 0;
    pointer-events: none;
}
/* showDetail */
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4){
    left: 100%;
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2){
    width: 100%;
}
.carousel.showDetail .list .item:nth-child(2) .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) img{
    right: 50%;
}
.carousel.showDetail .list .item:nth-child(2) .detail{
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title{
    font-size: 4em;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid #5553;
    margin-top: 20px;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div{
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(1){
    font-weight: bold;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button{
    font-family: Poppins;
    background-color:#DC422A;
    border: 1px solid #fff;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button:nth-child(2){
    background-color: #693EFF;
    color: #eee;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .title,
.carousel.showDetail .list .item:nth-child(2) .detail  .des,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .des{
    animation-delay: 1.2s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    animation-delay: 1.4s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    animation-delay: 1.6s;
}
.arrows{
    position: absolute;
    bottom:px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
}
#prev,
#next{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #5555;
    font-size: large;
    bottom: 20%;
    left: 10%;
}
#next{
    left: unset;
    right: 10%;
}
#back{
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #555;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    /* opacity: 0; */
    transition: opacity 0.5s;
    color: #ffffff;
}
.carousel.showDetail #back{
    opacity: 1;
}
.carousel.showDetail #prev,
.carousel.showDetail #next{
    opacity: 0;
    pointer-events: none;
}
.carousel::before{
    width: 500px;
    height: 300px;
    content: '';
    background-image: linear-gradient(70deg, #DC422A, blue);
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}
.carousel.showDetail::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}
@media screen and (max-width: 991px){
    /* ipad, tablets */
    .carousel .list .item{
        width: 90%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .specifications{
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .title{
        font-size: 2em;
    }
}
@media screen and (max-width: 767px){
    /* mobile */
    .carousel{
        height: 600px;
    }
    .carousel .list .item{
        width: 100%;
        font-size: 10px;
    }
    
    .carousel .list{
        height: 100%;
    }
    .carousel .list .item:nth-child(2) .introduce{
        width: 50%;
    }
    
    .carousel .list .item img{
        width: 40%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail{
        backdrop-filter: blur(10px);
        font-size: small;
    }
    .carousel .list .item:nth-child(2) .introduce .des,
    .carousel.showDetail .list .item:nth-child(2) .detail .des{
        height: 100px;
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .checkout{
        display: flex;
        width: max-content;
        float: right;
    }
}

/* === SUBTLE LUXURY LIGHTING === */
.modern-hero {
  position: relative;
  overflow: hidden;
}

/* Shared styles */
.modern-hero::before,
.modern-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* 4-SIDE PREMIUM EDGE LIGHT */
.modern-hero::before {
  background:
    linear-gradient(to bottom, rgba(236, 187, 52, 0.18), transparent 40%),  /* top */
    linear-gradient(to top, rgba(255, 240, 200, 0.15), transparent 40%),    /* bottom */
    linear-gradient(to right, rgba(255, 240, 200, 0.12), transparent 40%),  /* left */
    linear-gradient(to left, rgba(255, 240, 200, 0.12), transparent 40%);   /* right */
  backdrop-filter: blur(2px);
}

/* CENTER SOFT SPOTLIGHT */
.modern-hero::after {
  background: radial-gradient(
    circle at center,
    rgba(255, 240, 200, 0.22) 0%,
    rgba(255, 240, 200, 0.07) 40%,
    transparent 70%
  );
  filter: blur(40px);
  opacity: 0.9;
}


/* hero section ra text typing try chey */

/* === Modern Hero Section === */
.modern-hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 0 20px;
  background-image: url(''); /* ✅ Corrected backslash */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

/* Optional pseudo-effect (currently inactive, kept for future use) */
.modern-hero::before {
  content: "";
  display: none;
}

/* === Big Heading Text === */
.big-text {
  font-size: clamp(6rem, 10vw, 10rem); /* ✅ Scales well */
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 auto 8px;
  margin-top: -60px;
}

/* === Changing Word Animation Wrapper === */
.changing-word {
  display: inline-block;
  transition: opacity 0.2s ease-in-out, transform 0.3s ease;
  will-change: opacity, transform;
}

/* === Typing Text Paragraph === */
.hero-typing-text {
  font-size: clamp(1rem, 2.5vw, 1.4rem); /* ✅ Responsive font */
  max-width: 90%;
  margin: 10px auto 0;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

/* === Media Queries === */

/* Tablet and below */
@media screen and (max-width: 991px) {
  .modern-hero {
    padding: 0 5%;
  }

  .modern-hero {
    min-height: 80vh;
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
}

/* Mobile - smaller devices */
@media (max-width: 768px) {
  .modern-hero {
    min-height: 70vh;
  }

  .big-text {
    font-size: clamp(2rem, 12vw, 4rem);
  }
}

@media (max-width: 480px) {
  .big-text {
    font-size: clamp(1.8rem, 14vw, 3.5rem);
  }

  .hero-typing-text {
    font-size: 1rem;
  }
}

/*testimonials ikkada*/

 .testimonial-section {
      padding: 80px 20px;
      text-align: center;
    }

  .testimonial-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(
    90deg,
    #b7e10d,
    #6c63ff,
    #7dff45,
    #ff00b7
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}


    .testimonial-subheading {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 50px;
    }

    .testimonial-slider {
      position: relative;
      max-width: 1100px;
      margin: auto;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial-card {
      display: none;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 20px;
      width: 100%;
      opacity: 0;
      transform: translateY(20px);
      animation: none;
    }

    .testimonial-card.active {
      display: flex;
      opacity: 1;
      animation: fadeInUp 0.6s ease forwards;
    }

    .testimonial-image-wrapper {
      position: relative;
      width: 200px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: zoomIn 0.6s ease forwards;
    }

    .testimonial-blob {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #2a57f3;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      z-index: 0;
      animation: blobRotate 10s linear infinite;
    }

    .testimonial-image {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      border: 6px solid #fff;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      position: relative;
      z-index: 1;
    }

    .testimonial-content {
      max-width: 550px;
      text-align: left;
      animation: fadeContent 0.6s ease forwards;
    }

    .testimonial-text {
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .testimonial-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #FF4533;
      animation: slideInLeft 0.6s ease forwards;
    }

    .testimonial-role {
      color: #ffff;
      font-size: 0.95rem;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .testimonial-nav button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: #e0e0e0;
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: background 0.3s ease;
    }

    .testimonial-nav button:hover {
      background: #ccc;
    }

    .testimonial-dots {
      margin-top: 20px;
    }

    .testimonial-dots span {
      height: 10px;
      width: 10px;
      margin: 0 6px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
    }

    .testimonial-dots .active-dot {
      background-color: #2a57f3;
    }

    @keyframes blobRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeContent {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 768px) {
      .testimonial-card {
        flex-direction: column;
        text-align: center;
      }
      .testimonial-content {
        text-align: center;
      }
    }

    /*ikkada footer */
   .footer {
  background: linear-gradient(135deg, rgba(105, 62, 255, 0.85), rgba(220, 66, 42, 0.85));
  backdrop-filter: blur(12px);
  color: #eee;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  border-top-left-radius: 120px;
}
  .footer-container {
    max-width: 1140px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 300px;
  }

  .footer-about h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
  }

  .footer-about p {
    font-size: 1rem;
    color: #f1f1f1;
    line-height: 1.6;
    max-width: 90%;
  }

  .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
  }

  .social-icons {
    display: flex;
    gap: 20px;
  }

  .social-icons a {
    color: #f1f1f1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #111;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #111;
    border-top: 1px solid #000;
    margin-top: 40px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .footer-about p {
      max-width: 100%;
    }

    .footer-socials {
      align-items: center;
    }

    .social-icons {
      justify-content: center;
    }
  }