* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header-section {
  flex: 1 1 30%;
  text-align: center;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #0c0380;

}

.logo img {
    height: 70px;
}

.contact-center {
    text-align: center;
    font-size: 17px;
    color: #555;
}

.contact-right {
    text-align: right;
    font-size: 17px;
    color: #555;
}

.menu-container {
  position: sticky;
  top: 100px;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  transition: background-color 0.2s ease, box-shadow 0.3s ease;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: #0c0380;
  transition: color 0.1s ease;
   gap: 20px;
}
.menu .logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.menu .nav-links li a {
  color: inherit;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.1s ease;
}

.menu .hamburger span {
  background: currentColor;
  display: block;
  height: 3px;
  margin: 4px 0;
  width: 25px;
  transition: background-color 0.2s ease;
}

.menu-container.scrolled {
  background-color:#0c0380;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-container.scrolled .menu {
  color: #fff;
}
.menu-container.scrolled .logo{
    color: #fff;
}


        
.logo {
    font-weight: bold;
    font-size: 1.5rem;
}
        
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
        
.nav-links li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #007BFF;
    transition: width 0.3s ease-in-out;
}
.menu-scrolled .nav-links li a::after {
    background-color: #fff;
}

.menu-scrolled .nav-links li a:hover {
    color: #fff;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #007BFF;
}


.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.dropdown {
    position: relative;
}

.dropdown:hover .submenu {
    display: block;
}

.menu-scrolled .dropdown .submenu li  {
    display: block;
    position: relative;
    background-color: #0c0380;
}

.menu-scrolled .submenu li a::after {
    background-color: #fff;
}

.menu-scrolled .submenu li a:hover {
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    color: rgb(255, 255, 255);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ddd;
    margin: 5px 0;
    transition: all 0.3s;
}


@media (max-width: 768px) {
    
    .menu-container.scrolled .menu {
        color: #0c0392;
      }
    .menu-scrolled .nav-links li a:hover {
        color: #0c0392;
    }
    .menu-scrolled .dropdown .submenu li  {
        display: block;
        position: relative;
        background-color: transparent;
    }
    .dropdown:hover .submenu {
        max-height: 500px;
        
    }
    .menu-container {
        background: #0c0380;
    }
    .logo{
        color: white;
    }
    .hamburger {
        display: block;
    }
    .hamburger span{
        color: white;
    }
    .nav-links.active {
    display: flex;
    }

    .submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    align-items: center;
    box-shadow: none;
    padding-left: 20px;
    }

    .dropdown.active .submenu {
    max-height: 500px;
    }

    .dropdown.active .dropdown-toggle {
    background-color: #fff;
    }
}


@media (max-width: 768px) {

    .menu-scrolled .submenu li a:hover {
        color: #fff;
    }
    .nav-links {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        transition: max-height 0.5s ease-out;
        background: white;
        position: absolute;
        left: 0;
        top: 100%;
        box-shadow: 0 5px 10px rgba(255, 0, 0, 0.1);
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nav-links li a,
    .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color:  #fff; 
    text-decoration: none;
    background-color: #ffffff;
    text-align: center;
    }
    .submenu li a {
    padding: 10px 16px;
    text-align: center;
    }
    
    .nav-links.active {
        max-height: 300px;
        padding: 1rem 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
main {
    padding: 20px;
}

.pse-float-button {
    position: fixed;
    left: 20px;
    top: 30%;
    transform: translateY(-30%);
    z-index: 9999;
    width: 70px;
    height: 70px;
    background: #00A3D9;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.pse-float-button:hover {
    transform:  scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background: #0085B8;
}

.pse-float-button img {
    width: 60%;
    height: auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pse-float-button.pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .pse-float-button {
        width: 60px;
        height: 60px;
        left: 10px;
    }
}


.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background: #128C7E;
}

.whatsapp-float img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        right: 15px;
        bottom: 15px;
    }
}



footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-about p {
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: white;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgb(17, 0, 112);
}

.contact-info {
    list-style: none;
    flex: 1;
    text-align: center;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-info i {
    color: rgb(17, 0, 112);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: rgb(17, 0, 112);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgb(17, 0, 112);
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .call-links-container {
        flex-direction: column;
        align-items: center;
    }

    .phone-block {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .phone-block:last-child {
        border-bottom: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
        
    .footer-column {
        margin-bottom: 2rem;
    }
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.image-container img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 8px;
}


.call-links-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}

.phone-block {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-right: 1px solid #ccc;
}

.phone-block:last-child {
    border-right: none;
}

.city-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #FFF;
}

.phone-block a {
    display: inline-block;
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.phone-block a:hover {
    background-color: #0056b3;
}
