* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    

}

header {
    width: 100%;
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    background-color: white;
    color: black;
   
}

/* Preloader Container */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Spinning Loader */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #ff4d4d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animated Text */
.textloader {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #ff4d4d;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
.logo {
      
    margin-left: 2%;
    width: 300px;
    float:left;
    
}

li {
    list-style: none;
    
}

li a {
    color: black;
    text-decoration: none;
    margin-right: 40px;
    
    

}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px; 
    margin-left: 28%;
   
   
    
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.nav-branding {
    font-size: 6rem;   
}

.nav-link {
    font-size: 25px;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s ease;   
}

.nav-link:hover {
    color: #ff4d4d; 
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #ff4d4d;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-link::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background-color: #ff4d4d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::before,
.nav-link:hover::after{
    transform: scaleX(1);
    
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 4px; 
    margin: 5px auto;
    background-color: black;
    transition: all 0.3s ease-in-out; 
}

@media (max-width:768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        position: fixed;
        left: -100%;
        top: 100px;
        gap: 0;
        background-color: black;
        color: whitesmoke;
        width: 100% ; 
        height: auto;
        text-align: center;
        transition: 0.3s;
        border-radius: 25px;
        border: solid black 1px;
        font-weight:200 ;
        z-index: 999;
        transition: left 0.3s ease-in-out;
 
       
    }
    
    .nav-link{
        color: whitesmoke;
        padding: 20px;
        font-size:10px ;
        text-transform: uppercase; 
    }

    .nav-item {
        margin: 16px 0 16px 0 ;
    }

    .nav-menu.active {
        left: 0;
        
    }

    .nav-branding {
        width: 100%;
        margin-top: 10px;
       font-family: Verdana, Geneva, Tahoma, sans-serif;
       font-size: large;

    }

    .logo {
      
        height: 100px;
        margin-left: 8%;
        margin-top: -20px;
        margin-bottom: 0;
        width: 200px;   
        float:left;
        background-attachment: fixed;
    }
}

/*banner*/
/* carousel */

.carousel{
    height: 90vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
    margin-top: -29px;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #f1683a;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}
.container{
      display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
/*banner2 contact page*/
.banner2{
    width: 100%;
    height: 80vh;
    background: url(banner2.png);
    background-size: cover;
    background-position: 69%;
   
    margin-top: -150px;

    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
   
}
.banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}
.banner3{
    width: 100%;
    height: 100vh;
    background: url(banner3.png);
    background-size: cover;
    background-position: 69%;
    border-radius: 10px;
    margin-top: -150px;
    /* background-attachment: fixed; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
}

.banner-text {
    text-align: center;
    position: relative; 
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;
    
}

.banner-text h2{
    letter-spacing: 5px;
    font-weight: bold;
    font-size: 25px;
    color: whitesmoke;
   
}

.banner-text h1{
   
    font-size: 40px;
    color:rgb(250, 26, 26);
}

.banner-text p {
    font-size: 18px;
    color: #f0f0f0;
    margin-top: 15px;
    margin-bottom: 30px;
}

 #btn{
    position: relative;
   
    text-decoration: none;
    border: 2px solid#ff4d4d;
    font-size: 18px;
    color:#ff4d4d;
    
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    background-color:transparent;
    
   
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    width: 250px;
    height: 60px;

}

#btn::before{
    position: absolute;
    content: "";
    border: 1px solid transparent;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#ff4d4d;
    z-index: -1;
    transition: transform 0.7s;
    transform-origin:0 0 ;
    transition-timing-function: cubic-bezier(0.5,1.5,0.4,0.7);
    transform: scaleX(0);


}

#btn:hover{
    color: #fff;

}

#btn:hover::before{
    transform: scale(1);
}
/* Keyframes for fade-in effect */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .banner {
        height: 40vh; /* Further reduce banner height */
        margin-top: -70px; /* Adjust top margin */
        background-position: center;
    }

    .banner-text h1 {
        font-size: 24px; /* Smaller font for the heading */
    }

    .banner-text h2 {
        font-size: 18px; /* Smaller font for subheading */
    }

    .banner-text p {
        font-size: 14px; /* Smaller font size */
    }

    #btn {
        width: 140px; /* Smaller button */
        height: 40px;
        font-size: 14px; /* Adjust font size for button */
       
    }
}


/* marquee for advertisement*/
.interactive-marquee {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff; 
    background-color: #ff4d4d; 
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    margin-top: 20px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: marquee-color-change 8s infinite; 
}

.interactive-marquee:hover {
    animation-play-state: paused; 
    background-color: #333333; 
    color: #ff4d4d; 
    cursor: pointer;
}

/* Keyframe animation for color changing effect */
@keyframes marquee-color-change {
    0% {
        background-color: #ff4d4d;
    }
    50% {
        background-color: #333333; /* Alternate color in the middle */
    }
    100% {
        background-color: #ff4d4d;
    }
}

/*brands with image*/
/* Container styling */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
  }
  /* Left side image container */
  .image-container {
    flex: 1;
    margin-right: 20px;
    opacity: 0;
    animation: slideInLeft 1s forwards;
    animation-delay: 1s;
  }
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  /* Right side content */
  .content2 {
    flex: 1;
    margin-left: 20px;
    opacity: 0;
    animation: slideInRight 1s forwards;
    animation-delay: 1s;
  }
  .content2 h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .content2 p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .content2 button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    background:#ff4d4d;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .content2 button:hover {
    background:#ff4d4d;
  }
  /* Keyframes for animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
    .image-container,
    .content2 {
      margin: 0 0 20px;
      animation: fadeIn 1s forwards;
      animation-delay: 0.5s;
    }
    .content2 {
      margin-bottom: 0;
    }
  }


 /* Card Slider Container */
 .card-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 50px auto;
    max-width: 1200px;
  }

  /* Card Track */
  .card-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  /* Card Styling */
  .card {
    min-width: calc(33.33% - 40px);
    margin: 0 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: all 0.3s ease;
    opacity: 0.9;
    animation: cardEntrance 1s ease-out forwards;
  }

  .card:hover {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 1;
  }

  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }

  .card-content {
    padding: 25px;
    text-align: center;
  }

  .card-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #2c3e50;
  }

  .card-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-content .btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff4d4d;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .card-content .btn:hover {
    background:#ff4d4d;
    transform: translateY(-2px);
  }

  @keyframes cardEntrance {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 0.9;
      transform: translateY(0);
    }
  }

  /* Arrow Buttons */
  .prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .prev-button {
    left: 20px;
  }

  .next-button {
    right: 20px;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .card {
      min-width: calc(50% - 40px);
    }
  }

  @media (max-width: 768px) {
    .card {
      min-width: calc(100% - 40px);
    }
  }
/*about us section*/

.container1 .heading{
    width: 85%;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    background-color: black;

     

}

.container1 .heading h1{
    color: #f15b43;
    font-size: 50px;
    margin-top: 50px;

}

.wrapper1{
    width: 80%;
    margin: 15% auto;
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.content1{
    width: 70%;
    margin: 0px 25px;

}

.content1 h2{
    font-size: 30px;
    color: #284966;

}

.content1 p {
    color: #666;
    font-size:20px ;
    line-height: 1.5;
    margin-top: 10px;
    text-align: justify;
    text-justify: inter-word;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.content1 .btn1{
    position: relative;
    margin-top: 30px;
    text-decoration: none;
    border: 2px solid #f15b43;
    font-size: 19px;
    color: #f15b43;
    padding: 13px 16px;
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;


}

.content1 .btn1::before{
    position: absolute;
    content: "";
    border: 1px solid transparent;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f15b43;
    z-index: -1;
    transition: transform 0.7s;
    transform-origin:0 0 ;
    transition-timing-function: cubic-bezier(0.5,1.5,0.4,0.7);
    transform: scaleX(0);


}

.content1 .btn1:hover{
    color: #fff;

}

.content1 .btn1:hover::before{
    transform: scale(1);
}



.image1{
    width: 50%;
}

.image1 img{
     width: 100%;
     height:auto;

}

@media screen and (max-width:768px){
    
    .container1{
        width: 100%;
    }
    .wrapper1{
        flex-direction: column;
        margin-top: 0px;
    }
    .container1 .heading h1{
       
        font-size: 50px;
    
    }

    .content1 .image1{
        width: 100%;
        margin-top: 20px;
    }

    .content1 p {
        font-size: 20px;
        width: 100%;
        text-align: justify;
        text-justify: inter-word;

    }
    .content1 h2 {
        font-size: 25px;

    }

    .content1 .btn1{
        font-size: 16px;
        padding: 12px 14px;

    }

    

.image1{
    width: 100%;
}

/* .image1 img{
     width: 100%;
     height:auto;

} */

    /* .banner{
        background-attachment:local;
    }

    .banner2{
        background-attachment:local;
    } */

    
}

/*counter section*/


.stats-section {
    background: linear-gradient(135deg, #f15b43, #f9a56c);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Stats Grid Styling */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.stats-item {
    flex: 1 1 calc(25% - 40px);
    max-width: 250px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.stat-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-item {
        flex: 1 1 calc(50% - 20px);
        max-width: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-item {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }
}  



/*contact us*/

.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(contact.webp);
    background-size: cover;
    background-position: 69%;
    background-attachment: fixed;


}

.contact::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;


}

.contact .contentf{
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;


}

.contact .contentf h1{
    font-size: 36px;
    font-weight: 500;
    color: #f15b43;

}


.contact .contentf h2{

    font-weight: 300;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.containerf{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;
}

.containerf .contactinfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.containerf .contactinfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.containerf .contactinfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;

}


.containerf .contactinfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;

}

.containerf .contactinfo .box .text a{
    display: flex;
    
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;

}
.containerf .contactinfo .box .text a:hover{
    display: flex;
    
    font-size: 16px;
    color: #f15b43;
    flex-direction: column;
    font-weight: 300;

}


.containerf .contactinfo .box .text h3{
    font-weight: 500;
    color: #f15b43;

}

.contactForm{
    width: 40%;
    padding: 40px;
    background: #fff;

}

.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;

}

.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top:10px ;

}

.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;


}

.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;


}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span


{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}


.contactForm .inputBox .fbtn{
    width: 100px;
    background: #f15b43;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

@media (max-width:991px){
    .contact{
        padding: 50px;
        background-attachment:local;
    }

    .containerf{
        flex-direction: column;
    }
    .containerf .contactinfo{
        margin-bottom: 40px;


    }
    .containerf .contactinfo,
    .contactForm
    {
        width: 100%;
    }
}

/* footer */
.center{
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center;
}
.footer-img {
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center;
    width: 250px; /* Default size for larger screens */
    height: 250px;
    border-radius: 50%; /* Make the image circular */
    border: 2px solid #ffffff; /* Optional: Add a white border */
    object-fit: cover;
    background-color: #ffffff;

}


.containerf{
	max-width: 100%;
	margin:auto;
    padding: 0 15px; 
    box-sizing: border-box;
}
.rowf{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.footer-col ul{
	list-style: none;
    padding: 0;
    margin: 0;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
    overflow-x: hidden;

    
}
.footer-col{
   width: 25%;
   padding: 0 70px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display:inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
/* Copyright Section */
.footer .copyright {
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
    color: #bbbbbb;
    font-size: 14px;
    /* border-top: 1px solid #444; */
}

.footer .copyright a{
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    margin-top: 30px;
    color: #bbbbbb;
    font-size: 15px;
    border-top: 1px solid #444;
}
/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}




