@charset "utf-8";
/* CSS Document */

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}

/*
Red #d7002f
Black 010203
font-family: "Rajdhani", sans-serif;
font-family: "Open Sans", sans-serif;
*/
.g-recaptcha {
margin-bottom: 10px;
}
/* W1.................................................MOB */	
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  transition: box-shadow 0.3s ease;
}
.sticky-shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* MOBILE HEADER */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 10px;
  
}

.header-icon {
  width: 44px;
  height: 44px;
  background-color: #D7002F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.burger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-line {
  width: 20px;
  height: 2px;
  background-color: white;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.phone img {
  width: 24px;
  height: 24px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: white;
  z-index: 1001;
  transition: left 0.3s ease;
  padding: 80px 20px 20px;
  font-family: "Rajdhani", sans-serif;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 10px;
  margin-left: -20px;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  z-index: 1000;
}
/* DESKTOP HEADER */
.desktop-header {
  display: none;
}

@media (min-width: 900px) {
  .mobile-header,
  .mobile-menu {
    display: none;
  }

  .desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: white;
	max-width: 1300px;
	margin: 0 auto;
  }

  .desktop-logo img {
    height: 60px;
  }

  .desktop-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
  }
.desktop-nav li {
  position: relative;
}
  .desktop-nav li a {
    text-decoration: none;
    color: #000;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
  }
  .desktop-nav li a:hover {
    color: #d7002f;
  }
  }

  .desktop-phone .phone-icon {
    width: 44px;
    height: 44px;
    background-color: #D7002F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }

  .desktop-phone:hover {
  color: #fff;
  }
}

 /* Dropdown Styles */
  .desktop-nav .dropdown {
    position: relative;
  }

  .desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #032146;
    padding: 10px 0;
    display: none;
    list-style: none;
    min-width: 220px;
    z-index: 1002;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }

  .desktop-nav .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    white-space: nowrap;
  }

  .desktop-nav .dropdown-menu li a:hover {
    background-color: #d7002f;
    color: #fff;
  }

  .desktop-nav .dropdown:hover .dropdown-menu {
    display: block;
  }

/* W2.................................................MOB */	

.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px; /* padding to match header/logo spacing */
  display: flex;
  justify-content: flex-start; /* left-aligns internal content */
}

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 450px) {
.hero h1 {
  font-size: 44px;
}
}
@media only screen and (min-width: 600px) {
.hero h1 {
  font-size: 48px;
}
}
.hero p {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.hero-btn {
  background-color: #d7002f;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #b60026;
}

.hero-btn--call {
  background-color: white;
  color: #d7002f;
  border: 2px solid #d7002f;
}

.hero-btn--call:hover {
  background-color: #d7002f;
  color: white;
}

/* Switch to row layout on wider screens */
@media (min-width: 400px) {
  .hero-btn-group {
    flex-direction: row;
    gap: 15px;
  }
}

/* Body.................................................MOB */	
.body-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Open Sans", sans-serif;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.body-text {
  width: 70%;
  
}
.body-text h2 {
font-family: "Rajdhani", sans-serif;
font-size: 34px;
color: #d7002f;
}
.body-text h3 {
font-family: "Rajdhani", sans-serif;
font-size: 24px;
color: #d7002f;
}
.body-text p,
.body-text li {
font-family: "Open Sans", sans-serif;
font-size: 16px;
  line-height: 26px;
}
.body-text a:hover {
  color: #d7002f;
  text-decoration: none;
}
/* Wrapper to give .body-right full height of .body-text */
.body-right-wrapper {
  position:relative;
  width: 30%;
}

.body-right {
position: sticky;
  top: 40px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* Make images behave */
.body-right img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 999px) {
  .body-container {
    display: block;
  }

  .body-text,
  .body-right-wrapper,
  .body-right {
    width: 100%;
  }

  .body-right {
  display: none;
    position: static;
    margin-top: 40px;
  }
}
.body-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.body-btn {
  background-color: #d7002f;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block; /* fits text + padding */
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.body-btn:hover {
  background-color: #b60026;
  color: white !important;
}

.body-btn--call {
  background-color: white;
  color: #d7002f;
  border: 2px solid #d7002f;
}

.body-btn--call:hover {
  background-color: #d7002f;
  color: white !important;
  border-color: #b60026;
}

/* Switch to row layout on wider screens */
@media (min-width: 400px) {
  .body-btn-group {
    flex-direction: row;
    gap: 15px;
  }
}


/* testimonials.................................................MOB */	

.testimonials {
background-color: #FCFCFC;
}
.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  font-family: "Open Sans", sans-serif;
}

.testimonial-heading {
 font-family: "Rajdhani", sans-serif;
  font-size: 44px;
  color: #1c1b5f;
  text-align: center;
  letter-spacing: 2px;
}

/* Layout for slider and buttons */
.testimonial-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
}

/* Left/Right Buttons */
.testimonial-btn {
margin-top: 100px;
  background-color: #d7002f;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  padding-top: 5px;
  justify-content: center;
  align-content: center;
}

/* Scrollable container */
.testimonials-container {
  display: inline-flex; /* Key change from 'flex' */
  flex-wrap: nowrap;
  align-items: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

/* Optional: Hide scrollbars */
.testimonials-container::-webkit-scrollbar {
  display: none;
}
.testimonials-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Testimonial card */
.testimonial {
  flex: 0 0 auto; /* Don't force width */
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: "Open Sans", sans-serif;
  scroll-snap-align: start;
  box-sizing: border-box;
  text-align: center;
  height: auto; /* Ensures height is driven by content */
}

.testimonial span {
  font-size: 18px;
  line-height: 50px;
  font-weight: 600;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.testimonial span {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
}

.testimonial-stars {
  width: 130px;
  margin: 10px auto;
  display: block;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: show more testimonials on wider screens */
@media (min-width: 600px) {
  .testimonial {
    width: 48%;
  }
}

@media (min-width: 900px) {
  .testimonial {
    width: 32%;
  }
}

/* W4.................................................MOB */	
.services {
  padding: 40px 20px;
  text-align: center;
}

.services h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 44px;
  color: #d7002f;
  letter-spacing: 2px;
}

.services p {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 30px;
  color: #010203;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.titan-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Tablet: 2 columns */
@media (min-width: 576px) {
  .titan-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  .titan-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.titan-service {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
  color: inherit;
}

.titan-service:hover {
  transform: scale(1.02);
}

.titan-service img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.titan-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 20px 30px;
  box-sizing: border-box;
}

.titan-overlay h3 {
  margin: 0 0 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  color: #d7002f;
}

.titan-overlay p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 25px;
  color: #010203;
}


/* W5.................................................MOB */	

.reasons {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.reasons h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 42px;
  color: #d7002f;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tablet: 2 columns */
@media (min-width: 576px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 4 columns */
@media (min-width: 992px) {
  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reason-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.reason-item h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  color: #d7002f;
  margin-bottom: 10px;
}

.reason-item p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #010203;
  margin: 0 auto;
  max-width: 250px;
}

/* CONTACT.................................................MOB */	

.contact-form h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  color: #d7002f;
  margin-bottom: 20px;
  margin-top: -10px;
}
.contact-info h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  color: #d7002f;
  margin-bottom: 20px;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: #010203;
}

.contact-info {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}



.contact-info a {
  color: #010203;
  text-decoration: none;
}
.contact-info a:hover {
  color: #d7002f;
  text-decoration: none;
}
.contact-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.contact-form-intro {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form button {
  background: #d7002f;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
}

.contact-form button:hover {
  background: #b90028;
}

/* Desktop: Side-by-side layout */
@media (min-width: 768px) {
  .contact {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact-info {
    width: 45%;
	text-align: left;
  }

  .contact-form {
    width: 50%;
  }
}



/* W7.................................................MOB */	

.w7 {
	width:100%;
	height:auto;
}
.w7-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:30px;
		padding-right:30px;
	font-family: 'Montserrat', sans-serif;
}


/* W8.................................................MOB */	

.footer {
  background-color: #010203;
  color: white;
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-left,
.footer-right {
  margin: 5px 0;
}

@media (min-width: 600px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-left,
  .footer-right {
    margin: 0;
  }
}


/* FAQ................................................MOB */	
.faq {
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Open Sans', sans-serif;
  color: #010203;
}

.faq h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  padding: 15px 20px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
}

.faq h3:hover {
  background: #f1f1f1;
}

.faq-toggle {
  font-size: 26px;
  font-weight: 700;
  color: #d7002f;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  background: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  content: "–";
}



/* MOBILE QUOTE BUTTON.................................................MOB */	
.mobile-quote-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #d7002f;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 0;
  z-index: 9999;
  text-decoration: none;
  font-size: 20px;
}

/* Show only on small screens */
@media (max-width: 767px) {
  .mobile-quote-btn {
    display: block;
  }
}


/* popup.................................................MOB */	

.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  font-family: "Open Sans", sans-serif;
  overflow: auto;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.popup-box {
  position: relative;
  z-index: 10000;
  max-width: 400px;
  background: white;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 120px); /* Prevent from overflowing the screen */
  overflow-y: auto;  /* Prevent scrolling background */
}
@media (max-width: 480px) {
  .popup-box {
    width: 90%;
    margin: 30px auto;
    padding: 20px;
  }
}
.popup-box h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: #d7002f;
  margin-bottom: 15px;
}

.popup-box p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #010203;
}

.popup-form input,
.popup-form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}

.popup-form button {
  background: #d7002f;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Rajdhani", sans-serif;
  cursor: pointer;
  margin-bottom: 30px;
}

.popup-form button:hover {
  background: #b00026;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #010203;
  cursor: pointer;
}


/* whatsapp.................................................MOB */	
.whatsapp-bar {
  width: 100%;
  background: #25D366;
  padding: 14px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;   /* centers the link */
  animation: waPulse 1.2s infinite ease-in-out; /* subtle pulse */
}

.whatsapp-bar a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.wa-icon {
  width: 26px;
  height: 26px;
  display: block;
}

/* Subtle pulse animation */
@keyframes waPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  60% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (min-width: 800px) {
  .whatsapp-bar {
    display: none;
  }
}


