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

 body {
   font-family: 'Urbanist', sans-serif;
 }

  #phonecallheader {
   width: 120px !important;


   height: 100%;
   object-fit: cover;
   text-decoration: none;


 }

 /* Top bar */
 .top-bar {
   font-size: 14px;
   padding: 5px 0;
   display: flex;
   justify-content: space-between;
   align-items: center !important;
   overflow: hidden;
   box-sizing: border-box;

   background: #fff;
 }

 .top-bar a {
   text-decoration: none;
   color: black;
   margin: 0 5px;
 }

 .hiring {
   color: red;
   font-weight: bold;
 }

 /* Navbar */
 .navbar {
   padding: 15px 0;
   background: #fff;
   border-bottom: 1px solid #eee;
   position: relative;
   z-index: 1000;
   transition: all 0.3s ease;
 }

 /* .navbar .logo {
      font-size: 28px;
      font-weight: bold;
      background: linear-gradient(45deg, #ff6600, #ff0099);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    } */


 /* my own css for logo*/
 .navbar .logo img {


   height: 55px;
   object-fit: contain;
 }



 .nav-links {
   display: flex;
   align-items: center;
   gap: 30px;
 }

 .nav-links a {
   text-decoration: none;
   font-weight: 500;
   color: #333;
   transition: color 0.3s;
 }

 .nav-links a:hover {
   color: #000;
 }

 .proposal-btn {
   /* background: linear-gradient(45deg, #3f6aff, #9c27ff); */
   background: linear-gradient(45deg, #37B4AA, #0B9890, #01928B);
   color: white !important;
   font-weight: bold !important;
   padding: 10px 40px;
   border-radius: 30px;
   text-decoration: none;
   /* margin-left: 5px; */
   display: inline-block;
   text-align: center !important;
 }

 .proposal-btn:hover {
   opacity: 0.9;
 }

 /* Toggle button */
 .menu-toggle {
   display: none;
   font-size: 28px;
   cursor: pointer;
   background: none;
   border: none;
 }

 /* Sticky navbar */
 .navbar.sticky {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
   padding: 10px 0 !important;
   /* thoda slim look */
   background: #fff;

 }

 /* Responsive */
 @media (max-width: 768px) {
   .navbar .logo img {
     padding-left: 10px;
     height: 50px !important;
   }

   .top-bar {
     display: none !important;
   }

   body.menu-open {
     overflow: hidden;
     /* disable body scroll when menu open */
   }

   .nav-links {
     display: none;
     position: absolute;
     top: 70px;
     left: 0;
     background: #fff;
     flex-direction: column;
     width: 100%;

     border-top: 1px solid #ddd;
     padding: 15px;

     box-sizing: border-box;
     gap: 10px !important;
   }

   .nav-links.active {
     display: flex;
   }

   .nav-links a {
     text-align: left;
     width: 100%;
     padding: 12px 0;
     border-bottom: 1px solid #f1f1f1;
   }

   .proposal-btn {
     margin: 20px auto 0 auto;
     width: 80% !important;
     text-align: center;
     border-radius: 10px;
     font-size: 17px;
     padding: 14px;
   }

   .menu-toggle {
     display: block;
   }
 }


 .tel {
   color: #454249;
   font-size: 16px;
   font-weight: 700;

 }

 .tel:hover {
   color: #F3623F;
 }


