* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: scale(1.05);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  transition: transform 8s ease-out;
}

.slide.active .slide-image {
  transform: scale(1.05);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
  padding: 2rem;
  z-index: 3;
}

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.btn-contact {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.btn-contact:hover {
  background: white;
  color: #000;
}

/* Indicators */
.slider-indicators {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 4;
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.indicator.active {
  color: white;
}

.line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.indicator.active .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: lineFill 5s linear forwards;
}

.indicator span {
  font-size: 1rem;
  font-weight: bold;
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 4;
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-nav button svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes lineFill {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-content {
    left: 5%;
    right: 5%;
    max-width: 90%;
    padding: 1rem;
  }
  
  .slide-content h2 {
    font-size: 2.5rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .slider-indicators {
    right: 20px;
  }
  
  .slider-nav {
    bottom: 20px;
  }
}

/* Animation Classes */
.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

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









  /* Contact Section */
.contact-section {
    position: relative;
    background-color: #003152;
    padding: 100px 60px;
    color: #fff;
    overflow: hidden;
}

/* Background Design */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 103, 36, 0.1) 0%, rgba(0, 49, 82, 0) 70%);
    z-index: 1;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #F26724;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    color: #333;
    border-radius: 12px;
    padding: 50px 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 32px;
    color: #003152;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

/* Inputs & Textarea */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1 1 45%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #F26724;
    box-shadow: 0 0 0 3px rgba(242, 103, 36, 0.1);
    background-color: #fff;
}

textarea {
    resize: none;
    flex: 1 1 100%;
    min-height: 120px;
}

/* Submit Button */
button[type="submit"] {
    background-color: #F26724;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #e05e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 103, 36, 0.3);
}

/* Contact Info */
.contact-info {
    max-width: 400px;
    color: #fff;
    text-align: left;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: -1;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-header {
    margin-bottom: 30px;
}

.info-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-header p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-icon {
    font-size: 48px;
    color: #F26724;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: #F26724;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p, .info-item a {
    color: #fff;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-item a:hover {
    opacity: 1;
    color: #F26724;
}

.social-icons {
    margin-top: 40px;
}

.social-icons p {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #F26724;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-section {
        padding: 80px 40px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 70px 30px;
    }
    
    .contact-container {
        gap: 40px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .contact-form h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .contact-info {
        max-width: 100%;
        padding: 30px;
    }
    
    .form-row input,
    .form-row textarea {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
}


/* why us  */
.why-choose-us {
  background-color: #f8fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 49, 82, 0.03) 0%, rgba(242, 103, 36, 0.03) 100%);
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  color: #003152;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #003152 0%, #F26724 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.choose-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.choose-list {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
}

.choose-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  border-left: 4px solid transparent;
}

.choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F26724;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 49, 82, 0.1) 0%, rgba(242, 103, 36, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #003152;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.choose-item:hover .icon-wrapper {
  background: linear-gradient(135deg, #003152 0%, #F26724 100%);
  color: white;
}

.content h3 {
  font-size: 1.3rem;
  color: #003152;
  margin-bottom: 10px;
  font-weight: 600;
}

.content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.choose-image {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  align-self: center;
}

.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid white;
  position: relative;
  z-index: 2;
}

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

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

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.1;
}

.shape.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #003152;
  top: -20px;
  right: -20px;
}

.shape.triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #F26724;
  bottom: -30px;
  left: -30px;
}

.shape.square {
  width: 60px;
  height: 60px;
  background: #003152;
  bottom: 40%;
  right: -15px;
  transform: rotate(15deg);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .choose-container {
    justify-content: center;
  }
  
  .choose-image {
    order: -1;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .choose-item {
    padding: 20px;
    gap: 15px;
  }
  
  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .content h3 {
    font-size: 1.1rem;
  }
  
  .content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .choose-item {
    flex-direction: column;
  }
  
  .icon-wrapper {
    margin-bottom: 10px;
  }
}