:root {
  --color-primary: #F5FAFF;
  --color-secondary: #003B73; 
  --color-secondary: #d76f0e; 
  --accent-color: #FF6B00; 
  --accent-color: #0e9cd7; 
  --text-dark-color: #1C1C1E; 
  --text-muted-color: #4F6071; 
  --card-border-color: #D6E4F0; 
  --color-success: #4CAF50;
  --color-danger: #dc3545;
  --color-warning: #FFC107;
  --color-wireframe-gray: #BDBDBE;
  --color-secondary-paragraph: #6C7075; 
  --color-testimonial-section: #F6F6F6;
  --color-white: #ffffff;
     --purple: #6739b7;
    --yellow: #ffd814;
    --yellow-hover: #f7d214;
}
 

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.h1-logo-text-header{
  font-family: 'Poppins',sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #003B73;
}

/* cursor glow effect css start here**********  */
.cursor-glow-effect {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #870ae1, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 1;
  transition: background 0.3s ease-in-out, opacity 0.4s ease-in-out, transform 0.2s ease-in-out;
  z-index: 9999999; /* Always on top */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor-glow-effect-span{
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--accent-color);
}

/* cursor glow effect css end here**********  */

/* start social media fixed button css here **************** */
     .fixed-social-bar {
      position: fixed;
      top: 30%;
      left: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 18px;
      animation: fadeInLeft 1.1s cubic-bezier(.77,0,.18,1) both;
    }
    @keyframes fadeInLeft {
      0% {
        opacity: 0;
        transform: translateX(-80px) scale(0.7);
      }
      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }
    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      color: #fff;
      font-size: 1.35rem;
      transition: all 0.3s cubic-bezier(.77,0,.18,1);
      box-shadow: 0 2px 10px rgba(36,52,95,0.08);
      margin-bottom: 0px;
      text-decoration: none;
      border: 2px solid transparent;
    }
    .facebook    { background: #1877f3; border-color: #1877f3; }
    .linkedin    { background: #0177b7; border-color: #0177b7; }
    .instagram   { background: #e4405f; border-color: #e4405f; }
    .youtube     { background: #ff0000; border-color: #ff0000; }
    /* Twitter styles using image */
    .twitter {
      background: #1a1a1a;
      border-color: #1a1a1a;
      padding: 0;
    }
    .twitter img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      filter: brightness(0) invert(1); /* ensures white icon if image is black */
      display: block;
    }
    .social-icon:hover {
      filter: brightness(0.93) saturate(1.2);
      transform: scale(1.10) rotate(-6deg);
      box-shadow: 0 4px 18px 0 rgba(0,0,0,0.20);
    }
/* end social media fixed button css here **************** */

/* start dot css here you use every where***************** */
.dot_animation{    position: relative;
    width: 100%;
    max-width: 84%;
    height: 2px;
    background-color: var(--alefox-border-color, #dddddd);
    margin: 26px 0;}

.dot_animation::after{    width: 10px;
    height: 10px;
    content: "";
    background-color: var(--accent-color);
    border-radius: 50%;
    left: 0;
    top: -4px;
    position: absolute;
    animation: zump 15s linear infinite;}

    @keyframes zump {
        0% {
            margin-left: 0%;
        }

        50%{margin-left: 100%;}

        100% {
            margin-left: 0%;
        }
    }
/* end dot css here you use every where***************** */

header{
    /* background-color:#fff; */
    padding-bottom: 5px;
    position: absolute;
    top: 0px;
    z-index: 2;
    width: 100%;
}

.main-header{
    display: flex;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 3px 0px;
    padding-bottom: 6px;
}

.header-first{
    width: 100%;
    display: flex;
    align-items: center;
}

.header-first img{
    height: 86px;
}

.header-second{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;

}

.header-ul{
    margin: 0px;
    padding: 0px;
}

.header-ul li {
    list-style: none;
    float: left;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    position: relative;
}

.header-ul li a {
    text-decoration: none;
    color: #2A2A2A;
    display: block;
    font-weight: 600;
    position: relative;
}

.header-ul li a:hover {
    color: var(--color-secondary);
}

/* Create underline effect */
.header-ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    bottom: -10px;
    background-color:var(--accent-color);
    transition: all 0.8s ease;
    transform: translateX(-50%);
}

/* Hover effect - line grows from center */
.header-ul li a:hover::after {
    width: 100%;
}


/* drop down css  */
.header-ul li ul{
  position: absolute;
  left: 0px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #002f5a 100%);

  margin-top: 22px;
  z-index: 9999999999999999999;
  min-width: 330px;
  max-width: 350px;
  border-radius: 5px;
  padding: 10px;
  visibility: hidden;
   opacity: 0;
  height: 0px;
  transition: all .8s;
}

.header-ul li:hover ul{
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-top: 32px;
}

.header-ul li ul li{
    transition: all .3s;
    width: 100%;
}

.header-ul li ul li a{
  color: #fff;
  display: block;
  width: 100%;
}

.header-ul li ul li a::after{
  background-color: var(--accent-color);
}

.header-ul li ul li:hover{
  background-color: var(--color-primary);
}

/* drop down css  */



.header-third{
    width:30%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: end;
}
/* 
.btn-contact-sale{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 13px;
    text-decoration: none;
    color: white;
    padding: 8px 10px;
    background-color: var(--accent-color);
    border-radius: 5px;
} */


.btn-contact-sale {
  background:var(--accent-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseAttention 1.8s infinite;
  text-decoration: none;
  font-family: 'Poppins',sans-serif;
  font-size: 15px; 
}
/* Hover Effect */
.btn-contact-sale:hover {
  background: #e65e00; /* slightly darker orange */
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.6); /* glowing orange effect */
}
/* Pulse Animation */
@keyframes pulseAttention {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); /* accent glow */
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); /* fade out pulse */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}



/* start pop up css here **** */

/* .popup-trigger {
  padding: 12px 24px;
  background: #764ba2;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}
.popup-trigger:hover {
  background: #5a3a90;
} */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  display: flex;
}

.popup-container {
  background: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  /* padding: 30px 20px; */
  position: relative;
  animation: popupIn 0.3s ease;
}

.popup-header{
    padding-top: 20px;

background: linear-gradient(135deg, #FF6B00 0%, #FFB347 100%);

border-top-left-radius:15px;
border-top-right-radius:15px;
padding-bottom: 20px;
}

.popup-form{
      padding: 30px 20px;
}

@keyframes popupIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-header h2 {
  color: #ffff;
  text-align: center;
  font-weight: 700;
  font-family: 'Poppins',sans-serif;
}

.popup-header p {
  text-align: center;
  font-family: 'Poppins',sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffff;
}

.popup-close {
  position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 1.5rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
}

.popup-close:hover{
     background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
}

.popup-form .form-group {
  margin-bottom: 15px;
  font-family: 'Poppins',sans-serif;
  
}

.popup-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.popup-submit {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  transition: 0.3s;
}
.popup-submit:hover {
  opacity: 0.9;
}

.input_pop_ {
  border: 1px solid #ccc;
  padding: 10px;
  transition: box-shadow 0.3s ease; /* smooth animation */
  outline: none;
}

.input_pop_:focus {
  box-shadow: 0 0 8px 2px #FF6B00;
  border-color: #FF6B00;
}

.input_pop_::placeholder{
    font-family: 'Poppins',sans-serif;
}

.error{
    color: red;
      font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

.error_duplicate{
   color:orange;
      font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

.success{
  color: #28a745;
  font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

/* end pop up css here **** */

@media(max-width:900px){
  
  header{
    position: unset;
    background-color: #ffff;
  }

  .main-header{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .header-second{
      display: none;
    }

    .btn-contact-sale{
      display: none;
    }

    .popup-header h2{
      font-size: 19px;
    }

}



/* whatsapp button fixed *********** */
  
        /* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;

    /* Animations */
    animation: bounce 1.5s infinite ease-in-out, pulseGlow 2.5s infinite ease-in-out;
}

/* Hover Effect */
.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Icon */
.whatsapp-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* Responsive for mobile screens */


@media(max-width:900px){
  .fixed-social-bar{
    display: none;
  }
}


@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }
    .whatsapp-button svg {
        width: 20px;
        height: 20px;
    }
}


/* whatsapp button fixed *********** */
