
body {
    background: #fdfcfc;
    color: #222;
    margin: 0;
    padding: 0;
    height: 100%;

    box-sizing: border-box;
    font-family: Arial, sans-serif;
    

}

/* HEADER */
.header {
    background: linear-gradient(90deg, #161d5c, #724cad);
    color: white;
    padding: 0 20px;
    top: 0;
    position: fixed;

    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(172, 151, 231, 0.4);
    flex-wrap: wrap;
    box-sizing: border-box;
    
    width: 100%;
    margin-top: 0;
    border-top: 1px solid transparent;
    margin: 0;
    position: sticky;
    top: 0;



}



.logo {
    display: flex;
    align-items: center;
    gap: 0px;
    
}
.logo small{

color: #e7fa3e;


}
.logo img {
    height: 50px;
}
.logo1{
    color: blue;
}

nav a {
    margin: 0 11px;
    text-decoration: none;
    color: #faf7f7;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    
    gap: 15px;
    
}

.call-btn {
    background: orange;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    display: inline-block;
    
}

.manage-btn{
  background: #ff6600;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 8px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.manage-btn:hover{
  background: #e65c00;
}

@media (max-width: 768px){
  .manage-btn{
    font-size: 8px;
    padding: 3px 5px;
  }
}





/* HERO */
.hero {
    display: flex;
    padding: 10px 18px;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 0;
}

.hero-text h1 {
    font-size: 26px;
    text-align: left;
    line-height: 1.2;
    margin-top: 0;
}

.hero-text h1 span {
    color: orange;
}

.whatsapp-btn {
    display: inline-block;
    margin: 20px 0;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.hero-img img {
    
    max-width: 100%;
    height: auto;

}
.address a {
    text-decoration: none;
    color: #555;
    font-size: 14px;

}










/* PRODUCTS */
.products-container {
    padding: 60px 40px;
    background: #f9f9f9;


}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    display: grid;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.product {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: flex;
}



/* Mobile screen ke liye */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr); /* Mobile: 2 per row */
    }
}

.products-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop me 4 */
  gap: 20px;
  padding: 20px;
}

/* Product Card */
.product-card {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}



/* FOOTER */

.footer{
    background:#5f68aa;
    color:white;
    padding:40px 0;
    box-shadow: 0 4px 8px rgba(7, 7, 7, 0.4);

}

.footer-container{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
}

.footer-box{
    width:220px;
    margin:10px;
}

.footer-box h3{
    margin-bottom:10px;
    color:#f39c12;
}

.footer-box a{
    color:white;
    text-decoration:none;
}

.footer-box a:hover{
    color:#25D366;
}

.footer-bottom{
    text-align:center;
    padding-top:20px;
    border-top:1px solid #444;
    margin-top:20px;
    font-size:14px;
}
body{
    animation: fadeInPage 1s ease-in;
}

@keyframes fadeInPage{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
.header{
    animation: slideDown 1s ease-in-out;
}

@keyframes slideDown{
    from{
        transform: translateY(-40px);
        opacity:0;
    }
    to{
        transform: translateY(0);
        opacity:1;
    }
}
button,
a{
    transition: 0.3s;
}

button:active,
.whatsapp-btn:active,
.gmail-btn:active{
    transform: translateY(4px);
    box-shadow: 0 2px 0 #666;
}

button:hover,
a:hover{
    transform: scale(1.05);
}
div{
    transition: 0.3s;
}

div:hover{
    transform: translateY(-5px);
}
*{
    transition: all 0.3s ease;
}
.map-section{
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.contact-section{
  padding: 40px;
  text-align: center;
  background: #f5f5f5;
}

.contact-section h2{
  margin-bottom: 20px;
}

form{
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea{
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button{
  padding: 10px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover{
  background: orange;
}









/* ===== Responsive Text ===== */
h1{
  font-size: clamp(22px, 4vw, 40px);
}

/* ===== Mobile Extra Fix ===== */
@media (max-width:600px){


  body{
font-size:14px;
padding:5px;
max-width: 500px;
}

  nav{
    flex-direction:column;
    text-align:center;
  }

  .hero{
    flex-direction:column;
  }

}

@media (max-width: 600px) {

    .header {
        
        position: relative;
    }

    nav  {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        
        gap: 5px;
    }
    nav a  {
        font-size: 12px;
      display: inline-block;
      white-space: nowrap;
    }

    .call-btn {
        margin-top: 5px;
    }

    .logo img {
        height: 30px;
    }
    .logo span{
        display: block;
        font-size: 8px;
        font-weight: bold;


    }
    .logo small{

       display: block;
       font-size: 5px;
       flex-wrap: nowrap;

    }
    .call-btn{
   font-size: 8px;
   flex-wrap: nowrap;


    }
       .product-grid {
padding: 15px 10px;

       }


    
      } 

/* ===== ABOUT SECTION ===== */
.about{
  padding:60px 5%;
  background:#c5c4c9;
}

.about-container{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:40px;
}

.about-text{
  flex:1 1 400px;
}

.about-text h2{
  font-size:32px;
  margin-bottom:20px;
  color: #7b09e6;
}

.about-text p{
  line-height:1.6;
  margin-bottom:15px;
  color: #171718;
}

.about-img{
  flex:1 1 300px;
  text-align:center;
}

.about-img img{
  width:250px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(89, 18, 99, 0.2);
}
.about nav a{

  color: #1619d6;
  text-align: center;
 list-style: none;
 display: inline-block;
}

/* ===== GALLERY SECTION ===== */

.gallery{
  padding:60px 5%;
  text-align:center;
}

.gallery h2{
  font-size:32px;
  margin-bottom:30px;
}

.gallery-container{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
}

.gallery-container img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  transition:0.3s;
}

.gallery-container img:hover{
  transform:scale(1.05);
}



.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: white;
    color: #333;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: orange;
    color: white;
}


/*=====scroll header====*/

header{
  position: fixed;
  top: 0;
  width: 100%;
  background: #3a2fbf;
  padding: 20px;
  transition: 0.3s;
}

header.small{
  padding: 10px;
}

body{
  padding-top: 0;
}
/*=====clculetar section====*/


.calculator{
  background:#1e1e1e;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
  width:300px;
}

.display{
  width:100%;
  height:60px;
  background:#000;
  color:#fff;
  font-size:28px;
  text-align:right;
  padding:10px;
  border:none;
  border-radius:8px;
  margin-bottom:15px;
}

.buttons{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

button{
  padding:15px;
  font-size:18px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  background:#333;
  color:#fff;
  transition:0.2s;
}

button:hover{
  background:#555;
}

.equal{
  background:#ff6600;
}

.equal:hover{
  background:#e05500;
}
/* Floating Button */
.chat-toggle{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#5f2ddc;
  color:white;
  font-size:22px;
  padding:15px;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* Chat Box */
.chat-box{
  position:fixed;
  bottom:80px;
  right:20px;
  width:300px;
  background:white;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  display:none;
  flex-direction:column;
  overflow:hidden;
  font-family:Arial;
}

.chat-header{
  background:#5f2ddc;
  color:white;
  padding:10px;
  font-weight:bold;
}

.chat-body{
  height:250px;
  padding:10px;
  overflow-y:auto;
  font-size:14px;
}

.bot{
  background:#eee;
  padding:8px;
  border-radius:8px;
  margin-bottom:5px;
}

.user{
  background:#5f2ddc;
  color:white;
  padding:8px;
  border-radius:8px;
  margin-bottom:5px;
  text-align:right;
}

.chat-input{
  display:flex;
  border-top:1px solid #ddd;
}

.chat-input input{
  flex:1;
  padding:8px;
  border:none;
  outline:none;
}

.chat-input button{
  background:#5f2ddc;
  color:white;
  border:none;
  padding:8px 12px;
  cursor:pointer;
}

.enquiry-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background-color: #cc5200;
}
.more-products {
  text-align: center;
  margin-top: 20px;
}

.more-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.more-btn:hover {
  background-color: #0056b3;
}

.more-products {
  margin: 50px auto;
  text-align: center;
}

.more-products h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  border-radius: 6px;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #222;
}

.product-card p {
  color: #555;
  font-size: 16px;
}

.enquiry-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: #cc5200;
}

@media (max-width:600px){

body{
font-size:14px;
padding:5px;
}

h1{
font-size:22px;
}

h2{
font-size:18px;
}

img{
width:100%;
height:auto;
}

.container{
width:95%;
margin:auto;
}

button{
padding:8px 12px;
font-size:14px;
}

}




.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0eded, #f5f0f0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  background: rgb(138, 118, 224);
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  animation: fadeUp 1s ease;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 20px;
  color: gray;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
}

.contact-container button {
  width: 100%;
  padding: 12px;
  background: #ff4df6;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-container button:hover {
  background: #c98bf1;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  grid-template-columns: repeat(4,1fr);
  padding: 20px;
}

.product-card {
  width: 220px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

#galaxy{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(235, 235, 238, 0.877);
}


#top-loader{
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #00ffff;
  z-index: 9999;
  transition: width 0.3s;
}
