* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
body{
    font-family: "Open Sans", sans-serif;
}
/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e3e6ee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3vw;
  font-size: 0.93rem;
}
.topbar-contact {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  color: #fd6a21;
}
.topbar-contact i { 
  color: #fd6a21;  
  margin-right: 0.4em; 
}
.topbar-social {
  display: flex;
  gap: .7rem;
}
.topbar-social a {
  color: #fd6a21;
  text-decoration: none;
  font-size: 1.13em;
  transition: color .15s;
}
.topbar-social a:hover { 
  color:  #555;
}

/* Navbar */
.btn2{
    margin-left: 29px;
    padding: 10px;
    /* background: #2cb34f; */
    border: 2px solid #eaf2f5;
    border-radius: 9px;
}
.btn2:focus{
  border-color: #ff5e14;
}

header{
    /* background-image: url('../images/shape-a.png'); */
    background-color: #fff;
    border-bottom: 1px solid #e3e6ee;
    width: 100%;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    position: relative;
}
header .top-nav-container{
    transition: all 0.0s ease-in-out;
    -webkit-transition: all 0.0s ease-in-out;
    -moz-transition: all 0.0s ease-in-out;
    -ms-transition: all 0.0s ease-in-out;
    -o-transition: all 0.0s ease-in-out;
}
header .top-nav-container.fixed{
    position: fixed;
    /* margin-top: -38px; */
    width: 100%;
    background-color: #fff;
    /* height: 70px; */
    z-index: 2;
    box-shadow: 0px 0 50px 0px rgb(80 101 142 / 8%);
}
header .top-nav-container .top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90px;
    transition: all 0.0s ease-in-out;
    -webkit-transition: all 0.0s ease-in-out;
    -moz-transition: all 0.0s ease-in-out;
    -ms-transition: all 0.0s ease-in-out;
    -o-transition: all 0.0s ease-in-out;
}


.top-nav .logo {
    color: #2cb34f;
    font-weight: 700;
    font-size: 1.3em;
    display: flex;
    align-items: center;
}
.top-nav .logo img {
  width: 100px; 
  /* height: 36px;  */
  border-radius: 50%;
  /* background: var(--accent); */
  display: inline-block;
}
header .top-nav-container .btn-icon{
    display: block;
    cursor: pointer;
    position: absolute;
    right: 5%;
    z-index: 3;
}
header .top-nav-container .btn-icon svg{
    font-size: 26px;
    color: #2cb34f;
}
header .overlay{
    background-color: rgb(44, 179, 67, 0.7);
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
header .top-nav-container .close-icon{
    display: none;
    cursor: pointer;
    position: fixed;
    right: 5%;
    z-index: 3;
    width: 35px;
    height: 35px;
    padding: 4px 9px;
    background-color: #f7f9fe;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
header .top-nav-container .close-icon svg{
    font-size: 26px;
    color: #555;
}
header .overlay-menu{
    display: none;
    position: fixed;
    width: 250px;
    height: 100vh;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: white;
    padding: 30px;
}
header .overlay-menu ul li{
    list-style: none;
    margin: 15px;
}
header .overlay-menu ul li a{
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}
header .overlay-menu ul li a:hover{
    color: #fd6a21;
    background: #f9f2ed;
    padding: 8px;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
}
header nav ul li{
    list-style-type: none;
    display: inline-block;
    margin: 0 276px;
}
header nav ul li a{
    text-decoration: none;
    color: #555;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 14px;
}
.active{
    color: #fd6a21;
    background: #f9f2ed;
}
.overlay-menu ul li a.active{
    color: #fd6a21;
    background: #f9f2ed;
}
header nav{
    display: none;
}
header .top-nav-container .icon-top{
    z-index: 3;
    display: none;
    position: fixed;
    padding: 2px;
    right: 2.5%;
    bottom: 3.5%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #2cb34f;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
header .top-nav-container .icon-top a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}

/* hyper */
.navbar-links{
    font-size: 1.03em;
    gap: 1em;
}
.navbar-links span {
    color: #ff5e14;
    font-weight: 600;
}
.navbar-links a {
    color: #687187;
    text-decoration: none;
    font-weight: 500;
}
.navbar-links a:hover {
  color: #ff5e14;
}




/* ----------------------------------responsive---------------------------- */

@media (min-width: 768px) {
    .protect{
        left: 75%;
    }
    .protect {
        right: 75%;
    }
    /* contact us */
    .contact-title .contact-crane {
      display: block;
    }
}
@media (min-width: 992px) {
    header nav{
        display: flex;
    }
    header .top-nav-container .btn-icon{
        display: none;
    }
    header {
        flex-direction: row;
    }
    header .banner {
        font-size: 85px;
    }
    header .banner {
        text-align: left;
    }
    header .banner {
        flex-direction: row;
    }
    header .banner {
        flex-direction: row;
        justify-content: space-between;
    }
    /* hero */
    .genral-hero-div .line2 {
        display: inline-block;
        align-self: center;
        width: 6px;
        height: 60px;
        background: #2cb34f;
        margin: 20px;
    }

}

@media (max-width: 992px){
  header .top-nav-container.fixed {
    margin-top: -40px;
  }
    /* hero */
    .genral-hero-div{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .hero-content{
        padding: 60px 100px;
    }
    .hero-content h1 {
        font-size: 1.7em;
    }
    .hero-main{
        margin: 12px 0;
        padding-right: 48px;
    }
    .hero-main img
    {
        width: 250px;
    }
    .hero-stats
    {
        min-width: 100px;
    }
    .hero-stats > div {
    font-size: 10px;
    }
    /* About Us Family Business */
    .testimonials-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .testimonial-card {
        max-width: 95vw;
        min-width: 0;
    }
    .testimonials-header h2 {
        font-size: 2rem;
    }

    /* stocks */
  .navbar-links { gap: 1em; }
  .navbar-cta { margin-left: .5em; }
  .projects-list { padding: 0 2vw; }
  .project-card, .project-card.reverse { flex-direction: column; }
  .project-img, .project-info { max-width: 100%; flex-basis: 100%; }
  .project-info { padding: 1.3em 1.3em 1.7em 1.3em; }

    /* steps */
  .steps-flow {
    gap: 16px;
  }
  .steps-flow::before {
    left: 2%;
    right: 2%;
  }
  .step-item {
    min-width: 140px;
    max-width: 170px;
    font-size: 0.95em;
  }
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1.05em;
  }
}

@media (max-width: 768px){
    .award-badge
    {
        font-size: 1em;
    }
    .hero-content h1 {
        font-size: 1.5em;
    }

    /* our partners */
            .button-group {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .image-btn {
                width: 90%;
                max-width: 300px;
            }
            
            .modal-content {
                max-width: 95%;
                max-height: 70vh;
                margin-top: 35%;
            }
            
            .close {
                top: 15px;
                right: 20px;
                font-size: 35px;
            }
            
            .caption {
                font-size: 1.2rem;
                padding: 15px 0;
            }
            
            h1 {
                font-size: 2rem;
            }
     /* steps */
    .steps-flow {
        margin-top: 31px;
        gap: 2p
    }
    .steps-flow::before {
        display: none;
    }
    .step-item {
        max-width: 320px;
        min-width: 0;
    }
}

@media (max-width: 668px){
    header .top-nav-container.fixed {
      margin-top: -60px;
    }
    .topbar{
        font-size: 0.8rem;
    }
    /* hero */
    section .line {
        width: 20px;
    }
    .genral-hero-div{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .hero-content{
        padding: 10px;
    }
    .award-badge
    {
        color: #555;
        font-size: 0.8em;
    }
    .genral-hero-div {
        gap: 0px;
    }
    .hero-content h1 {
        font-size: 1em;
    }
    .hero-services
    {
        margin: 1em 0 1em 0;
        padding: 12px 15px;
    }
    .hero-services span {
        font-size: 0.8em;
    }
    .hero-discrip
    {
        max-width: 400px;
    }
    .hero-main{
        display: block;
        padding: 0px;
    }
    .hero-main img
    {
        margin: -45px 0px 0px 0px;
    }
    .hero-stats
    {
        display: inline-flex;
        gap: 2em;
    }
    .hero-stats > div {
        font-size: 10px;
    }
    .hero-main-footer {
        width: 100%;
        height: 100%;
        padding: 0px;
        margin-top: 0px;
    }

    /* About Us Family Business */
    .testimonials-subtitle{
        font-size: 0.8em;
    }
    .testimonials-list .discrip
    {
        font-size: 85%;
    }
    .testimonials-section {
        padding: 25px;
    }
    .testimonial-card {
        padding: 20px 12px 18px 12px;
        font-size: 0.98rem;
    }
    .testimonials-header h2 {
        font-size: 1.3rem;
    }

    /* our partners */
    .service-content .steps-desc{
        margin: 20px 10px;
    }

    /* stocks */
  .topbar, .navbar { flex-direction: column; gap: .6em;}
  .navbar-links { flex-wrap: wrap; gap: .7em; }
  .navbar, .topbar { padding: .7em 2vw; }
  .hero h1 { font-size: 1.4em; }
  .section-title h2 { font-size: 1.2em; }
  .projects-list { gap: 1.3em; }
  .project-info { padding: 1em; }
  .slider-images {margin-top: 15%;}

   /* steps */
    .steps-section h2 {
        font-size: 1.15em;
        margin-bottom: 28px;
    }
    .steps-label {
        font-size: 0.97em;
    }
    .step-title {
        font-size: 1em;
  }

  /* contact us */
  .form-row{
    display: block;
  }
}

@media (max-width: 400px){
    header .top-nav-container.fixed   
    {
      margin-top: -60px  !important;
    }
    .topbar{
        font-size: 0.8rem;
        font-size: 10px;
    }
    .top-nav .logo img{
        width: 80px;
        margin-left: 11px;
    }
    .top-nav .logo {
        font-size: 0.8em;
    }
    /* hero */
    .award-badge {
        margin-bottom: 7px;
        font-size: 0.8em;
    }
    .hero h1 {
        font-size: 0.8em;
    }
    .hero-services
    {
        /* margin: 1em 1em 0.5em; */
        padding: 12px 15px;
    }
    .hero-services span {
        font-size: 0.5em;
    }
    .hero-discrip
    {
        font-weight:600 ;
        font-size: 0.8em;
        margin: 0 22px;
        margin-bottom: 1em;
    }
    .hero-main{
        display: block;
        padding: 0px;
    }
    .hero-main img
    {
        margin: -45px 0px 0px 0px;
    }
    .hero-stats
    {
        display: inline-flex;
        gap: 2em;
    }
    .hero-stats > div {
        font-size: 8px;
    }
    .hero-main-footer {
        width: 100%;
        height: 100%;
        padding: 0px;
        margin-top: 0px;
    }

    /* About Us Family Business */
    .testimonials-section {
        padding: 25px;
        margin-top: 30px;
    }
    .testimonials-subtitle .line{
      width: 20px;
    }
    .testimonials-subtitle{
        font-size: 0.8em;
    }
    .testimonials-list .discrip
    {
        font-size: 69%;
        text-align: justify;
        margin-bottom: 15px;
    }
    .testimonial-card {
        padding: 20px 15px 18px 15px;
        font-size: 0.98rem;
    }
    .testimonials-header h2 {
        font-size: 1.3rem;
    }
    .testimonial-card h3 {
      font-size: 1rem;
    }
    .testimonial-card p {
      font-size: 0.8em;
    }

    /* our partners */
    .service-content .steps-desc{
        margin: 20px 10px;
    }

    /* stocks */
  .topbar, .navbar { flex-direction: column; gap: .6em;}
  .navbar-links { flex-wrap: wrap; gap: .7em; }
  .navbar, .topbar { padding: .7em 2vw; }
  /* .hero h1 { font-size: 1.4em; } */
  .section-title h2 { font-size: 1.2em; }
  .projects-list { gap: 1.3em; }
  .project-info { padding: 1em; }
  .slider-images {margin-top: 15%;}

   /* steps */
    .steps-section h2 {
        font-size: 1.15em;
        margin-bottom: 28px;
    }
    .steps-label {
        font-size: 0.97em;
    }
    .step-title {
        font-size: 1em;
  }

  /* contact us */
  .form-row{
    display: block;
  }
}


@media (min-width:1000px){
    header .top-nav-container.fixed {
    margin-top: -40px;
  }
    .container,.container-lg,.container-md,.container-sm,.container-xl{
        max-width:1200px
    }
    .btn{
        font-size: 12px;
        padding: 10px 12px;
    }
    header nav ul li {
        margin: 0 8px;
    }
    header nav ul li a {
        font-size: 13px;
    }
    .top-nav .logo
    {
        font-size: 1.1em;
    }
    .top-nav .logo img
    {
        width: 90px;
    }
}



/* main */


 @media (min-width:576px){
    .container,.container-sm{
        max-width:800px
    }
}

@media (min-width:768px){
    .container,.container-md,.container-sm{
        max-width:900px
    }
}

@media (min-width:992px){
    .container,.container-lg,.container-md,.container-sm{
        max-width:960px
    }
}



@media (min-width:1200px){
    .container,.container-lg,.container-md,.container-sm,.container-xl{
        max-width:1200px
    }
    .btn{
        margin-left: 41px;
    }
}

@media (min-width:1400px){
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{
        max-width:1320px
    }
}



.hero-divider {
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(-45deg,#14235b 0 12px,transparent 12px 24px);
  opacity: .08;
  /* margin-bottom: 2.2rem; */
  margin-top: 0;
}




/* Section Title */
.section-title {
  /* text-align: center; */
  padding-bottom: 53px;
  /* margin: 2rem 0 0 0; */
}

section .line {
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #478613;
    margin-right: 10px;
    border-radius: 2px;
}

.section-title .section-subtitle {
  /* color: #b1b5c9; */
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: .5em;
}

.section-title h2 {
  /* color: #fd6a21; */
  font-size: 2em;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
  margin-bottom: 4%;
}

.section-title p{
  padding-top: 4%;
  font-weight: bold;
  font-size: large;
}

.section-title .highlight {
  color: #2cb34f;
  font-weight: 800;
}


/* news */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

.events-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.events-header h2 {
  font-size: 1.19rem;
  font-weight: 500;
  margin: 0;
  color: #2cb34f;
  letter-spacing: 0.01em;
}

.events-view-toggle {
  display: flex;
  gap: 1.5em;
}

.events-view-toggle button {
  background: none;
  border: none;
  color: #b9b9b9;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  padding: 0;
  outline: none;
}

.events-view-toggle .active,
.events-view-toggle button:disabled {
  color: #18a286;
  cursor: default;
}
.events-view-toggle button:disabled {
  opacity: .5;
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 2.2rem;
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
}

.event-date {
  width: 60px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: .5em;
}
.event-month {
  display: block;
  font-size: .95em;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
  color:#2cb34f;
}
.event-day {
  display: block;
  font-size: 2em;
  font-weight: 700;
  color: #fd6a21;
  letter-spacing: -1px;
  line-height: 1.1;
}

.event-image {
  width: 240px;
  height: 150px;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f6f6;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-details {
  flex: 1 1 0;
  min-width: 180px;
}

.event-title {
  font-size: 1.13rem;
  /* font-weight: 600; */
  margin: 0 0 0.2em 0;
  color: #fd6a21;
}

.event-address {
  font-style: normal;
  color: #666;
  font-size: 0.97em;
  margin-bottom: .2em;
}

.event-time {
  font-size: 0.97em;
  color: #888;
  margin-bottom: .45em;
}

.event-desc {
  font-weight: bold;
  font-size: 0.99em;
  color: #555;
  margin: 0 0 1.1em 0;
  max-width: 460px;
}

.event-link {
  color: #18a286;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  display: inline-block;
  margin-top: .5em;
  transition: color .15s;
}

.event-link:hover {
  color: #0e6f5c;
  text-decoration: underline;
}

.prev-events-link {
  margin-top: 2.5em;
  font-size: 1.05em;
}
.prev-events-link a {
  color: #888;
  text-decoration: none;
  font-weight: 500;
  transition: color .14s;
}
.prev-events-link a:hover {
  color: #18a286;
  text-decoration: underline;
}

/* Responsive Styling */
@media (max-width: 900px) {
  .event-card {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .event-image {
    width: 100%;
    height: 180px;
    margin-bottom: .7em;
  }
  .event-date {
    width: auto;
    display: flex;
    gap: .8em;
    justify-content: flex-start;
    margin-bottom: .3em;
    margin-top: 0;
  }
  .event-day {
    margin-left: .1em;
  }
}

@media (max-width: 600px) {
  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2em;
  }
  .event-card {
    padding: 1.2rem 0;
  }
  .event-details {
    min-width: 0;
  }
}

/* newss2 */
.page-title{
  background: url(../images/algamil/slider/11.webp) center center / cover no-repeat local;
}
.page-title:before{
  content: "";
  background: #2cb34ffa;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

video{
  width: -webkit-fill-available;
}

