body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
    line-height: 1.6;
    color: #333;

}/* top-bar */
.top-bar{
    background:#0b1e78;
    color:#fff;
    padding:8px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    }
.top-bar span{
     margin-left:15px;
  }	
  .hamburger{
	  display:none;
  }
  .sendEmail a{
	  color:white;
	  text-decoration:none;  
  }
 
*{
	margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}
  /* HEADER MAIN */
  
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#fff;
}		
@media (max-width: 768px) {
	.top-bar {
		text-align: center;
		gap: 5px;
		justify-content:space-evenly;
  }
  
  .sendEmail {
	  color:#fff;
	  text-decoration:none;
	  display:none;
  }
  .navbar{
	 display:none; 
  }

  .header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
   .contact-info a{
        color:#e21b1b;
        text-decoration:none;
        font-weight:bold;
    }
 .call {
    justify-content: center;
  }

  .logo h1 {
    font-size: 24px;
  }
   
}
.nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #e60000;
      text-align: center;
}

.nav-links a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #e60000;
        text-align: center;
    }

    .nav-links a {
        padding: 12px;
        border-top: 1px solid #fff;
    }

    .hamburger {
        display: block;
		cursor:pointer;
    }

    .nav-links.active {
        display: flex;
    }
}

.logo{
    display:flex;
    align-items:center;
}
.logo h1{
     color:#e21b1b;
     font-size:28px;
 }
 .contact-info{
     display:flex;
     gap:40px;
     font-size:14px;
 }
.contact-info a{
     color:#e21b1b;
     text-decoration:none;
     font-weight:bold;
}
   /* NAVBAR */
   
.navbar{
    background:#e21b1b;
    padding:20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;	
}
.navbar ul{
     list-style:none;
     display:flex;
     justify-content:center;
     gap:40px;
}
.navbar ul li a{
     color:#fff;
     text-decoration:none;
     font-weight:bold;
}
.navbar ul li a:hover{
     text-decoration:underline;
}

.call{
	display:flex;
}

	

.breadcrumb {
    padding: 10px;
    background: #eee;
    font-size: 14px;
	margin:20px 75px;
	border-radius:2px;
}
.breadcrumb a{
	text-decoration:none;
}
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
}

.left {
    width: 40%;
    padding: 30px;
    background: #fafafa;
}

.left h2 {
    margin: 0;
}

.underline {
    width: 50px;
    height: 2px;
    background: red;
    display: block;
    margin: 10px 0 20px;
}

.info {
    display: flex;
    margin-bottom: 20px;
}

.icon {
    width: 45px;
    height: 45px;
    background: red;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.info h4 {
    margin: 0;
    font-size: 16px;
}

.info p,
.info a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}
.info a {
    color: #d60000;
}

.right {
    width: 60%;
    padding: 30px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.mobile {
    display: flex;
    gap: 10px;
}

.mobile select {
    width: 80px;
}

.buttons {
    margin-top: 20px;
}

.btn-submit,
.btn-cancel {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}

.btn-submit {
    background: #d60000;
}

.btn-cancel {
    background: #d60000;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left, .right {
        min-width: 100%;
    }

    .right form .mobile {
        flex-direction: column;
    }

    .right form .mobile select {
        width: 100%;
    }
}

/*whatsapp*/
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 25px;
    font-weight: bold;
}

/* Bottom */
  .footer {
    background: #1b239b;
    color: #fff;
    position: relative;
	margin-top:30px;
}

.footer-bottom {
	text-align: center;  
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 15px;
}
		
.whatsapp-float {
  position: fixed;
  bottom: 45px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: float 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 32px;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
	

