@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
    --font-default:'Urbanist';
    --font-primary:'Outfit';
    --font-secondary:'Mulish';
  }
  
  /* Colors */
  :root {
    --color-default:#0A2647;
    --color-primary: #3A89C9;
    --color-secondary:#F7C35F;
  }
  
  /* Smooth scroll behavior */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
    font-family: var(--font-default);
    color:#333333;
    overflow-x: hidden;
  }
  
  a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  a:hover {
    color: #ffc732;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
  }
  .ul li{
    font-family: var(--font-default);
  }
   /* ---------------------------------------------------------
     Header section
    --------------------------------------------------------- */
    .custom-container {
      max-width: 1600px; /* or whatever you like */
      margin: 0 auto;
      padding: 0 30px;
    }
    .navbar {
      background-color: #fff;
      padding: 10px 30px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .navbar-brand img {
      max-height: 50px;
      margin-right: 10px;
    }

    .navbar-nav .nav-link {
      font-weight: 600;
      color:var(--color-default);
      margin: 0 12px;
      transition: 0.3s ease;
      font-size: 1rem;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color:#3A89C9;
    }

    .phone-box {
      display: flex;
      align-items: center;
      margin-right: 20px;
      font-weight:600;
      color: var(--color-default);
    }
    .work-btn {
      background-color:var(--color-default);
      color: white;
      border: none;
      padding:10px 18px;
      border-radius:0px;
      font-size:1rem;
      transition: 0.3s ease;
    }

    .work-btn:hover {
      background-color: var(--color-secondary);
      color:var(--color-default);
    }
    .custom-toggler {
      display: flex;
      flex-direction: column;
      gap: 4px;
      width: 40px;
      height: 24px;
      cursor: pointer;
    }
    
    .hamburger-line {
      height: 8px;
      background-color:var(--color-default); 
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    .whatsapp_link a{
      color:var(--color-default);
    }
    .whatsapp_link a:hover{
      color:#3A89C9;
    }
    .dropdown:hover .dropdown-menu {
      display: block;
    }
  
    .custom-whatsapp-dropdown {
      margin-left: -50px; 
      color: var(--color-default);
      border: 1px solid var(--color-default);
    }
    /* ---------------------------------------------------------
   Carousel section
    --------------------------------------------------------- */
    .carousel-caption {
      top:23%;
      color: var(--color-default);
    }

    .carousel-caption h1 {
      font-weight:500;
      font-size:3rem;
    }
    .carousel-caption .btn {
      margin-top: 15px;
      padding: 10px 20px;
      border: 2px solid #fff;
      color: #fff;
      background-color: transparent;
      transition: 0.3s ease;
      border-radius: 0px;
      font-size:1.1rem;
    }
    .carousel-caption .btn:hover {
      background-color: var(--color-secondary);
      color:var(--color-default);
      border: 1px solid var(--color-secondary);
    }

    .carousel-indicators [data-bs-target] {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: #fff;
      opacity:1;
    }

    .carousel-indicators .active {
      background-color: #ffc107;
      opacity: 1;
    }

    .carousel-item img {
      height: 92vh;
      object-fit: cover;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width:4rem!important;
      height:3rem!important;
    }
    @media (max-width: 768px) {
      .carousel-caption h2 {
        font-size: 1.6rem;
      }

      .carousel-caption {
        bottom: 20%;
      }
    }
    /* ---------------------------------------------------------
    Featured section
    --------------------------------------------------------- */
    .featured-scroll {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 20px;
      padding: 0 10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      
      cursor: grab;                 
      scrollbar-width: none;        
    }
    .featured-scroll:active {
      cursor: grabbing;             
    }
    .featured-scroll::-webkit-scrollbar {
      display: none;               
    }
    
    .category-card {
      position: relative;
      overflow: hidden;
      border-radius:0px;
      cursor: pointer;
      height:350px;
      width:260px;
      gap:10px;
    }

    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover img {
      transform: scale(1.1);
    }

    .category-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
      display: flex;
      flex-direction: column;
      align-items:start;
      color: #fff;
      padding:25px;
      text-align: center;
    }

    .category-title {
      font-size:1.2rem;
      font-weight:400;
    }

    .category-subtitle {
      font-size:1rem;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .category-card {
        width: 100%;
        max-width: 300px;
      }
    }
  /* -----------------------------------------------------------
  Why Choose Us
   ------------------------------------------------------------- */
   .why-choose-us {
    background-color: #fff;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  .why-choose-us h4{
    font-weight:700;
    margin-top:30px;
  }
  .why-choose-us p{
    color:#1A1A1A;
    font-weight:500;
  }
  /* -----------------------------------------------------------
  Crafting Section 
  ------------------------------------------------------------- */
  .crafting-section {
    background-color: var(--color-default);
    
  }
  .text-section h3 {
    font-weight:300;
  }
  .text-section p{
    font-weight:300;
  }
  .cta-btn {
    background-color: var(--color-secondary);
    color:var(--color-default) ;
    font-weight: 600;
    padding: 12px 25px;
    border-radius:2px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    border:1px solid #3A89C9;
  }
  
  .cta-btn:hover {
    background-color:#f7d987;
    text-decoration: none;
    color:var(--color-default) ;
  }

  /* -----------------------------------------------------------
  Featured Services
  ------------------------------------------------------------- */
  .project-card .position-relative {
    overflow: hidden;
  }
  
  .project-card img.card-img-top {
    transition: transform 0.4s ease;
  }
  
  .project-card:hover img.card-img-top {
    transform: scale(1.1); 
  }
  
  .project-filter .btn {
    background-color: transparent;
    color:rgba(10, 38, 71, 1);
    font-weight: 500;
    padding: 8px 8px;
    border-radius: 0;
    transition: border 0.1s ease;
    border: 2px solid #fff;
  }
  
  .project-filter .btn:hover {
    border: 2px solid rgba(10, 38, 71, 1);
    background-color: transparent;
  }
  
  .project-filter .btn.active {
    border: 2px solid  rgba(10, 38, 71, 1);
  }
  .project-filter .btn {
    cursor: pointer;
  } 
  .project-card{
    border-radius:0px;
    border:1px solid rgba(233, 233, 233, 1);
  }   
  .project-card img {
    object-fit: cover;
    border-radius:0px;
  }
  .project-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .project-card .card-body {
    color:rgba(26, 26, 26, 1);
    font-weight:500;
  }
  .project-card:hover{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
  }
  
  /*-------------------------------------------------------------
   About us Section
   ----------------------------------------------------------- */
   @media (max-width: 991px) {
    .about_us {
      padding: 20px !important;
    }
    .custom-btn-primary1{
      padding: 8px 15px!important;
    }
    .custom-btn-primary2{
      padding: 8px 1px!important;
    }
  }
  
   @media(min-width:1024px) and (max-width:1250px){
    .about_us{
      padding:10px!important;
    }
   }
   @media(min-width:1250px) and (max-width:1680px){
    .about_us{
      padding:30px!important;
    }
   }
  .bg-lightblue {
    background-color: #e7f1f8;
  }
  .about_us{
    padding:100px;
  }
  .about_us h1 {
    color:var(--color-default);
    font-weight:500;
  }
  .about_us h5{
    color:rgba(10, 38, 71, 1);
    font-weight:500;
  }
  .about_us h3{
    color:#1A1A1A;
    font-weight: 500;
  }
  .about_us p{
    color:rgba(26, 26, 26, 0.8);
    font-weight: 500;
    line-height: 1.7;
    font-size:1.1rem;
  }
  .object-fit-cover {
    object-fit: cover;
    height: 100%;
  }
  
  .custom-btn-primary1{
    border-radius:0px;
    padding: 8px 20px;
    font-size:1rem;
    transition: all 0.3s ease;
    color:rgba(58, 137, 201, 1);
    border:2px solid rgba(58, 137, 201, 1);
    font-weight:500;
  }
  .custom-btn-primary1:hover{
    background-color:rgba(58, 137, 201, 1);
    border:2px solid rgba(58, 137, 201, 1);
    color:#fff;
  }
  .custom-btn-primary2{
    border-radius:0px;
    padding: 8px 20px;
    font-size:1rem;
    transition: all 0.3s ease;
    background-color:rgba(58, 137, 201, 1);
    border:2px solid rgba(58, 137, 201, 1);
    font-weight:500;
    color:#fff;
  }
  .custom-btn-primary2:hover{
    color:rgba(58, 137, 201, 1);
    border:2px solid rgba(58, 137, 201, 1);
  }
 
 
   /*-------------------------------------------------------------
   Services Card
   ------------------------------------------------------------ */
   .service-card {
    position: relative;
    overflow: hidden;
    border-radius:0px;
  }
  
  .service-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .service-card:hover .service-img {
    transform: scale(1.05);
  }
  
  .service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content:start;
  }
  
  .service-card h3 {
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .service-card ul {
    padding-left: 1.2rem;
    margin: 0;
  }
  
  .service-card ul li {
    color:#ffff;
    line-height: 1.8;
  }
  
  /*-------------------------------------------------------------
   Hero Section II
   ------------------------------------------------------------ */
   .hero-section {
    height: 60vh;
    background: url('../../Images/slides/Hero_section_II.webp') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: white;
  }
  
  .hero-section .content { 
   max-width: 500px; 
  }
  
  .hero-section h1 {
    font-family: var(--font-default);
    font-size:3rem;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-section .btn {
    background-color:#3A89C9;
    padding: 7px 35px;
    color: white;
    text-decoration: none;
    border-radius:0px;
    font-weight:500;
    transition: background 0.3s ease;
  }
  
  .hero-section .btn:hover {
    background-color: #155a96;
  }
  
    /*-------------------------------------------------------------
    Blog  section
   ------------------------------------------------------------ */
   .news-section {
    background-color: #fff;
  }
  
  .section-title {
    font-weight:500;
    color:#1A1A1A;
  }
  
  .section-subtitle,
  .section-subinfo {
    color:#1A1A1A;
    margin-bottom: 5px;
    font-weight:600;
    font-size:1.1rem;
  }
  /* Blog Cards */
  .blog-card {
    background: #fff;
    border: 1px solid #E9E9E9;
    padding: 15px;
    margin: 10px 0;
    transition: 0.3s ease;
  }
  
  .blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .blog-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden; 
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .image-wrapper:hover img {
    transform: scale(1.1); 
  }
  
  .image-wrapper .badge ,.project-card .badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background-color:#3A89C9;
    color: #fff;
    font-size:0.9rem;
    padding: 5px 10px;
    z-index: 1;
    border-radius: 0px;
    font-weight:300;
  }
  
  .blog-card h5 {
    font-weight: 500;
    color:#252422;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color:#808080;
  }
  
  .blog-meta a {
    color:#0A2647;
    text-decoration: none;
    font-weight:500;
  }
  .rotated-arrow {
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 5px;
  }
  
  .blog-meta a:hover {
    text-decoration: underline;
  }
  
  /*-------------------------------------------------------------
   Subscribe section
   ------------------------------------------------------------ */
   .newsletter-section {
    background-color:#EDF2F4; 
  }
  .join_text{
    color:#3A89C9!important;
  }
  .newsletter-text h2 {
    font-weight:400;
    color:#14213D ; 
  }
  
  .newsletter-text p {
    color:#252422;
    margin: 0;
    font-weight:500;
  }
  
  .newsletter-form {
    display: flex;
  }
  .newsletter-form ::placeholder{
    color:#B0B0B0;
  }
  .newsletter-form input {
    padding: 15px 15px;
    border: none;
    outline: none;
    width: 300px;
    max-width: 100%;
    font-size:1rem;
    background-color:#fff;
  }
  
  .newsletter-form button {
    padding: 12px 20px;
    border: none;
    background-color:var(--color-secondary);
    color:#181A20;
    font-weight:700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size:1rem;
  }
  
  .newsletter-form button:hover {
    background-color:#181A20;
    color:var(--color-secondary);
  }
  
  @media (max-width: 768px) {
    .newsletter-section .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .newsletter-form {
      width: 100%;
      margin-top: 10px;
    }
  
    .newsletter-form input {
      flex: 1;
    }
  
    .newsletter-form button {
      width: auto;
    }
  }
  
  /* ------------------------------------------------------------
  # Footer Section
  --------------------------------------------------------------- */
  .footer-section {
    background-color:var(--color-default) ;
    color: white;
  }
  
  .footer-about p {
    margin-top: 15px;
    color:#DEDEDE;
  }

  .footer-about h5{
    color:var(--color-secondary);
    font-weight:300;
  }

  .highlight {
    color:var(--color-secondary);
    font-weight:300;
  }

  .hex-social-icons {
    display: flex;
    gap: 20px;
    font-size:1.75rem;
    color:#fff!important;
  }

  .hex-social-icons i{
    color:#fff;
  }

  .hex-social-icons i:hover {
    color:var(--color-secondary);
    transform: scale(1.1);
  }

  .center-column {
    display: flex;
    justify-content: center;
  }
  @media(max-width:1024px){
    .center-column {
      display: flex;
      justify-content: flex-start;
    }
  }
  .Footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .Footer-links ul li:not(:last-child) {
    margin-bottom: 8px;
  }

  .Footer-links a {
    text-decoration: none; 
    color:#DEDEDE;   
   
  }
  .Footer-links a:hover {
    text-decoration:none; 
    color:var(--color-secondary) ;            
  }

  .post strong{
    font-weight:500;
    color:var(--color-secondary) ;   
  }
  .footer-posts .post ,  .footer-contact .post{
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }
  
  .footer-posts .post img , .footer-contact .post img{
    max-width: 50px;
    margin-right: 20px;

  }
  .map-container {
    width: 100%;
    height: 250px;
    border-radius:0px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Copyright section */
  .footer-divider {
  
    border-color: rgba(255, 255, 255, 0.1);
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    flex-wrap: wrap;
  }
  .footer-policies a{
    color:#fff;
    font-weight:300;
  }
  /* About us page */
  /* --------------------------------
  Builders section
  ---------------------------------- */
 
  .subheading {
    font-size: 20px;
    color: #00509e;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  
  .builders-section p {
    line-height: 1.8;
    color:var(--font-default);
    font-weight:500;
    font-size:1.1rem;
    text-align: justify;
  }
  .trusted-title {
    font-size: 2.5rem;
    font-weight:600;
    margin-bottom: 20px;
    line-height: 1.3;
    color:#000000;
  }
  .trusted-title span{
    color:#3A89C9;
  }
  .trusted-description {
    text-align: justify;
    font-size: 1rem;
    color:#000000;
    line-height:1.9;
  }
  
  .stats h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
  }
  @media(max-width:1024px){
    .stats h3 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #000;
    }
  }
  .stats p {
    margin-top: 5px;
    color: #000;
  }
/*----------------------
 banner
 ---------------------- */
 .banner {
  background: url('../../Images/Gallery/banner.png') no-repeat center center;
  background-size: cover;
  height: 300px;
  position: relative;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1); 
  z-index: 1;
}

.banner-content {
  z-index:2;
}

.banner-content h1 {
  font-size:2.75rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1rem;
}
/* HerosectionII */
.hero-sectionII {
  height: 60vh;
  background: url('../../Images/slides/hero_section_III.png') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: white;
}

.hero-sectionII .content { 
 max-width: 500px; 
}

.hero-sectionII h1 {
  font-family: var(--font-default);
  font-size:3rem;
  margin-bottom: 1rem;
}

.hero-sectionII p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-sectionII .btn {
  background-color:#3A89C9;
  padding: 7px 35px;
  color: white;
  text-decoration: none;
  border-radius:0px;
  font-weight:500;
  transition: background 0.3s ease;
}

.hero-sectionII .btn:hover {
  background-color: #155a96;
}
  /*FREQUENTLY ASKED QUESTION  */
  .faq-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    justify-content: flex-start;
    font-family:'Inter';
  }
  .faq-section{
    background-color:#F5F7FA;
  }
  .faq-sidebar {
    flex: 1; 
  }

  .faq-sidebar h2 {
    font-size:2.25rem;
    margin-bottom: 10px;
    color:#000;
    font-weight:500;
  }

  .faq-sidebar p {
    color:#4E5562;
    font-size:1.1rem;
    font-weight:500;
  }
  .fa-greater-than{
    font-size:0.8rem;
  }

  .faq-content {
    flex: 2;
    padding: 40px;
   
  }

  .faq-item {
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #e6e6e6;
  }
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    font-weight: 600;
    position: relative;
    font-size:1.1rem;
    justify-content: space-between;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-question .icon {
    transition: transform 0.3s ease;
    font-size: 14px;
  }
  
  .faq-item.active .faq-question .icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    padding-top: 10px;
    color:#4E5562;
    font-size:1rem;
    font-weight:500;
    text-align: justify;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
  /* contact us */
  /* contact us section */
  .support-box {
    padding: 20px;
  }
  .support-box p{
    font-family:'Inter';
    color:#4E5562;
   
  }
  .contact{
    color:#333D4C!important;
  }
  .contact-left {
    background: url('../../Images/Gallery/image.png') no-repeat center center;
    background-size: cover;
    min-height: 100%;
  }
  
  .contact-right {
    border-radius:0px;
    background-color:#ECF2F2;
  }
  
  .footer-contact_1 .post p {
    margin: 0;
    
  }
  .contact-right p{
    color:#4E5562;
    font-family:'Inter';
  }
  
  .footer-contact_1 img {
    margin-top: 4px;
  }
  .footer-contact_1 h5{
    color:var(--color-default);
  }
  .post_1 img{
    max-width:40px;
  }
  .post_1 strong{
    color: var(--color-default);
    font-weight:700;
  }
  .post_1 p{
    color:#181A20;
    font-weight:600;
    font-size:1rem;
  }
 
form .form-control {
  border-radius: 0 !important;
}

/* Change placeholder color */
form .form-control::placeholder {
  color:#9CA3AF; 
  opacity: 1; 
  font-family: 'Inter';
  font-weight:300!important;
}
.custom-btn-submit {
  background-color: #1D2735;
  color:#fff;
  border-radius:0px;
  border:1px solid #1D2735;
}
.custom-btn-submit:hover{
  background-color: #293647;
  color:#fff;
  border:1px solid #1D2735;
}
/* Individual blogs */
.Blog_Content h3{
  font-size:2.3rem;
  font-weight:700;
  color:#252422;
}
.Blog_Content p{
  font-weight:500;
  color:#333230;
  text-align: justify;
  font-size:1.1rem;
}
.author_section{
  background-color:var(--color-default);
  
}
.author_section p{
  color:#fff;
}
.author_section h6{
  color:#fff;
}
.latest_news{
  background-color: #EDF2F4;
}
.latest_news h2{
  color:#000;
}
.latest_news p{
  font-size:1.1rem;
}
.latest_news img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px; 
}
/* Animations */
.letter {
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
  animation: fadeInUp 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* animation */
/* Fade and slide-up effect for h1 and btn */
.carousel-caption h1,
.carousel-caption .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1.1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Keyframes for fade and slide-up animation */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slow zoom-in effect for image */
.carousel-item img {
  animation: zoomInEffect 4s ease-in-out forwards;  /* Slow zoom-in effect */
}

/* Keyframes for zoom-in effect */
@keyframes zoomInEffect {
  0% {
    transform: scale(1);  
    opacity: 1;          
  }
  50% {
    transform: scale(1.1); 
    opacity: 1;             
  }
  100% {
    transform: scale(1);  
    opacity: 1;        
  }
}

/* Smooth fade-out for image when transitioning to next slide */
.carousel-item-next,
.carousel-item-prev {
  transition: opacity 1.5s ease-in-out; /* Fade out the image smoothly */
}

/* Optional: Transition for carousel slides */
.carousel-item {
  transition: transform 1s ease-in-out;
}

