html {
  scroll-padding-top: 120px; /* adjust to your navbar height */
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/*Navbar style*/
.navbar-nav li a {
    margin-left: 1.5rem;
    /*space b/w the links items*/
    color: #525252;
}

.navbar-nav {
    margin-left: auto;
}



.bg-light {
  background-color: #FFFFFF !important;
}


.navbar-nav li a:hover {

    background-color: #FFFFFF;
}



html {
  scroll-behavior: smooth;
}


/* end of Navbar style*/

/*hero section style*/
section.hero {
  background: url('/img/Doha_skyline.jpg') no-repeat center center;
  background-size: cover;
  min-height: 600px; /* force a visible height */
 
}


.hero_heading {
    position: absolute;
    bottom: 10px;
    left: 30px;
}

/*end of hero style*/

.services-row {
    display: flex;
    flex-wrap: nowrap; /* keep them in one row */
}

.service-item {
    width: 20%; 
    padding: 10px;
    font-size: 16px;
}



#company-profile{
	
color:#003366;	
	
	
}

.Mission h4{
color:#003366;    
    
}


#Mission {
color:#003366;		
}


#Vision{
color:#003366;				
}



#Clients{
color:#003366;						
}

#Rep{
color:#003366;						
}


.mb-4 {
    
color:#003366;    
    
}


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

.service-item {
  flex: 1 1 100%; /* Full width on small screens */
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 5px;
}

/* Medium screens */
@media (min-width: 768px) {
  .service-item {
    flex: 1 1 calc(50% - 1rem); /* 2 per row */
  }
}

/* Large screens */
@media (min-width: 992px) {
  .service-item {
    flex: 1 1 calc(33.333% - 1rem); /* 3 per row */
  }
}



.navbar {
    position: sticky;
    top: 0;
    z-index: 1020; /* Keeps it above content */
}


/*these below line set the top/bottom margin to menu

section, contact form section and about section*/
section.about_sec_1,
section.menu_sec,
section.contact_form {
    margin: 0rem 0 !important;
}

/*About dine seciton style*/
.about_content,
.menu_content {
    /*make two column content of menu and about section by using flexbox*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.5rem;
}

.about_para {
    line-height: 30px;
}
/*end of About dine seciton style*/

/*Menu seciton style*/
.menu_list {
    display: flex;
    flex-direction: column;
    list-style: none;
}

ul .menu_list_items {
    padding: 15px 0;
}

.menu_list div h5 {
    /* set every menu section h5 element margin, and letter spacing */
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.menu_list div p {
    /* set every menu section p element font size */
    font-size: 14px;
    font-weight: 500;
}
/*end of Menu seciton style*/

section form input {
    border: none !important;
    border-bottom: 1.5px solid #818181a2 !important;
    padding: 10px 0;
    border-radius: 0 !important;
}

section.contact_form h6 {
    color: #607D8B;
}

.submit_btn {
    border: none;
    padding: 15px;
    line-height: 10px;
    background-color: #e7e6e6;
}

.submit_btn:hover {
    background-color: #b5b5b5;
}



/* Lower Menu content */

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ---------- GLOBAL LAYOUT ---------- */
body {
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 50px 0;
}

.bg-light {
    background: #ffffff;
}

/* ---------- HEADER ---------- */
header {
    background: #003366;
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

/* ---------- TITLES & LISTS ---------- */
.section h2 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #003366;
}

.list {
    list-style: none;
}

.list li {
    background: #e9eef5;
    margin: 10px 0;
    padding: 15px;
    border-left: 5px solid #003366;
    border-radius: 5px;
}


.services-text p {
    margin-bottom: 10px;
    font-size: 16px;
}


/* ---------- FOOTER ---------- */
footer {
    background: #003E7E;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}




/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .list li {
        font-size: 0.9rem;
    }
}






/* End of Lower Code */




/* media querie for about dine section img*/
@media(max-width:767px) {
    .left_img {
        display: none;
    }
}