* { 
    background-color: #f8f8fd07; 
    font-family: Georgia; 
    box-sizing: border-box; 
    margin: 0; 
    
}
button {
    width:fit-content; 
    
}
.logi { 
    display: flex; 
    flex-direction: 
    column; align-items: 
    center; text-decoration: 
    none; color: #000069; 
    font-size: clamp(12px, 3vw, 20px); 
    
    }
h1 { color: #000069; font-size: clamp(14px, 2.5vw, 24px); }
H4 { font-size: clamp(15px, 2.5vw, 20px) ; }
.head1 { background-color: rgb(222, 244, 252) ; display: flex; flex-direction: row; padding-left: 5px; padding-right: 20px; }
nav { color: #000069; font-size: clamp(8px, 1vw, 20px); }
.logo { width: clamp(50px, 12vw, 100px); }
.homestyle { display: flex; flex-direction: row ; align-items: center; justify-content: space-between; margin:20px; } 
    @media screen and (max-width: 768px) { .homestyle { flex-direction: column; align-items: center; }}
.products { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  font-size: clamp(8px, 1.5vw, 15px); 
  gap: 50px; 
  text-align: center; 
  color: #000069;

  
  & img { 
    width: 40%; 
  } 
    }
@media screen and (max-width: 768px) { .products { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 10px; } }
.loginform { font-family: Georgia; max-width: 400px; margin: 20px auto; padding: 20px; }
.form-group { margin-bottom: 15px; text-align: center; align-items: center; } label { display: flex; margin-bottom: 5px; } textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box;} input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; } button { width: 100%; padding: 12px; background: #007cba; color: white; border: none; border-radius: 4px; cursor: pointer; } button:hover { background: #005a87; }
.footer-links { font-size: clamp(2px, 1vw, 20px); text-align: center; padding: 10px; background-color: #01013d; color: white; margin-top: 10px;}
.product { display: flex; color:#000069; align-items: center; text-align: center; padding: 10px; border: 1px solid #ccc; border-radius: 10px; justify-content: space-evenly; gap: 10px; } @media screen and (max-width: 768px) { .product { flex-direction: column; align-items: center; } } button i { margin-left: 6px; } .banner { border-radius: 15px; width: 40%; margin-top:
    20px; }
@media screen and (max-width: 768px) { .banner {width: 90%;} }
.contactus {  display: flex; flex-direction: row; gap: 20px; padding: 20px; justify-content: space-evenly;}
@media screen and (max-width: 768px) { .contactus { flex-direction: column; padding: 2px; gap: 10px; } } 
.agent-greeting { font-size: clamp(6px, 3vw, 16px);  /* 12px min, scales to 16px max */ color: #000069; } 
/* Mobile specific override */
@media screen and (max-width: 768px) { .agent-greeting { font-size: 6px;  /* Fixed small size on phones */ } }
/* Very small screens */
@media screen and (max-width: 480px) { .agent-greeting { font-size: 6px; } }
        /* Popup styling */
.popup-overlay {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
    }

    .popup-content {
        background-color: #fefefe;
        padding: 20px;
        border: 1px solid #888;
        width: 95%;
        max-width: 500px;
        border-radius: 15px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        text-align: center;
    }
    .clos-btn { text-align: right;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #888;
        }