/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

/*Secondary header */
#secondary-header-HR{
    background-color:#083a81 ;
    height: 5px;
  
}
.secondary-header {
    background: #f8f8f8;
    color: #333;
    padding: 10px 50px;
    position:static;/* fixed;*/
    width: 100%;
    top: 0;/*0*/
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;/*new*/
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s;
    }
    .secondary-header .left, .secondary-header .right {
    display: flex;
    flex-wrap: wrap;/*new*/
    align-items: center;
  
    }
    .secondary-header .left a, .secondary-header .right a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    direction: ltr;
    }
    .secondary-header .right {
    margin-right: 20px;
    }
    

/* Header styling */
header {
    background-color:#083a81; /*#007bff;*/
    color:#083a81;/* #fff;*/
    /* padding: 10px 0; */
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    /* border: 1px dotted red; */
    justify-content: space-around;
    align-items: center;
}
/*new Menu*/
nav ul li a:hover {
    color: #f47b22;
    }

    nav ul li .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        }
        nav ul li .dropdown-content a {
        color: #083a81;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        }
        nav ul li .dropdown-content a:hover {
        background-color: #f47b22;
        }
        nav ul li:hover .dropdown-content {
        display: block;
        }
nav ul li .dropdown {
    display: inline-block;
        }
 /*old Menu*/       
nav ul {
    list-style: none;
    display: flex;
    /* justify-content: center;
    align-content: center; */
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section */
#hero {
    /* background-image: url('assets/images/hero-background.jpg'); */
    background-size: cover;
    background-position: center;
    color: #083a81;
    padding: 60px 20px;
    text-align: center;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #f47b22;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
	padding-top: 0px;
}

.cta-button:hover {
    background-color: #e55656;
}

/* Service cards */
#services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    width: calc(33% - 40px);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #007bff;
}

/* #weather{
    border: 1px solid #f47b22;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
} */

/* Weather Card */
.weather-card {
    background: linear-gradient(to bottom, #116ae6, #ffffff);
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
  }
  
  .weather-card h2 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
  }
  
  .weather-card i {
    margin-right: 10px;
    font-size: 24px;
    color: #0073e6;
  }
  
  .weather-details p {
    margin: 10px 0;
    font-size: 18px;
    color: #555;
  }
  
  .weather-details i {
    font-size: 20px;
  }
#city-name{
    color: #f47b22;
   
}

/* Footer styling */
footer {
    background-color: #f47b22;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }
}

div[dir="rtl"]{
	font-family: 'Cairo', sans-serif;
}