html {    scroll-behavior: smooth;    overflow-x: hidden; }body {    font-family: 'Poppins', sans-serif;        background-color: #f5f5f5;         font-weight:400;    color: #333;    margin: 0;    padding: 0;    line-height: 1.6;    overflow-x:hidden;    }p {    text-align: justify;    font-size: 16px;    margin-bottom: 1em;           font-family: 'Poppins', sans-serif;}h1,h2,h3,h4,h5,h6 {    font-size: 18px;        font-family: 'Poppins', sans-serif;    font-weight: bold;    color: #222;    margin-top: 1em;    margin-bottom: 0.5em;}a {    text-decoration: none;}a:hover {    text-decoration: none !important;}.navbar {  background-color: #ffc107;}.navbar .navbar-brand img {  width: 250px;  height: 80px;}.navbar .navbar-nav {  display: flex;  justify-content: space-between;  width: 100%;}/* Navbar Links */.navbar .navbar-nav .nav-link {  color: #15103d;  padding: 12px 20px;  font-size: 1rem;  text-transform: uppercase;  font-weight: 500;}.navbar .navbar-nav .nav-link:hover {  background-color: #15103d;  color: #ffc107;}/* Dropdown Menu Styling */.navbar .dropdown-menu {  background-color: #ffc107;  border: none;  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  position: absolute;  left: 50%;  transform: translateX(-50%);  z-index: 1000;  width: 700px;  padding: 20px;}.navbar .dropdown-item {  color: #15103d;  padding: 12px 20px;  font-size: 1rem;  text-transform: capitalize;}.navbar .dropdown-item:hover {  background-color: #15103d;  color: #ffb400;}/* Active Link */.navbar .navbar-nav .nav-link.active {  background-color: #ffb400;  color: #fff;}/* Slider Section */.slider-wrapper {     display: flex;     justify-content: center;     align-items: center;     overflow: hidden;     width: 100%;     height: 500px;   }.slider-container {     display: flex;     transition: transform 1s ease-in-out; }.slide {     flex: 0 0 100%;     display: flex;     justify-content: center;     align-items: center;     opacity: 0;     transform: translateY(100%);     transition: opacity 1s ease-in-out, transform 1s ease-in-out; }.slide.active {     opacity: 1;     transform: translateY(0); }.slide img {     width: 100%;     height: 100%;     object-fit: cover; }.slide.next {     transform: translateY(-100%);     opacity: 0; }.slide.next.active {  transform: translateY(0);     opacity: 1; }.slider-container {  transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;}/* Social Text */.social-text {  color: #fff;  font-size: 22px;  font-weight: bold;  display: block;  text-align: center;}@media (max-width: 1200px) {  .navbar .navbar-nav .nav-link {    font-size: 0.9rem;  }  .slider-wrapper {    height: 400px;  }}@media (max-width: 992px) {  .navbar .navbar-nav .nav-link {    font-size: 1rem;    padding: 10px 15px;  }  .navbar .dropdown-menu {    width: 100%;    left: 0;    transform: none;    padding: 5px;  }  .slider-wrapper {    height: 400px;  }}@media (max-width: 768px) {  .navbar .navbar-nav {    justify-content: center;    text-align: center;    width: 100%;  }  .navbar .navbar-nav .nav-link {    font-size: 0.9rem;    padding: 8px 12px;  }  .navbar-toggler {    border: 1px solid #fff;  }  .navbar-toggler-icon {    background-color: #fff;  }  .navbar .dropdown-menu {    width: 100%;    padding: 10px;    left: 0;    transform: none;  }  .slider-wrapper {    height: 150px;  }}@media (max-width: 480px) {  .navbar .navbar-nav {    justify-content: center;    text-align: center;    width: 100%;  }  .navbar .navbar-nav .nav-link {    padding: 6px 10px;    font-size: 0.8rem;  }  .slider-wrapper {    height: 150px;    width: 100%;  }  .navbar .dropdown-menu {    width: 100%;    left: 0;    transform: none;    padding: 5px;  }}.about-section {  padding: 20px;  display: flex;  justify-content: center;  align-items: center;}.about-container {  display: flex;  max-width: 1240px;}.about-text {  flex: 1;  padding: 20px;}.about-text h2 {  font-size: 22px;  background-color: #15103d;  border-radius: 5px;  color: #fff;  border-radius:20px 20px 0 0;  padding: 10px 15px;  margin: 0;  display: inline-block;  border-bottom: 3px double #ffc107;}.about-text p {  margin-top:20px;  font-size: 18px;  line-height: 1.6;}.about-images {  flex: 1;  display: flex;  flex-direction: column; /* Stack the elements vertically */  align-items: center;  justify-content: center;  position: relative;}.ganesh-image {  width: 400px;  height: auto;  position: relative;  z-index: 1;}.about-paragraph {  margin-top: 15px; /* Adjust space between the Ganesh image and the paragraph */  text-align: center;  background-color:#ffc107;  border-radius:10px;  padding:5px;  color:#fff;  font-size: 1.1em;  line-height: 1.6;}.stars {  display: inline-block;  color:#15103d; /* Star color */  font-size: 1em;  padding-bottom: 10px;}.magic-image {  width: 300px;  height: auto;  position: absolute;  top: 150px;  left: 150px;  z-index: 0;  animation: rotate360 10s infinite linear;  opacity: 0.9;}.form-title {  color: #15103d;  font-size: 1.5em;  animation: blink 1s infinite;}@keyframes blink {  0%, 100% { color: #ffc107; }  50% { color: black; }}.problem-form {  background: linear-gradient(135deg, #fff 0%, #ffd54f 50%, #ffc107 100%);  padding: 20px;  max-width: 500px;  border-radius: 10px;  margin-top: 20px;  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */  transition: background 0.3s ease; /* Smooth transition for hover effects */}.problem-form:hover {  background: linear-gradient(135deg, #fff 0%, #ffc107 100%);}.form-description {  color: black;  text-align:center;  margin-bottom: 10px;}.form-title{    text-align:center;}.problem-form input,.problem-form textarea {  width: 100%;  padding: 12px;  margin: 10px 0;  border: 1px solid #15103d;  border-radius: 10px;  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);  font-size: 18px;  background-color: #f9f9f9;  transition: border-color 0.3s ease, background-color 0.3s ease;}/* Focus effect for input and textarea */.problem-form input:focus,.problem-form textarea:focus {  border-color: #ffc107;  background-color: #fff;  border-radius:10px;  outline: none;  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);}.problem-form button {  width: 100%;  padding: 12px;  background-color: #ffc107;  color: #15103d;  border: none;  border-radius: 5px;  cursor: pointer;  font-weight: bold;  font-size: 18px;  transition: background-color 0.3s ease, transform 0.3s ease;}.problem-form button:hover {  background-color: #e0b707;  transform: scale(1.05);}@keyframes rotate360 {  from {    transform: rotate(0deg);  }  to {    transform: rotate(360deg);  }}@media (max-width: 1200px) {  .about-container {    flex-direction: column;  }  .about-text, .about-images {    flex: none;    width: 100%;  }  .ganesh-image {    width: 80%;  }  .about-paragraph {    font-size: 1em;  }  .problem-form {    max-width: 90%;  }}@media (max-width: 768px) {  .about-text h2 {    font-size: 18px;  }  .about-text p {    font-size: 16px;  }  .ganesh-image {    width: 90%;  }  .magic-image{      top:-5%;      left:10px;  }  .about-paragraph {    font-size: 0.9em;  }  .problem-form {    max-width: 100%;  }  .form-title {    font-size: 1.3em;  }}@media (max-width: 480px) {  .about-text h2 {    text-align:center;    font-size: 18px;  }  .about-text p {    font-size: 16px;  }  .about-paragraph {    font-size: 16px;  }  .problem-form input,  .problem-form textarea {    font-size: 16px;  }  .problem-form button {    font-size: 16px;  }}.main-services {    padding: 60px 0;    background: #15103d;}.section-title {    text-align: center;    margin-bottom: 40px;}.section-title h2 {    font-size: 2rem;    color: #fff;    text-align: center;    font-weight: bold;    border-bottom: 2px solid #ffc107;    padding-bottom: 5px;    display: inline-block;    transition: border-color 0.3s ease; /* Smooth transition for hover */}.section-title h2:hover {    border-color: #fdec19; /* Change border color on hover */}.section-title p {    text-align: center;    font-size: 1.1rem;    color: #fff;    margin-top: 10px;}.service-slider {    display: flex;    overflow: hidden;    justify-content: center;    transition: transform 0.5s ease;}.service-box {    width: 380px;    background-color: #fff;    padding: 20px;    border-radius: 10px;    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);    text-align: center;    margin-right: 20px;    border: 1px dotted #15103d;    opacity: 0;    transform: translateX(50px);    transition: opacity 0.5s ease, transform 0.5s ease;}.service-box.show {    opacity: 1;    transform: translateX(0);}.service-box img {    width: 100%;    border-radius: 10px;    border: 3px solid #fdec19;}.service-box h3 {    margin-top: 15px;    font-size: 1.2rem;    font-weight: bold;    background-color: #fdec19;    padding: 10px;    color: #000;    border-radius: 5px;    text-align: center;    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);}.service-box p {    text-align: center;    margin-top: 10px;    color: #666;}.slide-button {    display: flex;    justify-content: center;    margin-top: 30px;}.slide-button button {    background-color: #fff;    color: #190342;    border: none;    padding: 10px 20px;    margin: 0 10px;    cursor: pointer;    border-radius: 5px;    transition: background-color 0.3s ease;}.slide-button .next {    background-color: #ffc107;    color: #333;}.slide-button .next:hover {    background-color: #fdec19;    color: #190342;}.slide-button button:hover {    background-color: #ffc107;}@media (max-width: 1200px) {    .main-services {        padding: 40px 0;    }    .section-title h2 {        font-size: 1.8rem;    }    .service-slider {        flex-direction: column;    }    .service-box {        width: 80%;        margin: 10px 0;    }    .slide-button {        flex-direction: column;    }    .slide-button button {        margin: 10px 0;    }}@media (max-width: 768px) {    .main-services {        padding: 30px 0;    }    .section-title h2 {        font-size: 1.5rem;    }    .section-title p {        font-size: 1rem;    }    .service-box {        width: 90%;        margin: 15px 0;    }    .slide-button button {        padding: 8px 16px;    }}@media (max-width: 480px) {    .main-services {        padding: 20px 0;    }    .section-title h2 {        font-size: 1.2rem;    }    .section-title p {        font-size: 0.9rem;    }    .service-box {        width: 100%;        margin: 15px 0;    }    .slide-button button {        padding: 6px 12px;        font-size: 0.9rem;    }}.reasons-section {  padding: 70px 0 90px;}.reasons-left-main {  position: relative;}.reasons-left-content strong {  color: black;  display: block;  font-size: 34px;  font-family: 'Oswald', sans-serif;  text-transform: uppercase;  padding: 0 0 0 20px;}.reasons-left-content strong:before {  content: "";  height: 40px;  width: 40px;  background: #15103d;  position: absolute;  border-radius: 50%;  left: -16px;  top: -50px;  z-index: 9;}.reasons-left-content strong:after {  position: absolute;  content: "";  background: #ffc107;  width: 26px;  height: 26px;  border-radius: 100%;  left: -9px;  top: -43px;  animation: grow 1s ease infinite;  z-index: 9;}@keyframes grow {  from { transform: scale(0); }  to { transform: scale(1); }}.reasons-left-content span {  color: #fff;  font-weight: 800;  text-transform: capitalize;  font-size: 19px;  padding: 8px 25px 6px;  position: relative;  display: block;  background: linear-gradient(45deg, #15103d, #ffffff);  border-radius: 0 50px 50px 0;}.reasons-left-content span:before {  content: "";  position: absolute;  height: 131px;  width: 9px;  background: #ffc107;  left: 0px;  top: -86px;}.reasons-left-content p {  color: #202020;  font-weight: 700;  font-size: 15px;  line-height: 31px;  text-align: justify;  margin: 10px 0 0;}.contact-details strong {  font-size: 34px;  display: block;  font-weight: 600;  padding: 0 0 11px 0;  color: #ffab00;  font-family: 'Oswald', sans-serif;}.contact-details a {  display: block;}.contact-details a p {  font-size: 34px;  color:black;  font-family: 'Oswald', sans-serif;  background: #fff;  padding: 1px 10px 4px;  font-weight: 600;  text-align: left;  border-radius: 0 50px 50px 0;}.contact-details a span {  color: #fff;  font-weight: 600;  text-transform: capitalize;  margin: 10px 0 0 21px;  display: block;  text-align: left;  font-size: 22px;  width: 70%;}.contact-details {  background: linear-gradient(45deg, #15103d, #ffffff);  padding: 30px 22px 20px 0px;  position: relative;  border-radius: 0 50px 50px 0;}.contact-details i {  position: absolute;  bottom: -90px;  right: 0;}.reason-item {  padding: 20px;}.reason-content {  display: flex;  justify-content: center;  align-items: center;  border-radius:10px;  background: #ffab00;}.reason-image span {  margin: 0;  height: 120px;  text-align: center;  width: 120px;  background: transparent;  border: 1px dashed #000000;  border-radius: 50%;  display: flex;  justify-content: center;  align-items: center;}.reason-image span strong {  height: 100px;  width: 100px;  display: block;  line-height: 95px;  margin: 0px auto;  border-radius: 50%;  background: #15103d;}.reason-image span strong img {  height: 70px;}.reason-text strong {  color: #000000;  font-size: 23px;  background: #ffffff;  font-weight: 500;  text-transform: capitalize;  display: block;  font-family: 'Oswald', sans-serif;  padding: 4px 26px;  border-radius: 50px 0 0 50px;  margin: 0 0 0 -60px;}.reason-text p {  color: #000000;  line-height: 28px;  padding: 13px 30px 0px 13px;  font-size: 15px;  font-weight: 700;  text-align: justify;}@media (max-width: 1200px) {  .reasons-section {    padding: 60px 0 80px;  }  .reasons-left-content strong {    font-size: 30px;  }  .reasons-left-content span {    font-size: 17px;    padding: 6px 20px 4px;  }  .reason-content {    padding: 15px;  }  .reason-image span strong {    height: 90px;    width: 90px;  }  .reason-text strong {    font-size: 22px;    padding: 4px 20px;  }  .reason-text p {    font-size: 16px;  }}@media (max-width: 768px) {  .reasons-section {    padding: 50px 0 70px;  }  .reasons-left-content strong {    font-size: 28px;  }  .reasons-left-content span {    font-size: 18px;    padding: 6px 15px 4px;  }  .reason-content {    padding: 12px;  }  .reason-image span strong {    height: 80px;    width: 80px;  }  .reason-text strong {    font-size: 18px;    padding: 4px 18px;  }  .reason-text p {    font-size: 13px;  }}@media (max-width: 480px) {  .reasons-section {    padding: 40px 0 60px;  }  .reasons-left-content strong {    font-size: 24px;  }  .reasons-left-content span {    font-size: 15px;    padding: 5px 10px 4px;  }  .reason-content {    padding: 10px;  }  .reason-image span strong {    height: 70px;    width: 70px;  }  .reason-text strong {    font-size: 18px;    padding: 4px 15px;  }  .reason-text p {    font-size: 12px;  }}.clients {  background-color: #f9f9f9;  padding: 40px 20px;  text-align: center;}.client-container {  display: flex;  flex-wrap: wrap;  justify-content: center;  gap: 20px;}.client-box {  background-color: #ffffff;  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);  border-radius: 8px;  padding: 20px;  text-align: center;  transition: transform 0.3s ease;  flex: 1;  min-width: 250px;  display: flex;  flex-direction: column;  justify-content: space-between;  height: 100%;}.client-box:hover {  transform: translateY(-10px);}.client-box img {  width: 80px;  height: 80px;  border-radius: 50%;  object-fit: cover;  margin-bottom: 10px;  border: 2px dotted #fdec19;  padding: 4px;  display: block;  margin-left: auto;  margin-right: auto;}.client-box .name {  text-align:center;  font-size: 1.2em;  font-weight: bold;  color: #333;  margin: 10px 0;}.client-box .review {  font-size: 18px;  text-align:center;  color: #666;  margin-bottom: 15px;  line-height: 1.2;}.stars {  display: inline-block;}.star {  font-size: 22px;  color: #ffcc00;}@media (max-width: 1200px) {  .clients {    padding: 30px 15px;  }  .client-box {    min-width: 220px;    padding: 15px;  }  .client-box img {    width: 70px;    height: 70px;    margin-bottom: 8px;  }  .client-box .name {    font-size: 1.1em;  }  .client-box .review {    font-size: 15px;  }}@media (max-width: 768px) {  .clients {    padding: 25px 10px;  }  .client-container {    gap: 15px;  }  .client-box {    min-width: 200px;    padding: 12px;  }  .client-box img {    width: 60px;    height: 60px;    margin-bottom: 6px;  }  .client-box .name {    font-size: 1em;  }  .client-box .review {    font-size: 16px;  }  .stars {    font-size: 18px;  }}@media (max-width: 480px) {  .clients {    padding: 20px 5px;  }  .client-container {    flex-direction: column;    gap: 10px;  }  .client-box {    min-width: 180px;    padding: 10px;  }  .client-box img {    width: 50px;    height: 50px;    margin-bottom: 5px;  }  .client-box .name {    font-size: 0.9em;  }  .client-box .review {    font-size: 13px;  }  .stars {    font-size: 18px;  }}/* General Footer Styling */.footer {  background-color: #333;  color: #fff;  padding: 40px 0;  font-family: 'Arial', sans-serif;}/* Footer Container */.footer-container {  display: flex;  justify-content: space-between;  flex-wrap: wrap;  gap: 30px;}/* Footer Columns */.footer-col {  flex: 1;  min-width: 250px;}/* Footer Heading */.footer h6 {  font-size: 18px;  font-weight: bold;  margin-bottom: 20px;  color: #fdec19; /* Yellow text */}/* Footer Links */.footer ul {  list-style-type: none;  padding: 0;}.footer ul li {  margin-bottom: 10px;}.footer ul li a {  color: #fff;  text-decoration: none;  transition: color 0.3s ease;}.footer ul li a:hover {  text-decoration: none;  color: #fdec19; /* Yellow hover effect */}/* Contact Icons */.footer i {  margin-right: 10px;}/* Footer Bottom Section */.footer-bottom {  text-align: center;  margin-top: 30px;  font-size: 16px;  color: #fdec19;  border-top: 1px solid #444;  padding-top: 15px;}/* Responsive Design */@media (max-width: 768px) {  .footer-container {    flex-direction: column;    align-items: center;  }  .footer-col {    margin-bottom: 20px;  }  .footer-bottom {    margin-top: 40px;  }}@media (max-width: 480px) {  .footer h6 {    font-size: 18px;  }  .footer ul li a {    font-size: 16px;  }  .footer-bottom {    font-size: 12px;  }}.site-footer {  padding: 40px 0 0px 0;  background: linear-gradient(135deg, #fff 0%, #ffd54f 50%, #ffc107 100%);}.footer-content-space {  padding: 0px 0 0px;}.footer-phone,.footer-whatsapp,.footer-location {      font-size:14px;  padding: 10px 0 0 10px;}.footer-phone-details,.footer-whatsapp-details,.footer-location-details {  padding: 0px;}.footer-phone-details a,.footer-whatsapp-details a {  display: flex;  align-items: center;}.footer-phone-details a span,.footer-whatsapp-details a span,.footer-location-details span {  margin-right: 10px;}.footer-phone-details a b,.footer-whatsapp-details a b,.footer-location-details b {  color: #15103d;}.footer-phone-details a strong,.footer-whatsapp-details a strong {  color: #15103d;}.footer-map-container iframe {  width: 100%;  height: 369px;}.footer-copyright {  padding: 15px 0;  text-align: center;}.footer-copyright p {  margin: 0;  color: #15103d;  font-size: 16px;  font-weight: 700;}.appointment {  background-color: #15103d;  color: #fff !important;  padding: 12px 30px;  border: 2px solid #f15d29;  border-radius: 25px;  text-align: center;  display: inline-block;  font-weight: bold;  text-decoration: none;  position: relative;  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  transition: all 0.3s ease;}.appointment::before {  content: '';  position: absolute;  top: 100%;  left: 0;  width: 100%;  height: 5px;  margin-top:10px;  background: linear-gradient(45deg, #fff, #15103d);  transform: scaleY(-1);  opacity: 0;  transition: opacity 0.3s ease;  animation: ribbonReflect 1s infinite alternate;}.appointment:hover {  background-color: #d84b1c;  border-color: #d84b1c;  color: white;  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);}@keyframes ribbonReflect {  0% {    opacity: 0.2;    transform: scaleY(-1);  }  50% {    opacity: 0.8;    transform: scaleY(1);  }  100% {    opacity: 0.2;    transform: scaleY(-1);  }}  .sticky-social {            position: fixed;            top: 50%;            z-index: 9999;            left: 0;            padding: 0;        }        .social {            list-style: none;            margin: 0;            padding: 0;        }        .social li {            padding: 15px 20px;            font-size: 33px;            transition: all 0.8s ease-in-out;            border-radius: 0px 40px 40px 0px;            margin: 0;        }        .social li:hover {            margin-right: -30px;            box-shadow: 2px 5px 10px grey;        }        .social li:hover .fa {            margin-left: 10px;        }        .sticky-social .fa {            color: #fff;            transition: all 0.8s ease-in-out;        }        .fb {            background-color: #ff4136;        }        .whatsapp {            background: #47c756;        }