@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --primary: #197274;
    --secondary: #002f34;
    --text-color: #262627;
    --heading-color: #232323;
    --link-color: #197274;
    --link-hover-color: #18100f;
}

::placeholder {
    font-size: .8rem;
    font-style: italic;
    color: rgba(58, 57, 57, 0.39);
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 0;
}

html {
    font-optical-sizing: auto;
    font-size: 100%;
    font-style: normal;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Nunito", sans-serif;
    line-height: inherit;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    margin: 0;
}

:focus {
    outline: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important
}

.custom-form-label {
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 700;
}

.btn-blue {
    background-color: #2490eb;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-blue:hover {
    background-color: #18100f; 
    color: #ffffff;
}

.btn-grey {
    background-color: #6c757d;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-grey:hover {
    background-color: #5c636a; 
    color: #ffffff;
}

.btn-blue:disabled {
    background-color: #2490eb;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.65;
}


.btn-white {
    background-color: #ffffff;
    color: var(--text-color);
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-white:hover {
    background-color: #dfdcdc; 
    color: var(--text-color);
}

/* Styles for desktop menu */
header {
    border-bottom: 1px solid #ccc;
}
header .desktop-menu .desktop-menu-wrapper .top-menu {
    background-color: var(--primary);
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul {
    margin: 0;
    padding: 0;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li a .email-icon {
    margin-top: 3px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li a .phone-icon {
    margin-top: 3px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul {
    margin: 0;
    padding: 0;
    display: flex;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul li a {
    color: #ffffff;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul li a:hover {
    background-color: #219294;
}

header .desktop-menu .main-menu {
    background-color: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .nav-menu ul {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    list-style: none;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .nav-menu ul li {
    position: relative;
    margin-right: 30px;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .nav-menu ul li a {
    font-size: 14px;  
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 22px;
    text-decoration: none;
    color: var(--text-color);
    font-family: inherit;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .cta-btn .btn-blue {
    background-color: #2490eb;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .cta-btn .btn-blue .bi {
    margin-top: 3px;
    margin-right: 5px;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .cta-btn .btn-blue:hover {
    background-color: #18100f;
}

/*
header .desktop-menu .main-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 1.6s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
*/

/* Styles for mobile menu */
.mobile-menu .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040; /* Bootstrap's modal z-index */
    display: none;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1041; /* Bootstrap's modal z-index + 1 */
    transition: left 0.3s ease;
}

.mobile-menu-content.show {
    left: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.mobile-menu .menu-list {
    padding: 20px 0px;
}

.mobile-menu .menu-list ul li {
    border-bottom: 1px solid #cccccc7a;
    padding: 10px 15px;
    
}

.mobile-menu .menu-list ul li:hover {
    background-color: #b6d8f5;
}

.mobile-menu .menu-list ul li a {
    text-decoration: none;
    color: var(--link-color);
    display: block;
}

.mobile-menu .menu-list ul li a:hover {
    color: var(--link-hover-color);
}


/* Main styles */
.wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Footer styles */
footer {
    position: relative;
    background-color: var(--secondary);
    padding-top: 60px;
}

.no-footer {
    padding-top: 0;
}

.no-footer .copyright {
    padding-top: 10px;
    padding-bottom: 10px;
}

.no-footer .copyright p {
    margin-bottom: 0;
    font-size: .85rem;
}

footer .copyright {
    border-top: 1px solid #ffffff31;
    padding-top: 20px;
}

footer .newsletter-wrapper {
    background-color: var(--primary);
    padding: 50px 30px;
    width: 80%;
    margin: 0 auto;
}

footer .main-text h4 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
}

footer .newsletter-wrapper .form-fields {
    margin-top: 20px;
}

footer .newsletter-wrapper .form-fields .btn-white {
    margin-top: 15px;
}

@media (min-width: 992px) { 
    footer .newsletter-wrapper {
        padding-right: 40px;
        padding-left: 40px;
    }
    footer .newsletter-wrapper .form-fields {
        display: flex;
        margin-top: 0px;
    }

    footer .newsletter-wrapper .form-fields .form-control {
        padding: 10px 15px;
    }

    footer .newsletter-wrapper .form-fields .btn-white {
        margin-left: 10px;
        margin-top: 0px;
    }
}

footer .newsletter-wrapper .form-fields .form-control {
    border-radius: 3px !important;
}

footer .f-desc {
    color: #ffffff;
}


footer .social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
footer .social-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: all 0.3s ease;
}
  

footer .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
  

footer .social-icons a:nth-child(1) .social-icon:hover {
    background-color: #1877F2;
}
  
footer .social-icons a:nth-child(2) .social-icon:hover {
    background-color: #000000;
}
  
footer .social-icons a:nth-child(3) .social-icon:hover {
    background-color: #FF0050;
}
  
footer .social-icons a:nth-child(4) .social-icon:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}


footer h5 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

footer .custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

footer .custom-list li a {
    text-decoration: none;
    color: #ffffff;
}

footer .custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>') no-repeat center center;
    background-size: 16px 16px;
  }

  footer .custom-contact-list li {
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  footer .custom-contact-list svg {
    margin-right: 10px;
    fill: #ffffff;
  }
  
/* FAQ styles */
.faq-header {
    background-color: #f7faff;
    padding: 100px 25px;
}

.accordion-button:not(.collapsed) {
    background-color: #2490eb;
    color: #ffffff;
    font-weight: 600;
}

.accordion-button {
    background-color: #f4f6f9;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: var(--bs-accordion-btn-icon-transform);
}

.custom-page-content p {
    font-family: inherit;
    font-size: 1.1rem;
}

.custom-page-title h1 {
    font-size: 2.4rem;
    font-weight: 800;
}

.custom-page-content ul {
    list-style:disc;
    padding-left: 2.5rem;
}

.custom-page-content h2 {
    font-family: inherit;
    font-size: 2rem;
    font-weight: 800;
    margin-top: 2rem;
}

.custom-page-content h3 {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 2rem;
}