
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');

/* logo start */
/* .navbar-brand img {
    max-height: 80px;
    transition: transform 0.3s ease-in-out; 
  }

  .navbar-brand img:hover {
    transform: scale(1.1); 
  }


.nav-item .nav-link:hover {
  color: #ED1C24; 
}

.last{
    color:#ED1C24   
}

.front{
    color:  #595959
}
.carousel-item {
    font-family: "Signika Negative", sans-serif;
    font-weight: 800;

}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand img {
    height: 60px;
    transition: height 0.3s ease-in-out;
}

.navbar.scrolled .navbar-brand img {
    height: 45px;
}

      
        .navbar-nav {
        width: 100%;
        justify-content: space-between;
       }
       .nav-item .dropdown-menu {
        min-width: 200px;
      }
       .navbar-toggler {
        border: none;
        outline: none;
      }

       
   .dropdown-menu {
  animation: bounceDown 0.4s ease-in-out;
}

@keyframes bounceDown {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { transform: translateY(5px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
} */

        /* Dropdown Styling end */




        /* CROUSEL STArt */
   
  #autoplayCarousel .carousel-item {
    height: 86vh; /* Full viewport height */
    margin-top: 101px;
  }

  #autoplayCarousel .carousel-item img {
    object-fit: cover; /* Crop image to fill the container */
    height: 100%;
    width: 100%;
  }

  


       /* about */

       .container-custom {
        background: white;
        padding: 20px;
        max-width: 1100px;
        /* box-shadow: 0px 10px 10px rgb(0, 0, 0); */        
        border-radius: 10px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        font-family: Arial, sans-serif;
        margin: 50px auto;
        transition: transform 0.3s ease-in-out;
    
        }
    .container-custom:hover {
        transform: translateY(-5px);
    }
    
    .btn-custom {
        border: 1px solid black;
        background-color: #a0e3b2;
        padding: 8px 15px;
        text-transform: uppercase;
    }
    .btn-outline-custom {
        border: 1px solid black;
        padding: 8px 15px;
        text-transform: uppercase;
        background: white;
    }

    .ameya-head{
            font-size: 55px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            /* background: linear-gradient(45deg, #387aebcf, #556270); */
                  /* background: linear-gradient(45deg, #DF332D, #556270); */
                 background-color: #DF332D;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
            margin-top: 20px;
            font-family: 'Poppins', sans-serif;   
            
        }

        .index-image{
          height: 100px;
        }
    

     .container-custom {
        text-align: justify;
     }
     .container-custom p{
        font-size: 17px;
     }
      @media (max-width: 768px) {
        .container-custom p{
         font-size: 20px; 
        }
    }
     .btn-company a{
        text-decoration: none;
        background-color: rgb(111, 109, 109);
        color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 10px;

     }
     .btn-company a:hover{
        background-color: #ED1C24;
        color: white;
        transition-duration: 1s;
        /* transition: width 0.5s ease-in-out; */
     }






     













     .features-row {
      margin: 30px 0;
    }
  
    .feature-card {
      background: white;
      border-radius: 10px;
      padding: 30px 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }
  
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      border-color: #e63946;
    }
  
    .feature-icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #e63946, #ff6b6b);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 30px;
      transition: all 0.3s ease;
    }
  
    .feature-card:hover .feature-icon-wrapper {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
    }
  
    .feature-title {
      color: #333;
      font-weight: 600;
      margin-bottom: 15px;
      position: relative;
      padding-bottom: 10px;
    }
  
    .feature-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: #e63946;
      transition: all 0.3s ease;
    }
  
    .feature-card:hover .feature-title:after {
      width: 80px;
    }
  
    .feature-description {
      color: #666;
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .feature-hover-content {
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      padding: 20px;
      background: #e63946;
      color: white;
      transition: all 0.3s ease;
      opacity: 0;
    }
  
    .feature-card:hover .feature-hover-content {
      bottom: 0;
      opacity: 1;
    }
  
    .feature-link {
      color: white;
      text-decoration: none;
      font-weight: 500;
      display: inline-block;
    }
  
    .feature-link i {
      margin-left: 5px;
      transition: all 0.3s ease;
    }
  
    .feature-link:hover i {
      transform: translateX(5px);
    }
  




/* FIELD OR EXPERTIES */
/* @media (max-width: 768px) {
    .field-experties{
        height: 200vh; 
    }
} */



.field-experties{
    height: auto;
 }
 
 .field-cards {
     position: relative;
     overflow: hidden;
   }
   
   .overlay {
     position: relative;
     width: 100%;
     height: 250px;
   }
   
   .overlay img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: opacity 0.3s ease-in-out;
   }
   
   .field-card-text {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: white;
     font-size: 1.2rem;
     font-weight: bold;
     text-align: center;
     opacity: 0;
     transition: opacity 0.3s ease-in-out;
     z-index: 2;
     width: 80%;
   }
   
   /* Black overlay effect on hover */
   .field-cards::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0); /* Initially transparent */
     transition: background 0.3s ease-in-out;
     z-index: 1;
   }
   
   .field-cards:hover::after {
     background: rgba(0, 0, 0, 0.6); /* Black overlay with opacity */
   }
   
   .field-cards:hover .field-card-text {
     opacity: 1;
   }
   
 
 
   /* project-crousel */
   .crousel-main {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 60vh; */
    background-color: #fff;
}
.crousel-body {
    width: 80%;
    overflow: hidden;
  
}
.carousel2 {
    position: relative;
    display: flex;
    align-items: center;
}
.carousel-container {
    display: flex;
    transition: transform 0.4s  ease-in ;
}
.carousel-container img {
    width: 25%; /* Ek time pe 4 images dikhengi */
    flex: 0 0 25%;
    /* object-fit: cover; */
    border-radius: 8%;

    height: 300px;
    object-fit: fill;
 
    
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.prev { left: 20px; padding: 8px; color: rgb(255, 0, 0); background-color: #ffffff; border-radius: 50%;}
.next { right: 20px; padding: 8px; color: rgb(255, 3, 3); background-color: #ffffff; border-radius: 50%; }


@media (max-width: 768px) {
    .carousel-container img {
      width: 50%;
    }
  }
  
  /* Mobile View: Show 1 image */
  @media (max-width: 480px) {
    .carousel-container img {
      width: 100%;
    }
  }
/* end */
 
/*facility/ capicity   */

.section-title-facility {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #343a40;
}
.facility-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: transform 0.3s;
    text-align: center;
}
.facility-item:hover {
    transform: translateY(-5px);
}
.capacity {
    background: #343a40;
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .facility-item {
        padding: 15px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .capacity {
        padding: 20px;
    }
    .capacity h2 {
        font-size: 1.5rem;
    }
    .capacity h4 {
        font-size: 1rem;
    }
}

.index-text{
    font-weight: 400;
}


.index-image {
    height: 110vh; /* Default height for larger screens */
    width: 100%;   /* Full width */
    
}

@media (max-width: 768px) {
    .index-image {
        height: 80vh; /* Reduced height for medium-sized screens (tablets, etc.) */
    }
}

@media (max-width: 480px) {
    .index-image {
        height: 60vh; /* Further reduced height for small screens (smartphones) */
    }
}

/* end */
.main {
    font-size: 16px;
    color: #333333;
    font-family: Roboto;
    vertical-align: baseline;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}
.imageofoffice {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.imageofoffice img {
    width: 100%;
    height: 100%;
    border-bottom: 0 0 20px 20px;
}

img, svg {
    vertical-align: middle;
}
*, ::after, ::before {
    box-sizing: border-box;
}

img {
    overflow: clip;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Playfair Display;
    color: #010d14;
    margin: 0 0 26px;
    line-height: 1.2;
}
.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 107%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.overlay1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    z-index: 2;
    text-align: center;
    font-weight: 200;
    font-style: normal;
}

.page-title{
    position: relative;
    z-index: 1;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    padding-top: 20px;
    margin-bottom: 18px;
}
.page-title::after{
    content: "";
    height: 5px;
    position: absolute;
    top: -5px;
    margin: 0 auto;
    left: 0;
    right: 0;
    transition: all .3s ease;
    z-index: -1;
    background: #ed1b24;
    width: 65px;
}

.breadcrumbs-area {
    background: rgba(255, 255, 255, 0.1);
    padding: 13px 30px;
    max-width: 300px;
    margin: 0 auto;
}

.breadcrumbs-area ul{
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.breadcrumbs-area li{
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.breadcrumbs-area li a{
    position: relative;
    padding-right: 30px;
    font-size: 14px;
    color: #ffffff;
}
.breadcrumbs-area a {
    color: #ed1b24;
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
}
.breadcrumbs-area li a::before{
    content: "";
    position: absolute;
    background: #ed1b24;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    right: 10px;
    top: 5px;

}

/*middle*/
.mid{
    margin-top: 50px;
    line-height: 1.7;
}
.content li {
    list-style: none;
    text-decoration: none;
    transition: .5s;
}
.content a{
    text-decoration: none;
    color: #ed1b24;
    line-height: 32px;
    font-size: 20px;
}

h3 {
    font-size: 28px;
    line-height: 42px;
    font-weight: 700px;
}

.content li:hover{
    animation: animate .5s;
    letter-spacing: 10px;
    color: #ed1b24;
}
@keyframes animate {
    0% {
        letter-spacing: 0px;
    }
    50% {
        letter-spacing: -10px;
    }
    100% {
        letter-spacing: 10px;
    }
    
}

/*side*/



.side-content .services-list ul {
    margin: 0;
    padding: 0;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.side-content .services-list li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
    list-style: none;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.side-content .services-list li a {
    text-decoration: none;
    color: #333;
    transition: all .3s ease;
    font-weight: 600;
    font-size: 16px;
}

.side-content .services-list li a.active {
    background: #ed1b24;
    color: #010d14;
}
.side-content .services-list li a:hover {
    background: #ed1b24;
    color: #010d14;
}
.side-content .services-list li a {
    display: block;
    padding: 16px 18px;
    transition: all .5s ease;
    position: relative;
    background: #e8eaee;
    color: #010d14;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
a {
    color: #ed1b24;
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
}
ul.services-list li a.active:before {
    color: #010d14;
}
.services-list span{
    position: relative;
    left: 20w0px;
}
.services-add {
    background-color: #070706;
    position: relative;
    padding: 55px 35px 38px;
    text-align: center;
}
.services-add .services-overlay {
    background-image: url('	https://ameyaind.com/assets/images/services/services-single/ser2.jpg');
    border-radius: 80px 0px 80px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
 .services-add .address-wrap-item {
    position: relative;
}
 .services-add {
    background-color: #070706;
    position: relative;
    padding: 55px 35px 38px;
    text-align: center;
}
.address-wrap-item .icon-part {
    display: inline-block;
    position: relative;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    background: #ed1b24;
}


.address-wrap-item .icon-part:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    background: #ed1b24;
}
pulse-border animation {
    transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.04365);
    opacity: 0.91269;
}
.address-wrap-item .icon-part {
    display: inline-block;
    position: relative;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    background: #ed1b24;
}

.address-wrap-item .icon-part i {
    text-align: center;
    color: #010d14;
    border-radius: 100%;
    font-size: 30px;
    position: relative;
    line-height: 70px;
    z-index: 9;
    width: 100%;
    vertical-align: middle;
    margin-left: 0;
    height: auto;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fa-phone:before {
    content: "\f095";
}

 .services-add .address-wrap-item .title {
    font-size: 24px;
    line-height: 41px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
}
.services-add .address-wrap-item .title span {
    color: #ed1b24;
}
.services-add .address-wrap-item .divider {
    padding-top: 15px;
    padding-bottom: 35px;
}
 .services-add .address-wrap-item .divider .divider-separator {
    position: relative;
}
 .services-add .address-wrap-item .divider .divider-separator:before {
    height: 3px;
    display: block;
    width: 120px;
    border-bottom: 2px dashed #ed1b24;
    content: '';
    margin: 0 auto;
}
 .services-add .address-wrap-item a {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    color: #ffffff;
}
/*brouchers*/
.brochures {
    background-color: #E8EAEE;
    padding: 42px 26px 62px 35px;
    margin-top: 20px;
}
 .brochures .content-text .title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
    color: #010d14;
    margin-bottom: 18px;
}
 .brochures .content-text .desc-part {
    color: #333333;
    margin: 0 0 41px;
}
 .desc-part {
    color: #333333;
    margin: 0;
}

.brochures .btn-wrapper {
    position: relative;
    text-align: center;
    font-weight: 400;
    display: inline-block;
}
 .brochures .btn-wrapper .dual-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 18px 35px 18px 35px;
    background-color: #ed1b24;
    color: #010d14;
    margin: 0 -4px;
}
 .brochures .btn-wrapper .dual-btn-connector {
    position: absolute;
    z-index: 9;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
    color: #27374c;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    left: 46%;
    top: -2px;
}
 .brochures .btn-wrapper .rselement-dual-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 18px 35px 18px 35px;
    background-color: #010d14;
    color: #ffffff;
}

.hello {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #3e2c23;
  }

  /* Hero Section */
  .hello .hero {

  /* padding: 0px 20px; */
    /* background: linear-gradient(135deg, #453f3f, #000000); */
    /* background: linear-gradient(135deg, #6f3d2c, #ed1b24); */
  


    background: linear-gradient(rgba(0, 0, 0, 0.538), rgba(0, 0, 0, 0.522)), 
    url('/assets/imges/IMG-20250425-WA0012.webp');
    /* background-image: url('/assets/imges/IMG-20250425-WA0012.jpg'); */
    background-size: cover;
  
    background-position: center;
    height: 35vh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;



    animation: fadeIn 1.8s ease-in-out;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  
    /* color: white;
    padding: 0px 20px;
    text-align: center;
    position: relative; */
    /* box-shadow: #070706 0px 0px 20px 5px; */
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }


  .hello .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease-in-out;
  }

  .hello .tagline {
    font-size: 1.3rem;
    color: #fff4e6;
    font-weight: 600;
  }

  .hello .typewriter {
    display: inline-block;
    min-width: 450px;
    overflow: hidden;
    border-right: 3px solid #feffe6;
    white-space: nowrap;
    letter-spacing: 2px;
    animation: typing 4s steps(40, end), blink 0.75s step-end infinite;
  }

  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 30%;
    }
  }

  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

  /* Section Styling */
  .hello .section {
    max-width: 1000px;
    margin: 60px auto;
    /* padding: 20px; */
  }

  .hello .card {
    background-color: #fff8f3;
    border-left: 8px solid #ED1C24;
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(74, 44, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }

  .hello .card:nth-child(2) {
    animation-delay: 0.4s;
  }

  .hello .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(74, 44, 42, 0.2);
  }

  @keyframes fadeInUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .hello .card h2 {
    font-size: 2rem;
    color: #6f3d2c;
    margin-bottom: 15px;
    border-bottom: 2px solid #ED1C24;
    display: inline-block;
    padding-bottom: 5px;
  }

  .hello .card p {
    font-size: 1.1rem;
    color: #5c3b36;
    line-height: 1.6;
    margin-top: 10px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hello .hero h1 {
      font-size: 2.5rem;
    }

    .hello .card {
      padding: 25px;
    }
    .hello .tagline {
      font-size: 0.8rem;
    }
    @keyframes typing {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }
    .hello .card h2 {
      font-size: 1.6rem;
    }

    .hello .card p {
      font-size: 1rem;
    }
  }

  .imgModalWrap {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }
  .imgModalWrap.activeView {
    display: flex;
  }
  .imgContainerBox {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }
  .imgFullPreview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  .imgNavButton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50%;
    z-index: 10;
  }
  .imgPrevBtn { left: -50px; }
  .imgNextBtn { right: -50px; }
  .imgCloseBtn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  .imgOuterBox {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
  }
  .imgTileX {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
  }

  .banner-section {
    background: linear-gradient(135deg, #6f3d2c, #cd2128);      
    padding: 20px 20px;
    text-align: center;
    color: white;
  }

  .banner-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
  }

  .banner-section p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffecec;
    animation: fadeInUp 1.2s ease;
  }

  .heading-title {
    text-align: center;
    margin: 50px 20px 20px;
    font-size: 2.4rem;
    font-weight: bold;
    color: #cd2128;
    position: relative;
  }

  .heading-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #cd2128;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
  }

  .carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0px 0;
  }

  .advantage-list {
    display: flex;
    gap: 25px;
    animation: scroll-left 60s linear infinite;
    width: max-content;
  }

  .advantage-card {
    background: rgba(255, 245, 245, 0.95);
    padding: 30px 26px;
    border-radius: 22px;
    border: 1px solid rgba(237, 27, 36, 0.25);
    box-shadow: 0 12px 25px rgba(237, 27, 36, 0.15), 0 6px 15px rgba(0, 0, 0, 0.05);
    width: 320px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
  }

  .advantage-card::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle at center, rgba(237, 27, 36, 0.08), transparent 60%);
    z-index: 0;
  }

  .advantage-card i {
    font-size: 2.5rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #cd2128, #ff6b70);
       -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .advantage-card p {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
    padding: 0 10px;
  }

  .advantage-card p::before {
    content: open-quote;
    font-size: 4.2rem;
    color: #ed1b24;
    position: absolute;
    margin: 5px auto;
    top: -15px;
    left: -12px;
    opacity: 0.1;
  }

  .advantage-card p strong {
    color: #ed1b24;
    font-weight: 700;
    background: rgba(237, 27, 36, 0.08);
    padding: 2px 6px;
    border-radius: 6px;
  }

  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .banner-section h1 {
      font-size: 2.4rem;
    }

    .heading-title {
      font-size: 1.8rem;
    }

    .advantage-card {
      width: 260px;
    }
  }




  .logospace {
    top: 20px;
    right: 30px;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white; /* ya transparent if needed */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  
  .logospace img {
    width: 70%;
    height: auto;
  }
  