
.contact-email-call {
    width: 100%;
    height: 50px;
    margin: 0;
    color:#1553a8;
    background: #1553a8; 
}

/* Navbar styles */
.navbar {
    background-color: white;
    padding: 10px 20px;
  }
  
  .navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    color: #084e9f;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
  }
  
  /* Dropdown button */
  .dropbtn {
    cursor: pointer;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;  /* Hide the dropdown items initially */
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
  }
  
  .dropdown-content a {
    padding: 12px 16px;
    text-align: left;
  }
  
  /* Show the dropdown content when hovering over the parent */
  .dropdown:hover .dropdown-content {
    display: block;  /* Show the dropdown items */
  }
  
  /* Hover effect on menu links */
  .navbar li a:hover, .dropdown-content a:hover {
    background-color: #70a1e5;
  }
  
  /* Container for centering the button */

  
  /* Blinking Button Styles */
  .blinking-btn {
    padding: 12px 30px;
    font-size: 14px;
    color: #084e9f;
    background-color: #70a1e5; /* Button background */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(33, 38, 185, 0.2);
    transition: background-color 0.3s;
    animation: blink-animation 1s infinite alternate; /* Apply the blinking animation */
  }
  
  /* Hover effect to change the background color slightly */
  .blinking-btn:hover {
    background-color: #084e9f;
  }
  
  /* Blinking Animation */
  @keyframes blink-animation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  
  :root {
    --light:white;
    --texting: #1553a8;
  }
  
  .btn-for-enquiry {
      font-weight: 700;
      color: #084e9f;
      background-color: #70a1e5 ;
      
  }
  
  .enquiry-border {
      border-radius: 50rem !important
  }

  

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

