/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  font-size: clamp(16px, 2.8vw, 18px); 
}

/* Top Bar */
.top-bar {
  background-color: rgb(21, 68, 199);
  color: white;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 2.8vw, 16px);
  flex-wrap: wrap;
}

.top-left i,
.top-left span {
  margin-right: 8px;
}

.top-left a,
.top-right a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  font-size: clamp(14px, 2.8vw, 16px); 
}

.top-left a:hover,
.top-right a:hover {
  text-decoration: underline;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 5%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: clamp(50px, 10vw, 70px);
  width: auto;
}

.nav-menu {
  flex: 1;
  margin-left: 20px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
  padding: 0;
  margin: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 10px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(16px, 2.8vw, 18px); 
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff5e3a;
}

.paynow a {
  display: inline-block;
  padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
  background-color: #ff5e3a;
  color: white;
  border-radius: 20px;
  font-weight: 500;
  font-size: clamp(14px, 2.2vw, 18px); 
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  white-space: nowrap;
}

.paynow a:hover {
  background-color: #e04e2a;
  color: white;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px; 
  cursor: pointer;
  color: #000;
  padding: 5px 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-content a {
  padding: 4px 12px;
  color: #333;
  white-space: nowrap;
  display: block;
  font-size: clamp(18px, 2.8vw, 20px);
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #ff5e3a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(to bottom, #6b48ff, #4b2dc1);
  color: white;
  list-style: none;
  margin: 0;
}

.breadcrumbs li {
  margin-right: 10px;
}

.breadcrumbs li a {
  color: white;
  text-decoration: none;
  font-size: clamp(1.3rem, 2.8vw, 1.5rem); 
  transition: text-decoration 0.3s;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li::after {
  content: "•";
  margin-left: 10px;
  color: #ff6347;
}

.breadcrumbs li:last-child::after {
  content: "";
}

/* Hero Section */
.hero-section {
  position: relative;
  text-align: center;
  background: url('https://i.pinimg.com/736x/47/92/b2/4792b214228bf6fe4aae6366ae0e3cc7.jpg') center center / cover no-repeat;
  padding: 60px 20px;
  color: white;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 6vw, 4rem); 
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1.4rem, 2.8vw, 1.6rem); 
  font-weight: 300;
  margin-bottom: 20px;
}

/* Form Section */
.form-container {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  max-width: 960px;
  margin: 40px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #f4511e;
  font-size: clamp(2.8rem, 4.5vw, 3.2rem); 
  margin-bottom: 30px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); 
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', 'Roboto', sans-serif;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f4511e;
  outline: none;
}

.row > input,
.row > div {
  flex: 1;
  min-width: 250px;
}

textarea {
  resize: vertical;
  height: 100px;
}

.phone-field {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-field select {
  width: 150px;
  padding: 12px 10px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); 
}

.error {
  color: #d84315;
  font-size: clamp(1rem, 2vw, 1.1rem); 
  display: none;
}

.note {
  font-size: clamp(1rem, 2vw, 1.1rem); 
  color: #333;
  text-align: center;
}

.note a {
  color: #366393;
  text-decoration: none;
  transition: color 0.3s;
}

.note a:hover {
  color: #f4511e;
}

form button {
  align-self: flex-end;
  background-color: #f4511e;
  color: white;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); 
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #d84315;
}

/* Location Section */
.location-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.map-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.location-info {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.4rem); 
  color: #f05323;
  margin-bottom: 20px;
}

.location-info h3 {
  font-size: clamp(1.5rem, 2.8vw, 1.8rem); 
  margin-bottom: 8px;
  color: #333;
}

.location-info address {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); 
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: normal;
  color: #555;
}

/* Work Locations Section */
.section {
  display: block;
  background-color: #2f2f80;
  text-align: center;
  padding: 40px 20px;
  color: white;
  min-height: 300px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.section h2 {
  font-size: clamp(2.8rem, 4.5vw, 3.2rem); 
  color: #FF5C1B;
  margin-bottom: 40px;
}

.locations {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  visibility: visible;
  opacity: 1;
}

.card {
  display: block;
  background: white;
  color: black;
  width: 300px;
  min-height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  visibility: visible;
  opacity: 1;
  border-bottom: 1px solid #ddd;
  background-color: #f0f0f0;
}

.card img:not([src]) {
  background-color: #ccc;
  color: #333;
  font-size: clamp(16px, 2.8vw, 18px); 
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.card .info {
  padding: 20px;
}

.card .info h3 {
  color: #F45C2C;
  font-size: clamp(1.5rem, 2.8vw, 1.8rem); 
  margin: 0 0 10px;
}

.card .info p {
  margin: 0;
  color: #444;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); 
}

/* Testimonials Section */
section {
  padding: 40px 20px;
  background: #f9f9f9;
  position: relative;
  z-index: 1;
}

.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
  border: 1px solid #ff5722;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.15);
}

.mySlides {
  display: none;
  text-align: center;
}

.mySlides.active {
  display: block;
}

.testimonial-text {
  color: #1c1c1c;
  font-size: clamp(1.3rem, 2.8vw, 1.5rem); 
  line-height: 1.6;
  margin: 0;
}

.author {
  font-weight: 600;
  color: #0d0d0d;
  margin-top: 10px;
  text-align: right;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.numbertext {
  display: none;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #f9dbd2;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #f4511e;
}

/* Enquiries Section */
.enquiries-section {
  background-color: rgb(50, 50, 109);
  color: white;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', 'Roboto', sans-serif;
  position: relative;
  z-index: 1;
}

.enquiries-section h2 {
  color: #ff5722;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem); 
  margin-bottom: 20px;
  font-weight: 500;
}

.enquiries-section p {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem); 
  margin: 0;
}

.enquiries-section i {
  margin-right: 10px;
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem); 
}

/* Footer Section */
footer {
  background: linear-gradient(135deg, #0d6efd 0%, #003087 100%);
  color: #fff;
  padding: 3rem 1.2rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.15;
  z-index: 1;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-content .locations {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.footer-content .locations p:first-child {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  margin-bottom: 0.8rem;
  color: #fff;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-content .locations p:last-child {
  color: #e0e7ff;
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 2;
}

.footer-section {
  margin-bottom: 1.5rem;
}

h4 {
  font-size: clamp(1.5rem, 3.2vw, 1.7rem);
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  transition: color 0.3s, transform 0.3s;
  font-weight: 400;
  display: inline-block;
  position: relative;
}

footer ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

footer ul li a:hover::before {
  width: 100%;
}

footer ul li a:hover {
  color: #ff5e3a;
  transform: translateX(8px);
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #e0e7ff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  transition: color 0.3s;
}

.contact-info p:hover {
  color: #ff5e3a;
}

.contact-info p i {
  color: #ff5e3a;
  font-size: clamp(1.6rem, 3.8vw, 2rem);
  transition: transform 0.3s;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.social-container {
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  text-align: center;
  margin-top: 1.5rem;
  transition: background 0.3s;
}

.social-title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3.2vw, 1.7rem);
  color: #fff;
  letter-spacing: 1.2px;
}

.Social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.Social-icons a {
  color: #e0e7ff;
  font-size: clamp(1.8rem, 3.8vw, 2rem);
  transition: color 0.3s, transform 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.Social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
  background: #ff5e3a;
}

.footer-bottom {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1600px;
  text-align: center;
  padding: 1.5rem 0.75rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #e0e7ff;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  position: relative;
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 0.6px; 
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: clamp(13px, 2.5vw, 15px);
  }

  .top-left,
  .top-right {
    justify-content: center;
    width: 100%;
  }

  .top-left a,
  .top-right a {
    font-size: clamp(13px, 2.5vw, 15px); 
  }

  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 10px 15px;
    width: 100%;
    font-size: clamp(15px, 2.5vw, 17px); 
  }

  .paynow a {
    width: calc(100% - 30px);
    margin: 10px 15px;
    text-align: center;
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
    font-size: clamp(13px, 2.2vw, 16px); 
  }

  .hamburger {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    padding-left: 20px;
    min-width: 100%;
  }

  .dropdown-content a {
    padding: 4px 12px;
    font-size: clamp(17px, 2.5vw, 19px); 
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 2.8rem);
  }

  .hero-content p {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  }

  .form-container {
    padding: 20px;
  }

  .row > input,
  .row > div {
    min-width: 100%;
  }

  .phone-field select {
    width: 120px;
    font-size: clamp(1rem, 2vw, 1.1rem); 
  }

  .location-section {
    padding: 20px;
  }

  .section {
    padding: 20px;
    min-height: 200px;
  }

  .section h2 {
    font-size: clamp(2.4rem, 4vw, 2.8rem); 
  }

  .card {
    width: 100%;
    max-width: 300px;
    min-height: 250px;
  }

  .card img {
    height: 150px;
  }

  .card img:not([src]) {
    font-size: clamp(15px, 2.5vw, 17px);
  }

  .card .info h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem); 
  }

  .card .info p {
    font-size: clamp(1rem, 2vw, 1.1rem); 
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    padding: 0 1.2rem;
  }

  .footer-content .locations {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .footer-content .locations p:first-child {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    margin-bottom: 0.6rem;
  }

  .footer-content .locations p:last-child {
    font-size: clamp(1rem, 2.8vw, 1.2rem);
  }

  h4 {
    font-size: clamp(1.3rem, 3.2vw, 1.5rem);
    margin-bottom: 1rem;
  }

  footer ul li {
    margin-bottom: 0.5rem;
  }

  footer ul li a,
  .contact-info p {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  }

  .contact-info p {
    margin-bottom: 0.5rem;
  }

  .contact-info p i {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
  }

  .social-container {
    padding: 1.5rem 0.8rem;
    margin-top: 1.5rem;
  }

  .social-title {
    font-size: clamp(1.3rem, 3.2vw, 1.5rem);
    margin-bottom: 0.5rem;
  }

  .Social-icons {
    gap: 0.9rem;
    margin-top: 0.5rem;
  }

  .Social-icons a {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 1rem 0.5rem;
    margin-top: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }

  .top-bar {
    font-size: clamp(13px, 2.2vw, 14px); 
    padding: 8px 3%;
  }

  .top-left i,
  .top-left span,
  .top-right a {
    margin-right: 5px;
    margin-left: 5px;
    font-size: clamp(13px, 2.2vw, 14px); 
  }

  .paynow a {
    width: calc(100% - 20px);
    margin: 8px 10px;
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 15px);
    font-size: clamp(12px, 2.2vw, 14px);
  }

  .hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 2.4rem);
  }

  .hero-content p {
    font-size: clamp(1rem, 2vw, 1.1rem); 
  }

  .card img {
    height: 120px;
  }

  .card img:not([src]) {
    font-size: clamp(14px, 2.2vw, 16px); 
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0 0.8rem;
  }

  .footer-content .locations {
    padding: 0.8rem;
    margin-bottom: 1rem;
  }

  .footer-content .locations p:first-child {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: 0.4rem;
  }

  .footer-content .locations p:last-child {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  h4 {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: 0.8rem;
  }

  footer ul li {
    margin-bottom: 0.4rem;
  }

  footer ul li a,
  .contact-info p {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  }

  .contact-info p {
    margin-bottom: 0.4rem;
  }

  .contact-info p i {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
  }

  .social-container {
    padding: 0.8rem 0.4rem;
    margin-top: 0.8rem;
  }

  .social-title {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: 0.4rem;
  }

  .Social-icons {
    gap: 0.6rem;
    margin-top: 0.4rem;
  }

  .Social-icons a {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding: 0.6rem 0.3rem;
    margin-top: 0.8rem;
  }
}