@font-face {
    font-family: font1;
    src: url(./assets/font1.ttf);
}

@font-face {
    font-family: font2;
    src: url(./assets/font2.ttf);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    background-color: #fff;
    font-family: font2;
    font-size: 17px;
    line-height: 27px;
    color: #555;
    font-weight: 400;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.btn{
    background-color: rgba(252, 179, 45, 0.877);
    border: none;
    color: white;
    border-radius: 5px;
    padding: 8px 20px; 
    max-width: 150px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover{
    background-color: rgb(183, 119, 24); 
    transform: scale(1.05);
}

h1, h2, h3, h4, h5, h6{
    color: #282828;
}

h1{
    font-size: 70px;
    line-height: 1;
    margin: 0 0 10px;
    font-weight: bold;
    font-family: font1;
}

h2{
    font-size: 50px;
    color: #282828;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1;
}

h3,h4{
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.4;
    color: #282828;
}

h3{
    font-size: 40px;
}

h4{
    font-size: 28px;
}

h5{
    font-size: 20px;
    margin: 0 0 10px;
}

h6{
    font-size: 16px;
}

img{
    border: none;
    outline:none;
}

ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

p{
    font-size: 17px;
    margin-bottom: 15px;
}


/* /////////////////////////      navbar       ////////////////////////////////////// */

.nav-button{
    max-width: 150px;
    width: 100%;
    background-color: rgb(95, 158, 0);
    color: white;
    margin-right: 0px;
}

.nav-button:hover{
    background-color: rgba(95, 158, 0, 0.542);
    color: white;
}

.navbar.navbar-dark.bg-dark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
  }

/* /////////////////////////      contact section      ////////////////////////////////////// */

.contact-section{
    background-color: rgba(252, 179, 45, 0.877);
    padding: 20px;
    margin-top: 56px;
}

.contacts-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}
  
.contacts-link a {
    text-decoration: none;
    display: inline-block;
    color: white;
    margin-right: 20px;
}
  
.contacts-link a:hover {
    color: red;
}
  
.contacts-icon {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
  
.contacts-icon a {
    color: white;
    font-size: 15px;
}
  
.contacts-icon a:hover {
    color: brown;
}


/* /////////////////////////     header    ////////////////////////////////////// */



header {
    position: sticky;
  top: 56px; 
  width: 100%;
  z-index: 1050;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.12) 0 2px 8px;
  }

.header-section{
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.mainmenu {
    list-style: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    z-index: 999;
}
  
.mainmenu li {
    position: relative !important;
}
  
.mainmenu li > a {
    display: block !important;
    padding: 10px 15px !important;
    color: rgb(0, 0, 0) !important;
    text-decoration: none !important; 
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}
  
.mainmenu li > a:hover {
    color: rgba(252, 179, 45, 0.877) !important;
}

.mainmenu li ul {
    z-index: 1051 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: white;
  }

  .mainmenu li:hover ul {
    display: block !important;
  }
  

  .mainmenu li ul li a {
    padding: 10px !important;
    color: rgb(0, 0, 0) !important;
    display: block !important;
    white-space: nowrap !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; 
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}
  
.mainmenu li ul li a:hover {
    background-color: rgb(148, 145, 145) !important;
}
  
.mainmenu li ul li:last-child a {
    border-bottom: none !important;
}

/* /////////////////////////    hero section    ////////////////////////////////////// */

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-section .carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 1rem;
  }
  
  .hero-section .carousel-caption-inner {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 1rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
  

  .hero-section .carousel-item.active .carousel-caption h1.animation {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid white;
    font-weight: 700;
    color: white;
    opacity: 1;
    animation: typing 4s steps(30, end) forwards, blink 0.7s step-end infinite;
    animation-delay: 0.5s;
    max-width: 90vw;
    width: 100%;
    box-sizing: border-box;
  }
  
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  
  @keyframes blink {
    50% { border-color: transparent; }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero-section .carousel-item.active .carousel-caption h5,
  .hero-section .carousel-item.active .carousel-caption p,
  .hero-section .carousel-item.active .carousel-caption .carousel-button {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }
  
  .hero-section .carousel-caption h5 {
    color: #fff;
    animation-delay: 0.2s;
  }
  
  .hero-section .carousel-caption p {
    color: #fff;
    font-size: 1rem;
    animation-delay: 0.8s;
  }
  
  .hero-section .carousel-caption .carousel-button {
    animation-delay: 1.2s;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
 

/* /////////////////////////   donation section    ////////////////////////////////////// */

.donation-section{
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 999;
    border: none;
}

.donation-card{
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    z-index: 999;
    background-color: #fff;
}

.donation-card-content{
    border-right: 1px dotted rgb(159, 159, 159);
    padding: 30px;
    z-index: 999;
}

.donation-card-content:last-child {
    border-right: none;
  }

.donation-card-content h3{
    font-size: 30px;
    margin-top: 20px;
   
}

.donation-card-content p{
    font-size: 18px;
    margin-top: 15px;

}

.donation-card-content a{
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease-in;
    display: inline-block;
}

.donation-card-content a:hover{
    text-decoration: underline;
    color: rgba(252, 179, 45, 0.877);
}

.dona-img{
    max-width: 64px;
    width: 100%;
}


/* /////////////////////////  causes section    ////////////////////////////////////// */

.causes-section{
   margin-top: 350px;
}

.causes-main-section{
    padding: 100px 10px;
    justify-content: center;
    align-items: center;
}

.causes-main-section h2{
    text-align: center;
    font-size: 45px;
    font-family: font1;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.underline{
        text-decoration: 8px underline rgba(252, 179, 45, 0.877);
}

.causes-main-section p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 20px;
}

.line-break{
    display: block;
}

.causes-card-section{
    gap: 40px;
}

.causes-card-image{
    position: relative;
}

.causes-card-image img {
    transition: opacity 0.4s ease-in-out;
  }
  
  .causes-card-image:hover img {
    opacity: 0.7; 
  }

.causes-button{
    background-color: rgba(255, 187, 62, 0.659);
    border: none;
    color: white;
    border-radius: 5px;
    padding: 8px 20px; 
    max-width: 150px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: absolute;
    top: 10px;
    right: 10px;
}

.causes-button:hover{
    background-color: rgb(255, 187, 62);
}

.loader {
    position: absolute;
    bottom: 0.5px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    box-sizing: border-box;
}
  
.loader-bar {
    position: relative;
    height: 8px;
    width: 100%;
    background-color: #eee;
    border-radius: 50px;
    overflow: hidden;
    margin-right: 10px;
}
  

.loader-bar::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 25%; 
    background-color: #fca61f;
    transition: width 0.5s ease-in-out;
}
  
.loader-circle {
    background-color: #fca61f;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 50px;
    white-space: nowrap;
    position: absolute;
    outline: 8px solid rgba(255, 187, 62, 0.692);
    outline-offset: 2px;
}
  

.causes-card:nth-child(1) .loader-bar::before {
    width: 25%;
}
  
.causes-card:nth-child(2) .loader-bar::before {
    width: 45%;
}
  
.causes-card:nth-child(3) .loader-bar::before {
    width: 75%;
}

.causes-card:nth-child(1) .loader-circle {
    left: 25%;
}
  
.causes-card:nth-child(2) .loader-circle {
    left: 43%;
}
  
.causes-card:nth-child(3) .loader-circle {
    left: 70%;
}

.causes-card-content{
    align-items: flex-start;
    justify-content: flex-start;
    background-color: white;
    border: 1px dashed rgb(190, 188, 188);
    padding: 20px;
    gap: 2px;
}
  
.causes-card-content h3{
    font-size: 28px;
    font-family: font1;
    margin-bottom: 5px;
}

.causes-card-content p{
    text-align: justify;
    margin-bottom: 5px;
}

.cause-icon{
    gap: 30px;
    margin-bottom: 20px;
}

.cause-icon i{
    color: rgba(252, 179, 45, 0.877);
    font-size: 20px;
}

.causes-card-content a{
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease-in;
    display: inline-block;
    margin-bottom: 30px;
}

.causes-card-content a:hover{
    text-decoration: underline;
    color: rgba(252, 179, 45, 0.877);
}



/* ///////////////////////// introduction section    ////////////////////////////////////// */

.intro-section {
    position: relative;
    background-image: url('./assets/background-image.jpg'); 
    background-size: cover;        
    background-position: center;    
    background-repeat: no-repeat; 
    padding: 150px 0;   
    z-index: 0;
  }
  
  .intro-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.693); 
    z-index: 1;
  }
  
  .introduction-card-section {
    position: relative;
    z-index: 2; 
    justify-content: center;
    align-items: stretch;
    gap: 60px;
  } 

  .intro-card {
    max-width: 410px;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 4px dashed rgb(209, 209, 209);
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
    z-index: 1;
  }
  
  .intro-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
  }

.intro-card .profile-pic{
    border: none;
    border-radius: 50%;
    max-width: 140px;
    width: 100%;
}

.intro-card h4{
    font-family: font1;
    font-size: 28px;
    color: black;
}

.intro-card h6{
    font-family: font1;
    font-size: 17px;
    color: rgb(125, 125, 125);
    margin-bottom: 20px;
}

.intro-card p{
    font-size: 20px;
    text-align: center;
    line-height: 24px;
}

.intro-mission-card h4{
    font-family: font1;
    font-size: 28px;
    color: black;
    margin-bottom: 20px;
    margin-top: 20px;
}

.intro-mission-card p{
    font-size: 19px;
    color: rgb(78, 78, 78);
    margin-bottom: 20px;
}

.intro-mission-card img {
    transition: opacity 0.4s ease-in-out;
}
  
.intro-mission-card:hover img {
    opacity: 0.7; 
}

.intro-mission-card {
    transition: border 0.4s ease-in-out;
  }
  
  .intro-mission-card:hover {
    border: 4px dashed rgb(209, 209, 209); 
    padding: 10px;
  }
  


/* ///////////////////////// feature section    ////////////////////////////////////// */

.feature-section {
    position: relative;
    background-image: url('./assets/slider-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    z-index: 0;
}

.feature-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);  
    z-index: 0;
}

.feature-content-section {
    gap: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1; 
    padding: 40px 0px;
}

.fea-content {
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.fea-content .fea-but {
    background-color: rgba(252, 180, 45, 0.727);
    border: none;
    color: white;
    border-radius: 5px;
    padding: 6px 10px;
    max-width: 200px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    margin-bottom: 20px;
}

.fea-content h2 {
    font-family: font1;
    color: white;
    text-align: left;
    font-size: 50px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.fea-content p {
    color: white; 
    text-align: left;
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.fea-content .loader-wrapper {
    width: 100%;
    position: relative;
    margin: 20px 0;
}
  
.fea-content .loader {
    width: 100%;
    height: 12px;
    background-color: #eee;
    border-radius: 50px;
    position: relative;
}
  
.fea-content .loader-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    background-color: #fca61f;
    border-radius: 50px;
    transition: width 0.5s ease-in-out;
}
  
.fea-content .loader-circle {
    position: absolute;
    top: -20px; 
    left: 35%; 
    transform: translateX(-50%);
    background-color: #fca61f;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 50px;
    outline: 6px solid rgba(255, 187, 62, 0.692);
    outline-offset: 1px;
    white-space: nowrap;
}
  

.fea-content .cause-icon {
    margin-top: 20px;
}

.fea-content  .btn{
    margin-top: 30px;
}

.fea-video iframe{
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fea-video iframe:hover{
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(252, 179, 45, 0.5);
}


/* ///////////////////////// volunter section    ////////////////////////////////////// */

.volunter-section {
    position: relative;
    background-image: url('./assets/background-image.jpg'); 
    background-size: cover;        
    background-position: center;    
    background-repeat: no-repeat; 
    padding: 150px 0;   
    z-index: 0;
}
  
.volunter-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.693); 
    z-index: 1;
}

.volunter-content-section {
    position: relative;
    z-index: 2; 
    justify-content: center;
    align-items: stretch;
    gap: 60px;
} 

.volunter-content-section h2{
    text-align: center;
    font-size: 45px;
    font-family: font1;
    letter-spacing: 1px;
}

.volunter-content-section p{
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
}

.volunter-card-section{
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.volunteer-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 300px;
    height: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
  
.volunteer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
  
.volunteer-card:hover img {
    transform: scale(1.05);
}
  
.volunter-identification {
    position: absolute;
    bottom: -100%; 
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    transition: bottom 0.4s ease;
}
  
.volunteer-card:hover .volunter-identification {
    bottom: 0; 
}
  
.volunter-identification h4 {
    font-size: 25px;
    margin: 0 0 3px;
    font-family: font1;
    letter-spacing: 1px;
    color: rgba(252, 179, 45, 0.877);
}
  
.volunter-identification p {
    font-size: 18px;
    font-family: font1;
    color: white;
    margin: 0;
}
  
.volunter-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 18px;
}
  

.volunter-content{
    justify-content: flex-start;
    align-items: flex-start;
}

.volunter-content h3{
    text-align: left;
    font-size: 28px;
    font-family: font1;
    letter-spacing: 1px;
    line-height: 48px;
    margin-bottom: 20px;
}

.volunter-content p{
    text-align: left;
    margin-bottom: 40px;
    font-size: 20px;
}

.volunter-checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
  }
  
  .volunter-checklist li {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .volunter-checklist i {
    color: rgba(252, 179, 45, 0.877); 
    margin-right: 20px; 
    font-size: 19px;
  }


  /* ///////////////////////// review section    ////////////////////////////////////// */

  .review-section {
    position: relative;
    background-image: url('./assets/slider-1.jpg'); 
    background-size: cover;        
    background-position: center;    
    background-repeat: no-repeat; 
    padding: 150px 0;   
    z-index: 0;
}
  
.review-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgba(0, 0, 0, 0.1); 
    z-index: 1;
}

.review-content-section {
    position: relative;
    z-index: 2; 
    justify-content: center;
    align-items: stretch;
    gap: 60px;
} 

.reviews-content h4{
    color: rgba(242, 197, 114, 0.877);
    font-family: font1;
    letter-spacing: 1px;
    font-size: 50px;
}

.reviews-content h5{
    font-size: 20px;
    font-family: font1;
}

.reviews-content i{
    font-size: 40px;
}



/* ///////////////////////// events section    ////////////////////////////////////// */


.events-main-section{
    padding: 100px;
}

.events-main-section h2{
    text-align: center;
    font-size: 45px;
    font-family: font1;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.events-main-section p{
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
    margin-bottom: 60px;
}

.event-card{
    cursor: pointer;
}

.event-card-image {
    width: 250px;
    height: auto;
    flex-shrink: 0;
  }
  
.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card-content{
    padding: 40px 20px;
    border: 1px dashed rgb(190, 188, 188);
    border-left: none;
    background-color: white;
    justify-content: flex-start;
    align-items: flex-start;
}

.event-card-content h3{
    text-align: left;
    font-size: 22px;
    font-family: font1;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.event-icon{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}


.event-icon p {
    margin: 0px;
    color: rgb(167, 167, 167);
    font-size: 14px;
    font-family: font1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-icon i{
    font-size: 15px;
    color: rgba(252, 179, 45, 0.877);
    margin-right: 20px;
}

.event-card-content .card-para{
    text-align: left;
    margin-bottom: 40px;
    font-size: 20px;
    margin-bottom: 60px;
    margin-top: 20px;
}


.custom-arrow {
    width: 45px;
    height: 45px;
    background-color: #f7a11fb5;
    color: #fff;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.carousel-control-prev.custom-arrow {
    left: -45px;
}
  
.carousel-control-next.custom-arrow {
    right: -46px;
}
  
.custom-arrow:hover {
    background-color: #e68a00;
    color: #fff;
}



/* ///////////////////////// feedback section    ////////////////////////////////////// */


.feedback-section h2{
    text-align: center;
    font-size: 45px;
    font-family: font1;
    letter-spacing: 1px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.feedback-section p{
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
    margin-bottom: 60px;
}

.feedback-section .feedback-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    min-width: 250px;
    cursor: pointer;
}

.feedback-card p{
    text-align: left;
    font-size: 20px;
}

.feedback-card-content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.feedback-profile-identification h4{
    font-family: font1;
    font-size: 20px;
    letter-spacing: 0.7px;
    margin: 0;
}

.feedback-profile-identification h6{
    font-family: font1;
    font-size: 17px;
    letter-spacing: 0.6px;
    margin: 0;
    color: rgb(155, 153, 153);
    margin-top: 7px;
}

.feedback-section .carousel-indicators {
    bottom: -50px; 
    margin: 0;
}

.feedback-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(183, 183, 183);
    opacity: 1;
    transition: background-color 0.4s ease-in-out;
    margin: 0 6px;
    margin-left: 3px;
    margin-right: 3px;
}

.feedback-section .carousel-indicators .active {
    background-color: rgba(252, 179, 45, 0.877);
    width: 11px;
    height: 11px;
}



/* /////////////////////////   stories section    ////////////////////////////////////// */

.stories-section{
    margin-top: 100px;
}

.stories-main-section{
    padding: 100px 10px;
    justify-content: center;
    align-items: center; 
}

.stories-main-section h2{
    text-align: center;
    font-size: 45px;
    font-family: font1;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.stories-main-section p{
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
    margin-bottom: 60px;
}

.stories-card-section{
    gap: 30px;
    padding-right: 40px;  
    border-right: 2px solid rgb(211, 211, 211);
}

.stories-card{
    transition: box-shadow 0.3s ease-in;
}

.stories-card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.stories-card-content{
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 30px;
    background-color: white;
}

.stories-card-content h6{
    font-family: font1;
    color: rgb(155, 153, 153);
    font-size: 18px;
}

.stories-card-content h6 i {
    color: rgb(155, 153, 153);
    font-size: 18px;
    margin-right: 5px;
}

.stories-card-content h3{
    font-size: 24px;
    letter-spacing: 1px;
    font-family: font1;
    margin-bottom: 15px;
    transition: color 0.3s ease-in;
    cursor: pointer;
}

.stories-card-content h3:hover{
    color: rgb(120, 119, 119);
}

.stories-card-content p{
    text-align: justify;
    margin-bottom: 30px;
}

.stories-card-content a{
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease-in;
    display: inline-block;
}

.stories-card-content a:hover{
    text-decoration: underline;
    color: rgba(252, 179, 45, 0.877);
}



/* /////////////////////////   branding section    ////////////////////////////////////// */



.branding-section {
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    cursor: grab;
  }
  
  .logo-track {
    display: flex;
    width: max-content;
    animation: scroll-rtl 30s linear infinite;
  }
  
  .logo-track img {
    height: 40px;
    margin: 0 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .logo-track img:hover {
    transform: scale(1.1);
    opacity: 1;
  }
  
  @keyframes scroll-rtl {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }


  /* /////////////////////////   footer section    ////////////////////////////////////// */
  
.footer-section{
    background-color: #232222;
}

.footer-main-card{
    color: #838383;
    padding: 100px 10px;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer-logo-section{
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-logo-section p{
    margin-top: 30px;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.1;
}

.footer-icon {
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}
  
.footer-icon a {
    color: rgba(252, 179, 45, 0.877);
    font-size: 18px;
    transition: color 0.3s ease-in;
}
  
.footer-icon a:hover {
    color: rgb(255, 255, 255);
}

.footer-navlinks-section{
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-navlinks-section h4{
    font-family: font1;
    letter-spacing: 1px;
    font-size: 25px;
    color: white;
}

.footer-navlinks{
    gap: 20px;
    margin-top: 30px;
}

.footer-navlinks a{
    text-decoration: none;
    color: #838383;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease-in;
    display: inline-block;
}

.footer-navlinks a:hover{
    text-decoration: underline;
    color: rgba(252, 179, 45, 0.877);
}

.footer-icon-contact{
    gap: 20px;
    margin-top: 30px;
}

.footer-icon-contact li{
    text-decoration: none;
    color: #838383;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease-in;
    display: inline-block;
}

.footer-icon-contact i{
    color: rgba(252, 179, 45, 0.877);
    font-size: 180x;
    margin-right: 10px;
}

.footer-legal-information{
    justify-content: space-between;
    align-items: center;
    padding: 50px 10px;
}

.footer-legal-information h6{
    font-size: 17px;
    color: white;
}

.footer-legal-navlinks a{
    text-decoration: none;
    color: #838383;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease-in;
    display: inline-block;
}

.footer-legal-navlinks a:hover{
    text-decoration: underline;
    color: rgba(252, 179, 45, 0.877);
}


.top-to-header{
    background-color: #f8b864;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    border-radius: 50%;
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    transition: baclground-color 0.3s ease-in-out;
}



.top-to-header:hover{
    background-color: #aa650a;
    color: #fff;
}

.top-to-header i{
    color: white;
    font-size: 18px;
}