/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f0b90b;
  border-radius: 2px;
}

.section-title.light {
  color: white;
}

.section-title.light::after {
  background: white;
}

/* ========== NAVIGATION ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #0a2a3b;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f0b90b;
}

.logo-sub {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: 0.3s;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f0b90b;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: #f0b90b;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;
}

.slide-content {
  color: white;
  max-width: 600px;
  margin-left: 10%;
  animation: slideUp 1s ease;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background: #f0b90b;
  border-color: #f0b90b;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 30px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.indicator.active,
.indicator:hover {
  background: #f0b90b;
  width: 50px;
}

/* ========== PROFILE SECTION ========== */
.profile-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.profile-header {
  text-align: center;
  margin-bottom: 3rem;
}

.company-title {
  font-size: 4rem;
  font-weight: 800;
  color: #0a2a3b;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.company-tagline {
  font-size: 1.5rem;
  color: #f0b90b;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a2a3b;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.specialty-badge i {
  color: #f0b90b;
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.detail-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: #f0b90b;
}

.detail-card h3 {
  color: #0a2a3b;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  border-bottom: 2px solid #f0b90b;
  padding-bottom: 0.5rem;
}

.detail-card h3 i {
  color: #f0b90b;
  margin-right: 10px;
}

.phone-numbers {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a2a3b;
  margin-bottom: 0.5rem;
}

.availability {
  color: #28a745;
  font-size: 0.9rem;
}

.location-item {
  margin-bottom: 1rem;
}

.location-item strong {
  display: block;
  color: #f0b90b;
  margin-bottom: 0.2rem;
}

.service-area {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #dee2e6;
  color: #0a2a3b;
}

.director-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a2a3b;
  margin-bottom: 0.5rem;
}

.experience {
  color: #f0b90b;
  font-weight: 500;
}

.company-description {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  font-size: 1.1rem;
  line-height: 1.8;
  border-left: 5px solid #f0b90b;
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
  padding: 5rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid transparent;
}

.service-item:hover {
  border-color: #f0b90b;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #0a2a3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #f0b90b;
  font-size: 2rem;
  transition: 0.3s;
}

.service-item:hover .service-icon {
  background: #f0b90b;
  color: #0a2a3b;
}

.service-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0a2a3b;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: #f0b90b;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a2a3b 0%, #1a3a4b 100%);
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature {
  padding: 2rem;
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(240, 185, 11, 0.3);
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f0b90b;
}

/* ========== QUICK CONTACT ========== */
.quick-contact {
  padding: 3rem 0;
  background: #f0b90b;
}

.contact-card-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-info-compact h3 {
  font-size: 1.8rem;
  color: #0a2a3b;
  margin-bottom: 0.5rem;
}

.contact-info-compact p {
  font-size: 1.1rem;
  color: #1a3a4b;
}

.contact-numbers-large {
  display: flex;
  gap: 2rem;
}

.contact-numbers-large span {
  font-size: 1.5rem;
  font-weight: 700;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: #0a2a3b;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-numbers-large i {
  color: #f0b90b;
}

/* ========== FOOTER ========== */
footer {
  background: #051f2b;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: #f0b90b;
  font-weight: 300;
}

.footer-logo p {
  color: #aaa;
}

.footer-address p,
.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-address i,
.footer-contact i {
  color: #f0b90b;
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .slide-content h2 {
    font-size: 2.5rem;
  }
  
  .company-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0a2a3b;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    gap: 1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-carousel {
    height: 450px;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1.2rem;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
  }
  
  .contact-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-numbers-large {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-numbers-large span {
    justify-content: center;
  }
}






















/* ========== SERVICES PAGE ADDITIONS ========== */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0a2a3b 0%, #1a3a4b 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Detailed Section */
.services-detailed {
  padding: 3rem 0 5rem;
}

.service-detailed-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.service-detailed-item.reverse {
  direction: rtl;
}

.service-detailed-item.reverse .service-detailed-content {
  direction: ltr;
}

.service-detailed-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  height: 450px;
}

.service-detailed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.service-detailed-content {
  padding: 2rem;
}

.service-detailed-icon {
  width: 70px;
  height: 70px;
  background: #f0b90b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #0a2a3b;
}

.service-detailed-content h2 {
  font-size: 2.5rem;
  color: #0a2a3b;
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-size: 1.2rem;
  color: #f0b90b;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f0b90b;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.service-description {
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.8;
}

.service-features-list {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.service-features-list h3 {
  color: #0a2a3b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-features-list ul {
  list-style: none;
}

.service-features-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-features-list i {
  color: #f0b90b;
  font-size: 1.2rem;
  margin-top: 2px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #f0b90b;
  color: #0a2a3b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: #f0b90b;
  color: #0a2a3b;
}

.btn-primary:hover {
  background: transparent;
  color: #f0b90b;
}

/* Work Process Section */
.work-process {
  padding: 5rem 0;
  background: #f8f9fa;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f0b90b;
  opacity: 0.3;
  min-width: 70px;
}

.step-content h3 {
  color: #0a2a3b;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #666;
}

/* Why Choose Short */
.why-choose-short {
  padding: 4rem 0;
  background: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.why-item {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
  background: #0a2a3b;
  color: white;
}

.why-item:hover i {
  color: #f0b90b;
}

.why-item i {
  font-size: 2.5rem;
  color: #f0b90b;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0a2a3b;
}

.why-item:hover h4 {
  color: white;
}

.why-item p {
  color: #666;
  font-size: 0.9rem;
}

.why-item:hover p {
  color: #ddd;
}

/* Responsive for Services Page */
@media (max-width: 992px) {
  .service-detailed-item,
  .service-detailed-item.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  
  .service-detailed-image {
    height: 350px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}












/* ========== CONTACT PAGE ADDITIONS ========== */

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

/* Contact Info Styles */
.contact-info h2 {
  font-size: 2.2rem;
  color: #0a2a3b;
  margin-bottom: 1rem;
}

.contact-intro {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: 0.3s;
  border-left: 4px solid transparent;
}

.info-card:hover {
  transform: translateX(5px);
  border-left-color: #f0b90b;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #0a2a3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0b90b;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 1.1rem;
  color: #0a2a3b;
  margin-bottom: 0.3rem;
}

.info-details p {
  color: #555;
  margin-bottom: 0.2rem;
}

.info-details a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.info-details a:hover {
  color: #f0b90b;
}

.info-note {
  font-size: 0.85rem;
  color: #f0b90b !important;
  margin-top: 0.3rem;
  font-weight: 500;
}

.director-contact {
  background: #e8f0fe;
}

.director-name {
  font-weight: 700;
  color: #0a2a3b !important;
  font-size: 1.1rem;
}

/* Business Hours */
.business-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #0a2a3b;
  border-radius: 15px;
  color: white;
}

.business-hours h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-hours h3 i {
  color: #f0b90b;
}

.business-hours ul {
  list-style: none;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.business-hours li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.business-hours span {
  font-weight: 500;
  color: #f0b90b;
}

/* Contact Form Styles */
.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-container h2 {
  font-size: 2rem;
  color: #0a2a3b;
  margin-bottom: 0.5rem;
}

.form-intro {
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #0a2a3b;
  font-weight: 500;
}

.form-group label i {
  color: #f0b90b;
  margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f0b90b;
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-right: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.btn-submit {
  background: #f0b90b;
  color: #0a2a3b;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  border: 2px solid #f0b90b;
}

.btn-submit:hover {
  background: transparent;
  color: #f0b90b;
}

.btn-submit i {
  margin-right: 8px;
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 2rem;
  background: #d4edda;
  border-radius: 15px;
  color: #155724;
}

.form-success i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.map-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-wrapper h3 {
  color: #0a2a3b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-wrapper h3 i {
  color: #f0b90b;
}

.map-frame {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 1rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address {
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.map-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: #e9ecef;
  border-radius: 50px;
  color: #0a2a3b;
  font-size: 0.95rem;
}

.map-note i {
  color: #f0b90b;
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .map-frame {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .business-hours li {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .info-card {
    padding: 1rem;
  }
  
  .contact-form-container h2 {
    font-size: 1.8rem;
  }
}













.footer {
 
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo span {
  color: #f4b400;
}

.footer-heading {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #f4b400;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f4b400;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}









/* ================= WELCOME SECTION ================= */

.welcome-section {
  padding: 80px 0;
  background: #ffffff;
}

.welcome-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.welcome-content {
  flex: 1;
  min-width: 300px;
}

.welcome-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

.welcome-title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 15px;
  color: #111;
}

.welcome-line {
  width: 60px;
  height: 4px;
  background: #ff6b00;
  margin-bottom: 20px;
}

.welcome-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.welcome-image {
  flex: 1;
  min-width: 300px;
}

.welcome-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .welcome-line {
    margin: 0 auto 20px;
  }
}











/* GST Section */
.gst-section {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.gst-card {
  background: #f8f9fa;
  padding: 20px 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #c59d5f;
}

.gst-card i {
  font-size: 28px;
  color: #c59d5f;
}

.gst-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.gst-card p {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 500;
}