@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;

    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/*
-------------------------------
Header-Area
-------------------------------
*/

.header-area {
    clear: both;
    padding: 12px 0;
    background: #005994 !important;
    position: relative;
}

.fab{
    color: white;
    position: relative;
}

.header-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    word-spacing: 10px;

}

.header-social li {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.header-social li:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #e9e9e9;
    top: 0;
    left: -15px;
}

.header-social li:first-child:before {
    display: none;
}

.social-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-bar li {
    display: inline-block !important;
    margin-right: 15px !important;
}

.social-bar li:last-child {
    margin-right: 0;
}

.social-bar li:before {
    display: none;
}

.social-bar li a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.social-bar li a:hover {
    color: #f5f5f5;
}

.language a {
    text-decoration: none;
    color: #fff;
}


.language i {
    margin-right: 7px;
}

.dropdown-menu a {
    text-decoration: none;
    color: #333;
}

.header-info {
    text-align: right;
    font-size: 14px;
    position: relative;
}

.header-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-info li {
    position: relative;
    display: inline-block;
    color: #fff;
    margin-left: 30px;
}

.header-info li:first-child {
    margin-left: 0;
}

.header-info li:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #e9e9e9;
    top: 0;
    left: -17px;
}

.header-info li:first-child:before {
    display: none;
}

.header-info li i {
    margin-right: 5px;
    color: #fff;
}

.header-info li a {
    color: #fff;
    transition: all 0.3s;
    font-size: 14px;
}

.header-info li a:hover {
    color: #f5f5f5;
}



/* Sticky Navbar */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: top 1.3s;
}

#navbar .logo img {
    width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 15px;
}

.nav-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 17px;
}

.nav-menu a:hover {
    text-decoration: underline;
    top: 10px;
    position: relative;
    color: green;
}

.nav-menu .active{
    text-decoration: underline;
    position: relative;
    text-decoration-color: #6a9234;
}

/* Submenu Styles */
.menu-item-has-children:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 5px;
    width: 250px;
    top: 95px;
}


.dropdown-menu li{
    padding: 15px;
}

.dropdown-menu li a {
    color: rgb(0, 0, 0);
    padding: 10px 15px;
}

.dropdown-menu li a:hover {
    background-color: #575757;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: rgb(0, 0, 0);
    background: none;
    border: none;
    cursor: pointer;
}



.c-item{
    height: 800px;

}


.c-img{
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}


h1{
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #f3f3ed;
    font-size: 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}




.part{
    position: relative;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fffdfd;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    bottom: 150%;
}



button[type="submit"] {
    align-self: flex-end; /* Align the button at the bottom of the row */
    padding: 10px 20px; /* Adjust button padding */
    font-size: 16px; /* Adjust button font size */
}

  
/* Mobile Devices (up to 575px) */
@media only screen and (max-width: 575px) {
    .carousel-caption {
      padding: 10px;
      text-align: center;
    }
  
    .carousel-caption h1 {
      font-size: 1.5rem; /* Reduce heading size */
      line-height: 1.3;
      width: 100%;
    }
  
    .carousel-caption p {
      font-size: 0.9rem;
      left: 140px;
      color: rgb(255, 255, 243);
    }

    #search-form {
        background-color: transparent !important; /* Removes the bg-light background */
        box-shadow: none; /* Optional: Removes the shadow */
      }
  }
  
  /* Tablets (576px - 991px) */
  @media only screen and (min-width: 576px) and (max-width: 991px) {
    .carousel-caption {
      padding: 20px;
      text-align: center;
    }
  
    .carousel-caption h1 {
      font-size: 1.8rem;
    }
  
    .carousel-caption p {
      font-size: 1rem;
    }
  }
  


/* Responsive Styles */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        height: 1850px;
        padding: 0;
    }


    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        background-color: #005994 !important;
        list-style: none;
        padding: 10px 0;
        margin: 0;
        border-radius: 5px;
        width: 250px;
        top: 95px;
    }
    
    
    .dropdown-menu li{
        padding: 15px;
    }
    
    .dropdown-menu li a {
        color: white;
        padding: 10px 15px;
        bottom: 20px;
        position: relative;
    }

    .nav-menu li {
        margin-left: 15px;
        padding: 10px;
        top: 20px;
        position: relative;
    }


    .header-social {
        text-align: center;
        position: relative;
    }

    .header-social li {
        margin-right: 0;
    }

    .header-social li:last-child {
        margin-right: 0;
    }
    

    .header-social li:before {
        display: none;
    }

    .header-info {
        text-align: center;
        position: relative;
        left: 30%;
    }

    .header-info li {
        position: relative;
        display: table-row-group;
        color: #fff;
        margin-right: 0;
        text-align: center;
        justify-content: center;
    }

    .header-info li:before {
        height: 50%;
        background-color: #e9e9e9;
        top: 9px;
        left: -17px;
        content: none;
    }

    
}



  /* Form Container */
  .filtr {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    top: 100px;
    position: relative;
  }
  
  /* Inner Form Layout */
  .inner_form {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .search_inner_row {
    flex: 1 1 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: white;
  }
  
  /* Form Controls */
  .formacontrol {
    flex: 1;
  }
  
  .search-input-new,
  .width290,
  .width120,
  .textbox {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
  }
  
  .search-input-new:focus,
  .width290:focus,
  .width120:focus,
  .textbox:focus {
    border-color: #007bff;
    outline: none;
  }
  
  /* Select Dropdowns */
  select.search-input-new,
  select.width290 {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center/12px;
    padding-right: 30px;
  }
  
  /* Price and Square Range Inputs */
  .width120 {
    max-width: 120px;
  }
  
  /* Checkbox */
  .search-input-new[type="checkbox"] {
    width: auto;
    margin-right: 10px;
  }
  
  .formalabel {
    font-size: 14px;
    color: #555;
  }
  
  /* Search Button */
  .inner_search_button_row {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
  }
  
  .link_blue.inner_search_button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .link_blue.inner_search_button:hover {
    background-color: #0056b3;
  }
  
  /* Hide/Show Filter Button */
  .hide_filtr {
    text-align: center;
    margin-top: 10px;
  }
  
  .hide_filtr.collapsed {
    display: none;
  }
  
  .filtr-label {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
  }
  
  /* Clearfix */
  .clear {
    clear: both;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .search_inner_row {
      flex-direction: column;
    }
  
    .width120 {
      max-width: 100%;
    }
  
    .inner_form {
      gap: 10px;
    }
  }


.about-h1{
    position: relative;
    top: 0;
}



































































































/*
-------------------------------
Subscribe
-------------------------------
*/

.subscribe-area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
}

.subscribe-area:before {
    position: absolute;
    content: '';
    background-color: #0a2334;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.subscribe-area .headline {
    color: #fff;
    max-width: 530px;
    margin: 0 auto;
}

.headline.white h2 {
    color: #fff
}

.subscribe-area .headline p {
    padding: 0 50px;
    color: #b9b9b9;
}

.subscribe-form {
    width: 100%;
    max-width: 530px;
    margin: auto;
    position: relative;
    margin-top: 40px;
}

.subscribe-form input {
    height: 50px;
    padding-left: 20px;
    width: 100%;
    border-radius: 50px;
    border: none;
    padding-right: 150px;
}

.subscribe-form .btn-sub {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 150px;
    border-radius: 50px;
    background: #f1634c;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.subscribe-form .btn-sub:hover {
    background: #333;
}







/*
-------------------------------
Footer
-------------------------------
*/

.main-footer {
    position: relative;
    background: #0b306e;
}

.top-footer {
    position: relative;
}

.top-footer:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 1px;
    left: 0px;
    bottom: 0px;
}

.footer-logo {
    position: relative;
    padding: 41px 85px 35px 0px;
}

.topfooter-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 5000px;
    height: 100%;
    background: #0b2c64;
    clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 0% 100%, 0px 0px);
}

.footer-logo img {
    position: relative;
}

.footer-address {
    width: 100%;
    float: left;
    margin-top: 36px;
    margin-bottom: 36px;
}

.footer-address ul {
    width: 100%;
}

.footer-address ul li {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0px 30px 0px 50px;
}

.footer-address ul li:last-child {
    padding: 0px 0px 0px 50px;
}

.footer-address ul li:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    height: 65px;
    top: -10px;
    right: 28px;
}

.footer-address ul li:last-child:before {
    display: none;
}

.footer-address ul li i {
    position: absolute;
    left: 0px;
    top: 6px;
    font-size: 30px;
    line-height: 30px;
    color: #f1634c;
}

.footer-address ul li h5 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}

.footer-address ul li p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #c5c5c5;
    font-weight: 600;
    margin-bottom: 0px;
}

.footer-area {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #d4d4d4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 50px;
}

.footer-ribbon::before {
    display: block;
    position: absolute;
    top: 0;
    left: -1.5rem;
    width: 0;
    height: 0;
    content: '';
    border-right: 15px solid #6a9234;
    border-top: 17px solid transparent;
}

.footer-area h1 {
    font-size: 28px;
}

.footer-area h2 {
    font-size: 26px;
}

.footer-item {
    overflow: hidden;
    margin-top: 30px;
}

.footer-item img {
    margin-bottom: 16px;
    height: 60px;
}

.footer-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 40px;
    border-bottom: 1px solid #848383;
}

.footer-item .sm_fbtn {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-item h3:after {
    content: "";
    position: absolute;
    width: 50px;
    background: #f39586;
    left: 0;
    bottom: -2px;
    height: 3px;
}

.footer-about p {
    margin: 0;
}

.footer-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-item li {
    display: block;
    padding-bottom: 6px;
}

.footer-item li a {
    position: relative;
    display: inline-block;
    color: #d4d4d4;
    line-height: 1.5;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-item a:hover,
.footer-item li a:hover {
    color: #f1634c;
}

.textwidget {
    padding-right: 50px;
}

.footer-item li p i {
    margin-right: 5px;
}

.footer-recent-item {
    display: table;
    margin-bottom: 15px;
}

.footer-recent-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 105px;
    padding-right: 8px;
}

.footer-recent-photo img {
    max-width: 100%;
    height: auto;
}

.footer-recent-text {
    vertical-align: top;
    display: table-cell;
    padding-left: 5px;
}

.footer-recent-text a {
    vertical-align: top;
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.footer-post-date {
    position: relative;
    font-size: 13px;
    color: #b7b7b7;
    padding-left: 21px;
}

.footer-post-date:before {
    position: absolute;
    content: '\f073';
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 0;
}


/*Footer-Copyright*/

.footer-copyrignt {
    padding-top: 35px;
    padding-bottom: 40px;
}

.copyright-text p {
    color: #d4d4d4;
    margin: 0;
    margin-top: 5px;
    padding-left: 60px;
    padding-right: 60px;
}

.footer-social {
    float: right;
}

.footer-social a {
    display: inline-block;
    color: #d4d4d4;
    font-size: 16px;
    margin-left: 20px;
}

.footer-social a:hover {
    color: #f1634c;
}




/*Banner Section*/

.banner-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 300px;
    color: #fff;
    object-fit: cover!important;
}

.banner-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
}

.banner-area img {
    object-fit: cover!important;
    height: 300px;
    width: 100%;
}

.banner-text {
    position: relative;
}

.banner-text h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.banner-text ul li {
    display: inline-block;
}

.banner-text ul li a {
    position: relative;
    font-size: 18px;
    color: #fff;
}

.banner-text ul li a:after {
    content: "|";
    color: #fff;
    font-size: 18px;
    margin: 0 5px 0 9px;
}

.banner-text ul li span {
    color: #f1634c;
    font-size: 18px;
}



/* Main container animation */
.service-widget {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #ffffff;
    animation: fadeIn 1s ease-out;
    opacity: 0; /* Hidden initially */
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* List animations */
.service-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-widget li {
    margin-bottom: 12px;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px); /* Match JS initial transform */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-widget li:nth-child(1) {
    animation-delay: 0.2s;
}

.service-widget li:nth-child(2) {
    animation-delay: 0.4s;
}

.service-widget li:nth-child(3) {
    animation-delay: 0.6s;
}

.service-widget li:nth-child(4) {
    animation-delay: 0.8s;
}

.service-widget li:nth-child(5) {
    animation-delay: 1s;
}

.service-widget li:nth-child(6) {
    animation-delay: 1.2s;
}

/* Link animations */
.service-widget li a {
    background-color: #5963f3;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.service-widget li a:hover {
    background-color: #f0f8ff;
    color: #df2d2d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.service-widget li a:focus {
    outline: 3px solid #007bff;
    background-color: #e6f7ff;
}

.service-widget li.active a {
    font-weight: 700;
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
    transform: scale(1.05);
    animation: pulse 1s infinite alternate;
}

.service-widget li.active a i {
    color: #ffffff;
}

/* Icon animation */
.service-widget li a i {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
    animation: iconBounce 1s infinite alternate;
}

/* Keyframes for animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

/* Responsive settings */
@media (min-width: 768px) {
    .service-widget {
        max-width: 400px;
    }

    .service-widget li a {
        font-size: 18px;
        padding: 0.75rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .service-widget {
        max-width: 500px;
    }

    .service-widget li a {
        font-size: 20px;
        padding: 1rem 1.5rem;
    }
}







