*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'open sans','Segoe UI';
}
body .container{
    max-width:1250px;
    margin:auto;
} 

/*Navbar*/
 .navbar {
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff75;
  padding: 0px 0px;
  backdrop-filter: blur(5px);
}

.containerr {
  max-width: 1200px;
  width:100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo a {
  color: #C93526;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Menu Links */
.nav-menu .bar {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom:0;
}

.nav-menu a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #C93526;
}

.dropdown-menu a{
    color:#fff;

}
.dropdown-menu{
    background:#111;
}
.nav-link:focus, .nav-link:hover {
  color: #222;
}
 .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #fff;
}

/* Button */
.btn-primary {
  background: #C93526;
  color: #004aad;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-menu .btn-primary:hover {
  background: #fff;
  color:#222;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #222;
  transition: 0.3s;
}
.rightside{
    display:flex;
    column-gap:30px;
    align-items:center;
}
.rightside a{
    font-weight:600;
}

/* Responsive Styles */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    width: 50%;
    height:max-content;
    padding: 20px;
    background-color:black;
    border-radius:15px;
    transform: translateX(100%); 
    transition: transform 350ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
    z-index: 999; 
  }
  .nav-menu .active{
      color:#c93526!important;
  }
  .nav-menu a{
      color:white;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
 

  .nav-menu.show {
    transform: translateX(0); 
  }

  .menu-toggle {
    display: flex;
  }

   .rightside{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    gap: 15px; 
}
   .btn-primary {
  background: #fff;
  color:black!important;
}
  .rightside .bar{
     display:flex;
     flex-direction:column;
     justify-content:center;
     align-items:flex-start;
   }
    .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    background: #111;
    margin-top: 10px;
  }

  .dropdown-menu.show {
    display: block;
  }

}

/*Hero section*/
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  height: 100%;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:brightness(40%);
}

/* Optional: Pagination style */
.swiper-pagination-bullet {
  background: #C93526!important; /* your brand color */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #C93526!important;
}
.hero-section .swiper-slide img {
    transform: scale(1);
    transition: transform 8s ease-in-out;
}

.hero-section .swiper-slide-active img {
    transform: scale(1.2);
}
.hero-text{
    position:absolute;
    left:10%;
    top:50%;
    max-width:650px;
    line-height:1.6;
}
.hero-text h2{   
   color:#fff;
   font-size:3.3rem;
   font-weight:600;
}
/* Button */
.btn-gold {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #C93526;
    color: #fff;
    border:none;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #A12A1E;
    color: #fff;
}

@media(max-width:768px){
  .hero-section {
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
}
  .hero-text{
    position:absolute;
    left:7%;
    top:50%;
    max-width:650px;
    line-height:1.6;
}
  .hero-text h2 {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 600;
}

.hero-section .btn-gold {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  background: #C93526;
  color: #fff;
  font-size:14px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}
}

/*About section*/
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

 span {
    color: #C93526;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}
@media(max-width:768px){
    .about-section {
  padding: 60px 0;
  background: #ffffff;
}
  .about-section .row{
   flex-direction:column-reverse;
}
}

/*Why us section*/
.why-us {
  padding: 80px 0;
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url("../img/sl1.jpg") no-repeat;
  background-position-y:50%;
  color: #fff;
  margin:40px 0 50px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
 background: rgba(10, 10, 10, 0.52);
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #222;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #EE2814;
  background: none;
}

.why-card h4 {
  color: #da2614;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: #ccc;
}
@media(max-width:768px){
  .why-grid {
  display: grid;
  grid-template-columns:1fr;
  gap: 20px;
}
}

/*Footer section*/
.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section hr {
  opacity: 0.2;
}

/*service section*/
.services-slider {
  padding: 40px 0 60px;
  color: #fff;
}
.service-title{
   font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom:40px;
}
.service-box {
  background: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
  border-color: gold;
}

.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-box h4 {
  color: gold;
  margin: 15px 0 5px;
}

.service-box p {
  font-size: 14px;
  color: #ccc;
  padding-bottom: 15px;
}

/*section*/
.cta {
  padding: 50px 0;
  background: #fff;
  text-align: center;
  margin:20px 0;
  border: 2px solid #c9c9c9;
}

.cta-box {
  max-width: 700px;
  margin: auto;
}
.cta-box span{
   color: #c93526;
}

.cta-box h2 {
  font-size: 2.1rem;
  margin-bottom: 15px;
  color: #111;
  font-weight: 600; 
}

.cta-box p {
  color: #444;
  margin-bottom: 25px;
  font-size: 15px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #c93526;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #111;
  color:#fff;
}

/*Testimonials*/
.testimonials {
  padding: 40px 0;
  color: #fff;
  text-align: center;
  margin-bottom:40px;
}

/* Slider */
.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(300px * 8); /* total cards */
  animation: scroll 20s linear infinite;
}

.testi-card {
  width: 300px;
  margin: 0 15px;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  flex-shrink: 0;
}

.testi-card p {
  color: #ccc;
  font-style: italic;
  margin-bottom: 15px;
}

.testi-card h4 {
  color: gold;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*Contact page*/
.contact-section {
    padding: 100px 0;
    background: #fff;
}
.contact-section .container{
    max-width:1140px;
    margin:auto;
}
.contact-title {
    font-size: 36px;
    color: #111;
    font-weight: 600;
}

.contact-subtitle {
    color: #777;
    margin-top: 10px;
}

/* Form */
 input,textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    outline: none;
}

 input:focus,
textarea:focus {
    border-color: #C9A14A;
}

/* Info */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #c9c9c9;
}

.info-box {
    margin-bottom: 20px;
}

.info-box h6 {
    color: #C93526;
    margin-bottom: 5px;
}

.info-box p {
    color: #555;
    font-size:14px;
}

/* 
.btn-gold {
    padding: 12px 30px;
    background: linear-gradient(45deg, #C9A14A, #E5C97A);
    color: #111;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #A12A1E;
    color: #fff;
} */

/* Map */
.map iframe {
    border-radius: 10px;
}
@media(max-width:768px){
    .contact-section .row{
        flex-direction:column-reverse;
        gap:20px;
    }
}
.logo img{
    width:130px;
    height:auto;
}