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

html{
    font-size: 62.5%; /* 1rem = 10px */
}

body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #777;

}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
    text-shadow: 
    1px 0px 1px #ccc, 0px 1px 1px #eee, 
    2px 1px 1px #ccc, 1px 2px 1px #eee,
    3px 2px 1px #ccc, 2px 3px 1px #eee,
    4px 3px 1px #ccc, 3px 4px 1px #eee,
    5px 4px 1px #ccc, 4px 5px 1px #eee,
    6px 5px 1px #ccc, 5px 6px 1px #eee,
    7px 6px 1px #ccc;
}

.main-title h1{
    font-size: 7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #555;
}

.main-title h2{
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
}

.svg-img{
   display: block;
   margin: auto;
}

svg{
    display: block;
   margin: auto;
}

#clock{
    animation: clockHand 5s infinite linear;


    transform-box: fill-box;
    transform-origin: bottom;
}

#leftTree, #righTree{
    animation: tree 2s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#man{
    animation: manBody 1s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#pc-circle{
    fill: #6ace66;
    stroke-width: 4;
    animation: change-light 4s linear infinite alternate;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: #f5f5f5;
    font-size: 1.3rem;
}

@keyframes clockHand{
    from{
        transform: rotateZ(0deg);
    }
    from{
        transform: rotateZ(-360deg);
    }
}

@keyframes manBody{
    from{
        transform: rotateX(0deg);
    }
    to{
        transform: rotateX(10deg);
    }
}

@keyframes tree{
    from{
        transform: rotateZ(10deg);
    }
    to{
        transform: rotateZ(-20deg);
    }
}

@keyframes change-light {
    0% {
        stroke: #cd61f8;
      }
      25% {
        stroke: #6ace66;
      }
      75% {
        stroke: #2995c0;
      }
      100% {
        stroke: #e92949;
      }
  }

  /* Media Queries */

  @media (min-width: 640px){
    .main-title h1{
        font-size: 5rem;
        text-transform: uppercase;
        font-weight: 700;
        color: #555;
    }

    .main-title h2{
        font-size: 3rem;
        font-weight: 300;
        text-transform: uppercase;
    }


    }

    @media (min-width: 768px){
        .main-title h1{
            font-size: 6rem;
            text-transform: uppercase;
            font-weight: 800;
            color: #555;
        }

        .main-title h2{
            font-size: 4rem;
            font-weight: 300;
            text-transform: uppercase;
        }


    }

    @media (min-width: 1024px){

        .main-title h1{
            font-size: 7rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #555;
        }

        .main-title h2{
            font-size: 5rem;
            font-weight: 300;
            text-transform: uppercase;
        }

    }

    @media (min-width: 1200px){

        .main-title h1{
            font-size: 8rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #555;
        }

        .main-title h2{
            font-size: 5rem;
            font-weight: 300;
            text-transform: uppercase;
        }

        .main-title{
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 4rem;
        }


    }
    @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.container {
    animation: fadeIn 2s ease-in-out;
}
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .container {
        width: 90%;
    }
}
#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #A0616A;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
}

#chat-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

#chat-header {
  background: #A0616A;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

#chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.message {
  margin-bottom: 8px;
}

.bot { color: #000; }
.user { text-align: right; color: #0d6efd; }

#chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#chat-input input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

#chat-input button {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 8px 12px;
}

#thank-you {
  display: none;
  position: fixed;
  inset: 0;
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding-top: 40vh;
  z-index: 10000;
}
@keyframes chatSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes thankYouZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-open {
  animation: chatSlideUp 0.4s ease;
}

.fade-in {
  animation: fadeIn 0.3s ease;
}

.thankyou-show {
  display: block !important;
  animation: thankYouZoom 0.5s ease;
}
.footer i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer a:hover .bi-instagram {
  color: #e4405f;
}

.footer a:hover .bi-facebook {
  color: #1877f2;
}

.footer a:hover .bi-linkedin {
  color: #0a66c2;
}.footer {
  background-color: #f8f9fa !important; /* Bootstrap gray */
}
.social-icons i {
  font-size: 18px;
}

.contact-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1055;
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-float-btn:hover {
  background: #0b5ed7;
}
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* Improve form feel */
.form-control {
  border-radius: 6px;
}

.modal-title {
  font-weight: 600;
}.contact-modal-width {
  max-width: 500px;
}

/* 🔹 Desktop only — wider form */
@media (min-width: 992px) {
  .contact-modal-width {
    max-width: 750px;   /* yahan se width control karo */
  }
}

/* 🔵 Background blur & blue tint when modal open */
body.modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(13, 110, 253, 0.15); /* Bootstrap primary blue */
  backdrop-filter: blur(4px);
  z-index: 1040;
}

/* Modal ko blur layer ke upar rakho */
.modal {
  z-index: 1055;
}