/*
Theme Name: Twenty Seventeen
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 3.9
Tested up to: 6.8
Requires at least: 4.7
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyseventeen
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

html {
font-family: sans-serif;
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body{
font-family: "Urbanist", sans-serif;margin: 0;
}

.mobile-menu {
transform: translateX(-100%);
transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
transform: translateX(0);
}

.dropdown:hover .dropdown-menu {
display: block;
}

.modal {
display: none;
}

.modal.active {
display: flex;
}

/* === Desktop Menu === */
#menu-top-menu {
    display: flex;
    gap: 1.5rem; /* spacing between menu items */
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

#menu-top-menu > li {
    position: relative;
}

/* Links */
#menu-top-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #4a5568; /* gray-700 */
    transition: all 0.3s ease;
}

#menu-top-menu a:hover {
    color: #16bae1; /* hover color */
}

/* Dropdown */
#menu-top-menu li.menu-item-has-children > a::after {
    content: "\f078"; /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.25rem;
    font-size: 0.6rem;
}

/* Submenu */
#menu-top-menu li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 16rem; /* 64 tailwind */
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show dropdown on hover */
#menu-top-menu li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

/* Submenu links */
#menu-top-menu li ul.sub-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4a5568; /* gray-700 */
}

#menu-top-menu li ul.sub-menu li a:hover {
    background-color: #16bae1;
    color: #ffffff;
}

/* Get Quote Button */
.get-quote-btn {
    background-color: #16bae1;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px; /* fully rounded */
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.get-quote-btn:hover {
    background-color: #072d5a;
}

/* === Responsive (Mobile) === */
@media (max-width: 1024px) {
    #menu-top-menu {
        display: none;
    }
    #mobile-menu li{
        margin-top: 0!important;
    }
    #mobile-menu a{
        padding: 4px 0;        border-bottom: solid 1px rgb(204 204 204 / 52%);
    }
    #mobile-menu{
        width:94%!important;
    }
    .sub-menu{
        padding-left: 20px;
    }
    .mobile-menu button{
        justify-content: end !important;
    }
    .text-4xl {
            font-size: 28px !important;
        line-height: 34px !important;
}
.container {
    max-width: 96% !important;
}
.py-16 {
    padding-top: 30px!important;
    padding-bottom: 30px!important;
}
.text-2xl {
    font-size: 20px!important;
    line-height: 26px!important;
}
.homeAboutSection img{
    height: auto!important;
}
}
/* === Mobile Menu Container === */


/* Show mobile menu */
#mobile-menu.open {
    left: 0;
}

/* Close button */
#close-menu-btn {
    font-size: 1.5rem;
    color: #4a5568; /* gray-700 */
    cursor: pointer;
}

/* Mobile menu links */
#mobile-menu a {
    display: block;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

#mobile-menu a:hover {
    color: #16bae1;
}

/* Submenu container */
.mobile-submenu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.25rem;
}

/* Submenu items */
.mobile-submenu a {
    padding: 0.25rem 0;
    color: #4a5568;
}

.mobile-submenu a:hover {
    color: #16bae1;
}

/* Submenu toggle button */
.mobile-menu button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu button:hover {
    color: #16bae1;
}

/* Get Quote Button */
#mobile-menu .get-quote-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
}

/* Optional: arrow icon rotation when submenu open */
.mobile-submenu.open {
    display: block;
}

.mobile-menu button i {
    transition: transform 0.3s ease;
}

.mobile-menu button.active i {
    transform: rotate(180deg);
}
.bg-primary{
	background: #072d5a!important;
}
.container {
        max-width: 90%!important;
}
/* === Modal Base === */
.modal {
  position: fixed;
  inset: 0;
  display: none; /* show via JS */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 1rem;
}

/* Scroll support */
.modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  padding: 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* === Close Button === */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #000;
}

/* === Title === */
.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #072d5a;
  margin-bottom: 1.5rem;
}

/* === Form Layout === */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 45%;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

/* === Inputs === */
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: #16bae1;
}
.enquiry-form textarea{
	height: 80px;
}
/* === Submit Button === */
.enquiry-form input[type="submit"] {
  width: 100%;
  background: #16bae1;
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.enquiry-form input[type="submit"]:hover {
  background: #072d5a;
}

/* === Scrollbar === */
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 8px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.only_mobile_social_links{
    display: none;
}
/* === Responsive === */
@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
  }
  
  .only_mobile_social_links {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
        display: block;
        width: 100%;
        padding: 13px 6px;
        box-shadow: 0px -4px 15px -3px rgb(0 0 0 / 7%), -2px -7px 20px -2px rgb(0 0 0 / 4%);
        background-color: #fff;
    }

    .only_mobile_social_links ul {
        margin: 0;
        padding: 0;
        display: flex;
        gap: 10px;
    }

    .only_mobile_social_links ul li {
        list-style: none;
        background-color: #00a680;
        /* width: 32.6%; */
        border-radius: 4px;
        flex: 1 0 0;
    }

    .only_mobile_social_links ul li:nth-child(1) a {
        padding: 9px 0 6px;
        display: flex
;
        justify-content: center;
    }

    .only_mobile_social_links ul li:nth-child(2) {
        background-color: transparent;
        border: 1px solid #233146;
    }

    .only_mobile_social_links ul li:nth-child(2) a {
        color: #233146;
        padding: 10px 0 11px;
    }

    .only_mobile_social_links ul li a {
        text-decoration: none;
        display: block;
        color: #fff;
        text-align: center;
        padding: 12px 12px;
        font-weight: 700;
        font-size: 14px;
    }
.only_mobile_social_links ul li:last-child{
   background: #ea580c; 
}

    .only_mobile_social_links ul li a img {
        width: 29px;
        transform: translate(2px, -2px);
    }
    
}
.text-secondary,ul.space-y-1.text-sm li{
	color: #16bae1!important;
}
ul.space-y-1.text-sm li{
color: #000!important;
font-weight: 600;
}