
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body 
{ 
    margin: 0; padding: 0;
     line-height: 1.6;
     font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #333;
 }

 .hero1
 {
     text-align: center; 
     background: orange; 
     color:white;
     padding: 20px;
     height: 200px; 
     padding-bottom: 150px;
  }

 .logo
{
     max-width: 80px;
     border-radius: 50%;
     border: 2px solid rgb(168, 9, 115);
     transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 8px 16px rgba(5, 5, 5, 0.2);
}  


.logo2
{
 font-weight: bold;

}

 .log
{
    text-shadow: 2px 2px red, -2px -2px blue;
}  





 .hero1 p {
  color: #333;
  margin: 0 auto;
} 

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero1 .log {
    font-size: 28px;
  }
  .hero1 p {
    font-size: 16px;
  }
  .hero1 {
    padding: 15px 10px;
  }
}

@media (max-width: 480px) {
  .hero1 .log {
    font-size: 22px;
  }
  .hero1 p {
    font-size: 14px;
  }
  .hero1 .logo {
    max-width: 90px;
  }
}



  /* new hero1/home */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 50px;
  color:#df1a1a;
}

 .tagline
  {
      font-size: 30px;
      color: #ce9494;
  }

.hero-text h2 {
  font-size: 36px;
  color: #111;
  margin: 10px 0;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.btn {
  background: #d4af37;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b58f2c;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 280px;
  
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  height: 450px;
  width: 400px;

 
}

/* nav */
/*.navbar {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  background: #222;*/
/*  color: #fff;*/
/*  padding: 10px 20px;*/
/*   position: sticky;*/
/*  top: 0; */
/*}*/

/*.navbar a {*/
/*  color: white;*/
/*  text-decoration: none;*/
/*  margin: 0 10px;*/
/*}*/

/*.navbar a:hover {*/
/*  color: gold;*/
  
/*}*/

/*.navbar-links {*/
/*  display: flex;*/
/*}*/

/*.toggle-button {*/
/*  display: none;*/
/*  font-size: 24px;*/
/*  background: none;*/
/*  border: none;*/
/*  color: white;*/
/*  cursor: pointer;*/
/*}*/

/* Mobile view */
/*@media (max-width: 768px) {*/
/*  .navbar-links {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*    background: #333;*/
/*    text-align: center;*/
/*  }*/

/*  .navbar-links a {*/
/*    padding: 10px 0;*/
/*    border-top: 1px solid #444;*/
/*  }*/

/*  .toggle-button {*/
/*    display: block;*/
/*  }*/

/*  .navbar-links.active {*/
/*    display: flex;*/
/*  }*/
/*}*/




.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.navbar a:hover {
  color: gold;
}

.navbar-links {
  display: flex;
}

.toggle-button {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #333;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .navbar-links a {
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  .toggle-button {
    display: block;
  }

  .navbar-links.active {
    display: flex;
  }
}




/* SLIDER STYLES */
.slider {
  max-width: 1150px;
  width: 95%;
  aspect-ratio: 1150 / 450;
  overflow: hidden;
  position: relative;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  background: #f5f3f3;
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fully visible without cropping*/
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
} 

 .slider .slide.active {
  opacity: 1;
}


/* For smaller mobile screens adjust */
@media (max-width: 768px) {
  .slider {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
}

.section
 { 
    padding: 20px;
 }

.container
 {
   display: flex; 
   flex-wrap: wrap; 
   justify-content: center;
   gap: 15px;
   align-items: center;
  
 }

.text
{ 
    max-width: 500px; 
    margin-left:50px ;
}

.responsive-img 
{
     max-width: 600px;
     max-height: 400px;
      width: 100%;
     border-radius: 8px; 
     border: 2px solid black;
}

.responsive-img1
{
 max-width: 1200px;
     max-height: 800px;
      width: 100%;
     border-radius: 8px; 
    margin-top: 50px;
    border: 3px solid #007bff;
}

.responsive-img2 
{
     max-width: 900px;
     max-height: 400px;
      width: 100%;
     border-radius: 8px; 
     border: 2px solid black;
}

.grid 
{ 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px; 
}

/*vision*/

.vision-section {
  padding: 60px 20px;
  text-align: center;
   background: linear-gradient(to right, #4e858b, #d876c4);
  color: white;
}

.vision-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.vision-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vision-content img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.vision-content p {
  max-width: 500px;
  font-size: 1.1em;
}

@media (min-width: 768px) {
  .vision-content {
    flex-direction: row;
    justify-content: center;
  }

  .vision-content img {
    width: 300px;
  }

  .vision-content p {
    text-align: left;
  }
}


/*why use*/

.container-why {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.choose-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.choose-image img:hover {
  transform: scale(1.03);
}

.choose-text {
  max-width: 600px;
}

.choose-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0a2a43;
  text-align: center;
  font-weight: 600;
}

.choose-text ul {
  list-style: none;
  padding: 0;
}

.choose-text ul li {
  background: #f9f9f9;
  border-left: 5px solid #007bff;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  transition: background 0.3s ease, transform 0.3s ease;
}

.choose-text ul li:hover {
  background: #e9f3ff;
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container-why {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }
  .choose-text h2 {
    font-size: 24px;
  }
  .choose-text ul li {
    font-size: 15px;
    text-align: left;
  }
}


.section-heading {
  text-align:center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f39c12;/* Victoriam corporation brand highlight color*/
  margin: 10px auto 0;
  border-radius: 2px;
}


/*-------------------- product-----------------*/
.section-heading { text-align: center; font-size: 28px; margin-bottom: 20px; }
.grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { background: #fff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); padding: 16px; width: 280px; text-align: center; transition: transform 0.3s ease; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; border-radius: 6px; margin-bottom: 10px; }
.description { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; text-align: left; font-size: 15px; }
.card.active .description { max-height: 500px; margin-top: 10px; }
.read-more-btn { background: #007bff; color: #fff; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; margin-top: 10px; font-size: 14px; transition: background 0.3s ease; }
.read-more-btn:hover { background: #0056b3; }
@media (max-width: 768px) { .grid { flex-direction: column; align-items: center; } .card { width: 90%; } }

/*-------------------------------------------*/
.card {
    border: 1px solid black;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}
.card:hover {
    background: #ffe0b2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.card.selected {
    background: #c8e6c9; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.4); 
}


.card img
{
     width: 100%; 
     height: 200px; 
}


ul
 {
     text-align: left; 
 }



 /* image */

.image-section {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.image-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.image-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}

.image-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #007bff;
}

.image-card p {
    padding: 0 15px 15px;
    color: #555;
    font-size: 14px;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.image-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }
}


/*completed works*/

.completed-works {
  padding: 60px 20px;
  background: #f0f4f8;
  text-align: center;
}

.completed-works h2 {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.work1
  {
      font-size: 20px;
      color:#FF00FF;
  }

.completed-works p {
  max-width: 600px;
  margin: 0 auto 20px auto;
  font-size: 1.1em;
  color: #555;
}

.works-list {
  list-style: none;
  display: grid;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.works-list li {
  background: rgb(228, 193, 213);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-weight: 500;
  color: #003366;
  transition: transform 0.3s, box-shadow 0.3s;
}

.works-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
  .works-list {
    grid-template-columns: 1fr;
  }
}

 /* contact */

.order-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px; /* reduced top padding, using scroll-padding for navbar clearance */
  background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
  min-height: 100vh;
}

.order-form-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(240,240,240,0.97));
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
}

.order-form-container:hover {
  transform: perspective(800px) rotateX(4deg) rotateY(-4deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.section-heading {
  text-align: center;
  color: #222;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #333;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

input:focus, textarea:focus {
  border-color: #5b86e5;
  box-shadow: 0 0 10px rgba(91, 134, 229, 0.3);
  transform: scale(1.02);
  outline: none;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

#requirement::placeholder {
    font-family: 'Segoe UI', sans-serif; /* तुम्हाला हवे असलेले font इथे द्या */
    font-size: 16px; /* हवे असल्यास आकार बदलू शकता */
    color: #888888;  /* placeholder चा रंग */
    /* font-weight: 500; medium boldness */
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media(max-width: 600px) {
  .order-form-container {
    padding: 25px;
  }
  .section-heading {
    font-size: 1.6rem;
  }
}

/* icon */
 .contact-icons {
    display: flex;
    gap: 0.1px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
} 

.contact-icons .icon {
    font-size: 28px;
    color: #fff;
    background: #25D366; /*  WhatsApp color */
     padding: 12px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
} 

 .contact-icons .icon.phone {
    background: #007bff; /* Blue for call */
} 

 .contact-icons .icon.email {
    background: #dd4b39; /* Red for email */
} 

 .contact-icons .icon.insta {
    background: #E1306C; /* Red for email */
} 

 .contact-icons .icon:hover {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.9;
} 




/* css/contact-map.css */
.contact-map-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.contact-details {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-details h2 {
  margin-bottom: 15px;
}

.contact-details p,
.contact-details a {
  font-size: 16px;
  color: #333;
}

.contact-details a {
  text-decoration: none;
  color: #007bff;
}

.contact-icons {
  margin-top: 15px;
}

.contact-icons .icon {
  display: inline-block;
  margin: 0 8px;
  font-size: 24px;
  color: #555;
  transition: color 0.3s;
}

.contact-icons .icon:hover {
  color: #f0a500;
}

.contact-map {
  flex: 1 1 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-map {
    width: 100%;
    height: 400px;
  }
}

footer 
{ 
    text-align: center;
    background: #333; color: white; 
    padding: 10px;
}

.contact-links a 
{
     margin: 0 5px; 
     text-decoration: none; 
     color: blue; 
}
