

/* carousel */
.carousel-item {
    height: 600px; /* Full height for the hero effect */
    min-height: 400px; /* Minimum height for smaller screens */
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 20%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-caption .btn {
    padding: 10px 20px;
    font-size: 1.1rem;
}

/* About */
.about h1 , .we-give h1{
    color: #002366;
}
.about h1 span, .we-give h1 span{
    font-weight: 300;
}

.about p{
    color: #666;
}

.inquiry{
    border: #002366 3px solid;
    text-align: center;
    padding: 30px 0 20px 0;
}
.inquiry h3{
    color: #CE1212;
    font-size: 42px;
}

.inquiry p{
    font-size: 34px;
}

@media (max-width:350px) {
    .inquiry h3{
        font-size: 32px;
    }
    .inquiry p{
        font-size: 26px;
    }
}
.about .content ul{
 list-style-type: none;
 padding-left: 0;
}
.about ul li{
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about ul li::before{
    content: "\f058"; /* Unicode for fa-check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Solid style */
    position: absolute;
    left: 0;
    top: 0;
    color: #CE1212;
}


/* Why-us */

.why-us{
    background-color:   #F5F5F5;
}
.why-box{
    background-color:   #CE1212;
    padding: 30px 20px 40px 20px;
}
.why-box h3{
    color: #fff;
    line-height: 48px;
    height: 48px;
    font-size: 32px;
}
.why-box p{
    color: #fffff0;
    line-height: 1.7;
}
.more-btn{
    text-decoration: none;
    color: #fff;
    background-color: #e63939;    
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 1s ease;
}
.more-btn:hover{
    background-color: #fff;
    color: #CE1212;
}

.icon-box{
    padding: 45px 20px;
    text-align: center;
    background-color: #fff;
}
.icon-box i{
    font-size: 42px;
    color: #CE1212;
    margin-bottom: 2rem ;
    transition: all 0.9s ease;
    padding: 20px 15px;
    border-radius: 50%;
}
.icon-box h4{
    font-size: 32px;
}
.icon-box p{
    color: #666;
    padding-top: 10px;
}

.icon-box:hover i{
    font-size: 42px;
    color: #fff;
    background-color: #CE1212;
}

/* what we do */
.first-area{
    background-color: #F7F7F7;
    padding:30px 20px;
}
.second-area{
    background-color: #CE1212;
    padding:30px 20px;
}
.first-area h2{
    color: #002366;
    line-height: 42px;
    height: 42px;
}
.first-area p{
    color: #666;
    line-height: 2;
}
.btn-first{
    font-size: 18px;
    background-color: #002366;
    color: #F5F5F5;
    transition: all 1s ease;
}
.btn-first:hover{
    background-color: #e63939;
    color: #002366;
}



.second-area h2{
    color: #fff;
    line-height: 42px;
    height: 42px;
}
.second-area p{
    color: #F7F7F7;
    line-height: 2;
}
.btn-second{
    font-size: 18px;
    background-color: #e63939;
    color: #F5F5F5;
    transition: all 1s ease;
}
.btn-second:hover{
    background-color: #fff ;
    color: #e63939;
}










/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: url('../images/hero-collab.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 102, 0.3); /* #002366 with 70% opacity */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
  }
  
  .hero-text {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }
  
  .hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
  }
  
  .hero-services p {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: #fff;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
  }
  
  .btn-main {
    display: inline-block;
    padding: 12px 30px;
    background-color: #CE1212;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #CE1212;
  }
  
  .btn-main:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Animations */
  .animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
  }
  
  .animate-delay-200 {
    animation-delay: 0.2s;
  }
  
  .animate-delay-400 {
    animation-delay: 0.4s;
  }
  
  .animate-delay-600 {
    animation-delay: 0.6s;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Background image animation */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: 0;
    animation: zoomOut 10s ease infinite alternate;
  }
  
  @keyframes zoomOut {
    from {
      transform: scale(1.1);
    }
    to {
      transform: scale(1);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-tagline {
      font-size: 1.5rem;
    }
    
    .hero-services p {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      min-height: 500px;
      height: 80vh;
    }
    
    .hero-title {
      font-size: 2.2rem;
    }
    
    .hero-tagline {
      font-size: 1.3rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-main {
      width: 200px;
      margin: 0.5rem 0;
    }
    
    .btn-main.ms-3 {
      margin-left: 0 !important;
    }
  }







































/* .hero{
    
     background:linear-gradient(45deg, #CE1212 ,#002366);
    width: 100%;
    height: 500px;
    position: relative;
}
.hero::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/hero-collab.png);
    background-size: cover;      
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    z-index: -999;
    filter: brightness(0.9) blur(1.1px);
}
.hero img{
    width: 27%;
    border-radius: 15px;
}
.hero .img-fluid{
    position: absolute;
}
.hero .img-hero-1{
    right: 15px;
    top: 10px;
}

.hero .img-hero-2{
    right: 20%;
    top: 48%;
}
.hero .container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h2{
    padding-top: 50%;
    font-size: 2rem;
}

@media (max-width:1200px) {
    .hero img{
        display: none;
    }
    .hero{
        height: 450px;
    }
}
@media (max-width:700px) {
    .hero{
        height: 350px;
    }
} */