:root {
    --primary-color: orange; /* Gold color */
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: var(--dark-color);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Enquiry Button Styling */
.btn-enquiry {
    background-color: orange; /* Orange background */
    color: white; /* White text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-enquiry:hover {
    background-color: white; /* White background on hover */
    color: orange; /* Orange text on hover */
    border: 1px solid orange; /* Border on hover */
  }
.dropdown-menu {
    background-color: var(--dark-color);
    border: 1px solid var(--primary-color);
}

.dropdown-item {
    color: white !important;
    padding: 8px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--dark-color) !important;
}
.social-icon a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icon a:hover {
    
    transform: scale(1.3); 
  }
  .social-icon a:hover .fa-facebook-f { color: #3b5998; }  /* Facebook blue */
.social-icon a:hover .fa-instagram { color: #e4405f; }   /* Instagram pink */
.social-icon a:hover .fa-twitter   { color: #1da1f2; }   /* Twitter blue */
.social-icon a:hover .fa-youtube   { color: #ff0000; }   /* YouTube red */

.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    
    text-align: center;
}
.video-section {
    position: relative;
    width: 100%;
    height: 90vh; /* Full screen height */
    overflow: hidden;
  }
  
  #bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  
  /* This is your dark transparent gradient overlay */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -1;
  }
  
  /* Content on top */
  .content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
  }
  

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.footer {
    background: #212529;
    color: #ccc;
    padding: 50px 0 20px;
    font-size: 14px;
  }
  
  .footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }
  
  .footer-section h3 {
    color: orange;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: orange;
  }
  
  .footer .social-icons a {
    color: #ccc;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .footer .social-icons a:hover {
    color: orange;
  }
  .footer-bottom{
    text-align: center;
    border-top: 1px solid #fff;
}
.footer-bottom p{
    margin-top: 15px;
}
  
  /* Newsletter Form */
  .newsletter-form {
    display: flex;
    margin-top: 10px;
  }
  
  .newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    flex: 1;
  }
  
  .newsletter-form button {
    background: orange;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.menu-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.menu-card-header {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 15px;
    text-align: center;
    font-weight: 700;
}

.menu-card-body {
    padding: 20px;
}

.menu-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dropdown-menu {
        background-color: var(--dark-color);
    }
}

/* Enable nested dropdowns to appear properly */
.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  
  .dropdown-submenu:hover .submenu {
    display: block;
  }
  
  .dropdown-submenu > .dropdown-toggle::after {
    content: " ▸";
    float: right;
  }

  /* Service Section Styling */
.grid-section {
    padding: 60px 0;
}

.title-header .title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.title-header .title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #f4a950; /* your brand color */
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.featured-imagebox {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height:90%;
}




.content h1{
    font-size: 60px;
    font-weight: 700;
    color: orange;
    margin-bottom: 23px;
}

.featured-thumbnail {
    overflow: hidden;
}

.featured-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.featured-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-title h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.featured-title h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title h3 a:hover {
    color: #f4a950; /* brand hover color */
}

.featured-desc p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.ttm-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    background-color: orange;
    padding: 10px;
    width: 31%;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.featured-imagebox{
    margin-bottom: 30px;
}

.ttm-btn:hover {
    color: #f4a950;
    border-bottom-color: #333;
    text-decoration: none;
}

/* Hover Effects */
.featured-imagebox:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.featured-imagebox:hover .featured-thumbnail img {
    transform: scale(1.05);
}

/* Animation when scrolling */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-section .row > div {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.grid-section .row > div:nth-child(1) { animation-delay: 0.2s; }
.grid-section .row > div:nth-child(2) { animation-delay: 0.4s; }
.grid-section .row > div:nth-child(3) { animation-delay: 0.6s; }
.grid-section .row > div:nth-child(4) { animation-delay: 0.8s; }
.grid-section .row > div:nth-child(5) { animation-delay: 1s; }
.grid-section .row > div:nth-child(6) { animation-delay: 1.2s; }
.grid-section .row > div:nth-child(7) { animation-delay: 1.4s; }
.grid-section .row > div:nth-child(8) { animation-delay: 1.6s; }
.grid-section .row > div:nth-child(9) { animation-delay: 1.8s; }


/* Custom Heading Style */
.custom-heading {
    font-size: 2.5rem;
    color: #333; /* Bootstrap primary color (blue) */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Optional: Add smooth fade-in animation */
.custom-heading {
    animation: fadeInDown 1s ease-in-out;
}

/* FadeIn Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Heading Style */
.custom-heading {
    font-size: 2.5rem;
    color: #333; /* your website's gold-like theme color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Optional: Add a smooth fade-in animation */
.custom-heading {
    animation: fadeInDown 1s ease-in-out;
}

/* FadeInDown Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Section */
.testimonial {
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
  }
  
  .section-title h4 {
    color: orange;
    font-family: 'Cursive', sans-serif;
  }
  
  .section-title h1 {
    font-weight: bold;
    margin-bottom: 30px;
    color:#212529;
  }
  
  /* Testimonial Cards */
  .testimonial-card {
    background: #ecbd23;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: 0.4s;
  }
  
  .testimonial-card.active {
    
    color: #333;
  }
  
  .testimonial-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .client-info h3 {
    font-size: 18px;
    margin: 0;
  }
  
  .client-info span {
    font-size: 14px;
    color: #666;
  }
  
  /* Swiper Pagination Dots */
  .swiper-pagination-bullet {
    background: orange;
    opacity: 0.7;
  }
  
  .swiper-pagination-bullet-active {
    background: orange;
    opacity: 1;
  }
  


  

  /* --- Gallery Section Styling --- */
.gallery-section {
    padding: 30px 0;
    background-color: #fff;
  }
  
  .gallery-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .gallery-header h2 {
    font-size: 36px;
    color: #212529;
    margin-bottom: 10px;
  }
  
  .gallery-header p {
    font-size: 18px;
    color: #777;
  }
  
  /* --- Gallery Grid Layout --- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
  }
  
  /* --- Hover Animation --- */
  .gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
    cursor: pointer;
  }
  .gallery-header h2::after {
    content: "";
    display: block;
    width: 60px; /* underline width */
    height: 3px; /* underline thickness */
    background-color: #d4af37; /* underline color (adjust as needed) */
    margin: 8px auto 0;
    border-radius: 2px;
  }
  
  /* --- Responsive --- */
  @media (max-width: 768px) {
    .gallery-header h2 {
      font-size: 28px;
    }
    .gallery-header p {
      font-size: 16px;
    }
  }



  