/* General Reset */

#glow-cursor { 
    position: fixed; 
    top: 0; left: 0; width: 20px; height: 20px; 
    border-radius: 50%; 
    pointer-events: none;
    z-index: 99999; 
    transform: translate(-50%, -50%); 
    background: rgba(173, 255, 47, 0.25); /* light lime */ 
    border: 1px solid #32CD32; 
    box-shadow: 0 0 10px rgba(173, 255, 47, 0.9), 0 0 22px rgba(173, 255, 47, 0.6), 0 0 35px rgba(173, 255, 47, 0.4); 
    transition: transform 0.05s linear; }

body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin: 0px;
    padding-top: 100px;
    font-family: 'roboto slab';
    color: #333;
    background-color: #f9f9f9;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(173, 255, 47, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    border-radius: 50% ;
    background: transparent;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Top Header */
.top-header {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;  /* keeps header on top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: -30px;
    padding-right: 30px;
    background-color: white;
    box-shadow: 4px 4px 6px rgba(54, 131, 220, 0.226);
}

/* Logo Section */
.logo-section {
    margin-inline-start: 30px;
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
}

.company-name a{
    font-family: 'Sans-Serif';
    text-decoration: none;
    font-weight: 550;
    font-size: 28px;
    color: #0818A8;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Shine effect */
.company-name a::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: translateX(-120%);
}

.company-name a:hover::after{
    animation: shine 0.8s ease;
}

.company-name a:hover{
    transform: translateY(-1px);
}

@keyframes shine{
    to{
        transform: translateX(120%);
    }
}


/* Menu */
.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0 24px;
    font-weight: bold;
}

.menu ul li a {
    font-family: 'Georgia';
    position: relative;
    text-decoration: none;
    font-size: 20px;
    color: #002855;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.menu ul li a:hover {
    color: #0000FF;
    cursor: pointer;
}

.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #0000FF;
    transition: width 0.3s ease;
}

.menu ul li a:hover::after {
    width: 100%;
}

.menu ul li a.active{
    color: #e60000;
    text-shadow: 0 0 1px rgba(230,0,0,0.4);
}

/* Active underline */
.menu ul li a.active::after{
    width: 100%;
    background: #e60000;
}


/* --- Mobile Toggle Setup (place this at the end of your CSS file) --- */

/* Make sure the toggle is hidden on desktop */
.menu-toggle {
    display: none;
 }

/* Mobile overrides */
@media (max-width: 768px) {
  /* Ensure header spans full width on mobile (override earlier width:90% etc.) */
  .top-header {
    width: 90% !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* show hamburger */
  .menu-toggle {
    display: block !important;
    font-size: 28px;
    background: none;
    border: none;
    color: #002855;
    cursor: pointer;
    z-index: 3000;
  }

  /* Hide original menu by default on mobile */
  .menu {
    display: none !important;
    position: absolute;
    top: 64px; /* adjust according to header height */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 2000;
  }

  /* show when active */
  .menu.active {
    display: block !important;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    margin: 0;
    list-style: none;
  }

  .menu ul li {
    margin: 0;
    padding: 10px 16px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
  }

  .menu ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #002855;
    text-decoration: none;
    padding: 6px 0;
  }
}



/* ---------------- FOOTER ---------------- */

.footer {
    background: linear-gradient(90deg, #071a3c, #380d0d);
    color: #fff;
    padding: 25px 6%;
    font-family: "Poppins", sans-serif;
}

/* Compact layout */

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 30px;
}


/* Text */

.footer-col p {
    line-height: 1.4;
    font-size: 14px;
    opacity: 0.9;
    max-width: 300px;
}

/* Titles */

.footer-col h3,
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.footer-col h3 span {
    color: #ff0000;
}

/* Animated underline */

.footer-col h3::after,
.footer-col h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #fff;
    margin-top: 4px;
    border-radius: 10px;
    animation: underlineGlow 2s infinite alternate;
}

@keyframes underlineGlow {
    from { width: 30px; }
    to { width: 70px; }
}

/* Links */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ff0000;
    opacity: 0.85;
    font-family: "Poppins";
    font-weight: 450;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    padding-left: 6px;
    opacity: 1;
}

.contact-info-title{
    margin-left: -60px;
}

.contact-info {
    margin: 0;
    padding: 5px;
    margin-left: -60px;

}

/* Contact */

.contact-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Social */

/* -------- SOCIAL LINKS SIMPLE -------- */

.social-links {
    display: flex;
    gap: 12px;
}

/* Circle button */

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.689);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon size */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.social-links img { 
    width: 22px; 
    height: 22px; 
} 

.social-links a{ 
    transition: none; 
} 

.social-links img{ 
    transition: none; 
} 

.social-links a:hover{ 
    padding: 0%; 
} /* Simple hover */ 


/* Simple hover */

.social-links a:hover {
    background-color: crimson;
}

.social-links a:hover img {
    background-color: crimson;
    transform: rotate(-15deg);
}


/* Bottom */

.footer-bottom {
    margin-top: 25px;
    padding-top: 12px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.25);
    font-size: 13px;
    opacity: 0.85;
}

/* Responsive */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col p {
        margin: auto;
    }

    .social-links {
        justify-content: center;
    }
}