body {
    font-family: 'Work Sans', sans-serif;
    overflow-x: hidden;
}

.top-bar {
    background-color: #D4AF37;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
}

.top-bar a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.social-links a {
    margin-left: 10px;
}

.main-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: 100px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 1rem 1.2rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

.get-in-touch-btn {
    padding: 8px 15px;
    border-radius: 8px;
    width: 20%;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
    color: #000000;
    background-color: #ffffff;
}

.get-in-touch-btn:hover {
    background-color: #D4AF37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Hero Carousel Styles */
#heroCarousel {
    position: relative;
}

.carousel-item {
    height: 80vh;
    min-height: 500px;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.659);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    background-color: #D4AF37;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Stats Cards Styles */
.stats-cards {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 10;
}

.stat-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #D4AF37;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 15px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    transition: all 0.2s ease;
}

.stat-number.animated {
    animation: pulse 1s infinite;
}



@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    transition: all 0.2s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.2s ease;
}
.services-dropdown {
    position: relative;
}

.services-dropdown .services-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 230px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
}

.services-dropdown:hover .services-menu {
    display: block;
}

.services-menu li {
    list-style: none;
}

.services-menu li a {
    display: block;
    padding: 8px 20px;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.services-menu li a:hover {
    background-color: #D4AF37;
    color: white;
}

.services-dropdown .nav-link i {
    font-size: 12px;
    margin-left: 5px;
    color: #D4AF37;
}

.services-dropdown .nav-link {
    color: #D4AF37;
}

/* Responsive Styles for Services */
@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 20px;
    }
}
/* Responsive Styles */
@media (max-width: 1199.98px) {
    .carousel-caption h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        margin: 1rem 0;
    }
    
    .get-in-touch-btn {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .stats-cards {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }

    .stat-card {
        margin-bottom: 20px;
        height: 160px;
        padding: 25px 20px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-section {
        padding: 80px 0;
    }

    .service-card {
        padding: 30px 25px;
    }

    .logo-img {
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
    }

    .top-bar a {
        display: block;
        margin: 5px 0;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .stat-card {
        height: 120px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .stat-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 16px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-image {
        padding: 15px;
    }

    .section-title {
        font-size: 1.75rem;
        text-align: justify;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: justify;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.7;
        text-align: justify;
    }

    .about-content {
        text-align: left;
    }

    .about-content .btn {
        padding: 10px 25px;
        font-size: 1rem;
        width: auto;
        display: inline-block;
    }

    .section-header {
        text-align: justify;
    }

    .section-description {
        text-align: justify;
    }

    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 1rem;
    }

    .logo-img {
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .carousel-caption h1 {
        font-size: 1.75rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .stat-card {
        height: 150px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .stat-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .logo-img {
        height: 50px;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
   
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    
}

.about-content {
    padding-left: 50px;
}

.section-subtitle {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-content .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    background-color: #D4AF37;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-content .btn:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.service-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    word-spacing: -1px;  /* Reduce space between words */
    letter-spacing: -0.2px;  /* Reduce space between letters */
    text-justify: inter-word;  /* Improve justified text distribution */
}
/* Responsive Styles for About Section */
@media (max-width: 1199.98px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 40px 0;
    }

    .about-image {
        padding: 15px;
    }

    .section-title {
        font-size: 1.75rem;
        text-align: justify;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: justify;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.7;
        text-align: justify;
    }

    .about-content {
        text-align: left;
    }

    .about-content .btn {
        padding: 10px 25px;
        font-size: 1rem;
        width: auto;
        display: inline-block;
    }

    .section-header {
        text-align: justify;
    }

    .section-description {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 30px 0;
    }

    .about-image {
        padding: 10px;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: left;
    }

    .about-text {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: justify;
    }

    .about-content {
        text-align: left;
    }

    .about-content .btn {
        width: auto;
        padding: 12px 25px;
        display: inline-block;
    }

    .section-header {
        text-align: justify;
    }

    .section-description {
        text-align: left;
    }
}

/* Services Section Styles */
.services-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    
}

.section-header {
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #D4AF37;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
}

.service-icon i {
    font-size: 32px;
    color: #D4AF37;
    transition: all 0.3s ease;
    backface-visibility: hidden;
}

.service-card:hover .service-icon {
    background: #D4AF37;
    transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #c19b2e;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Partners Section Styles */
.partners-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.partners-carousel {
    padding: 20px 0;
}

.partner-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.partner-card:hover {
   
    border:1px solid #D4AF37;
}

.partner-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partners-carousel .owl-nav button {
    font-size: 24px !important;
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partners-carousel .owl-nav button:hover {
    background: #f8f9fa !important;
}

@media (max-width: 576px) {
    .partner-card {
        height: 250px;
    }
}

/* Banner Section Styles */
.banner-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-section::before,
.banner-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.banner-section::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.banner-section::after {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
}

.banner-circle-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner-circle-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    top: 20%;
    right: 15%;
    z-index: 1;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.banner-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.banner-buttons .btn-primary {
    background-color: #D4AF37;
    border: none;
    color: #ffffff;
}

.banner-buttons .btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.banner-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.banner-buttons .btn-outline:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for Banner Section */
@media (max-width: 991.98px) {
    .banner-section {
        padding: 60px 0;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .banner-circle-1 {
        width: 150px;
        height: 150px;
    }

    .banner-circle-2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .banner-section {
        padding: 50px 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .banner-buttons .btn {
        width: 100%;
    }

    .banner-circle-1 {
        width: 100px;
        height: 100px;
    }

    .banner-circle-2 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575.98px) {
    .banner-section {
        padding: 40px 0;
    }

    .banner-content h2 {
        font-size: 1.75rem;
    }

    .banner-content p {
        font-size: 0.95rem;
    }

    .banner-circle-1,
    .banner-circle-2 {
        display: none;
    }
}

.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-section .accordion-item {
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    padding: 20px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #D4AF37;
    background-color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 20px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .accordion-button {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-section .accordion-body {
        padding: 15px;
        font-size: 14px;
    }
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #D4AF37;
}

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    color: #D4AF37;
    margin-right: 8px;
    font-size: 12px;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #999;
}

.footer-contact li i {
    color: #D4AF37;
    margin-right: 10px;
    margin-top: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #999;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

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

.footer-bottom-links a:hover {
    color: #D4AF37;
}

@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-title {
        font-size: 18px;
    }
}

.hero-inner {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-inner .container {
    position: relative;
    z-index: 1;
}

.hero-inner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-inner .breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.hero-inner .breadcrumb-item {
    font-size: 18px;
}

.hero-inner .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-inner .breadcrumb-item a:hover {
    color: #D4AF37;
}

.hero-inner .breadcrumb-item.active {
    color: #D4AF37;
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 80px 0;
    }
    
    .hero-inner-title {
        font-size: 36px;
    }
    
    .hero-inner .breadcrumb-item {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
}

.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-card .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-vision-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-card {
        padding: 30px;
    }
    
    .mission-vision-card .section-title {
        font-size: 24px;
    }
}

.core-values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.core-value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
  
}

.core-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #D4AF37;
}

.core-value-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.core-value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.core-value-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.core-value-icon i {
    font-size: 32px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.core-value-card:hover .core-value-icon {
    background: #D4AF37;
    transform: rotateY(360deg);
}

.core-value-card:hover .core-value-icon i {
    color: #fff;
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 60px 0;
    }
    
    .core-value-card {
        padding: 20px;
    }
    
    .core-value-card h3 {
        font-size: 20px;
    }
}

/* Core Values Carousel Styles */
.core-values-carousel {
    margin-top: 40px;
}

.core-values-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.core-values-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border: 1px solid #D4AF37 !important;
    border-radius: 50% !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.core-values-carousel .owl-nav button:hover {
    background: #D4AF37 !important;
}

.core-values-carousel .owl-nav button:hover i {
    color: #fff !important;
}

.core-values-carousel .owl-nav button i {
    color: #D4AF37;
    font-size: 18px;
    line-height: 40px;
}

.core-values-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.core-values-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.core-values-carousel .owl-dot.active {
    background: #D4AF37 !important;
    transform: scale(1.2);
}

.core-values-carousel .item {
    padding: 15px;
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
}

.mission-vision-icon i {
    font-size: 32px;
    color: #D4AF37;
    transition: all 0.3s ease;
    backface-visibility: hidden;
}

.mission-vision-card:hover .mission-vision-icon {
    background: #D4AF37;
    transform: rotateY(180deg);
}

.mission-vision-card:hover .mission-vision-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

/* === Custom Navbar Styles === */
.custom-navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100px;
}
.nav-menu {
    display: flex;
    align-items: center;
    transition: max-height 0.3s ease;
}
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list li {
    position: relative;
}
.nav-list a {
    display: block;
    padding: 1rem 1.2rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-list a:hover,
.nav-list .dropdown-toggle:hover {
    color: #D4AF37;
}
.get-in-touch-btn {
    margin-left: 20px;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid #D4AF37;
    color: #000;
    background: #fff;
    transition: all 0.3s;
}
.get-in-touch-btn:hover {
    background: #D4AF37;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}
/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}
.hamburger .bar {
    height: 4px;
    width: 100%;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* Dropdown Styles */
.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 200;
}
.dropdown .dropdown-menu.show {
    display: block;
}
.dropdown .dropdown-menu li a {
    padding: 10px 20px;
    color: #D4AF37;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.dropdown .dropdown-menu li a:hover {
    background: #D4AF37;
    color: #fff;
}
.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    color: #D4AF37;
}
/* Responsive Styles */
@media (max-width: 991px) {
    .nav-container {
        height: 70px;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: max-height 0.3s ease;
    }
    .nav-menu.active {
        max-height: 600px;
        padding-bottom: 20px;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    .nav-list li {
        width: 100%;
    }
    .nav-list a, .dropdown-toggle {
        width: 100%;
        padding: 1rem 2rem;
    }
    .get-in-touch-btn {
        margin: 10px 0 0 0;
        width: 90%;
        text-align: center;
    }
    .hamburger {
        display: flex;
    }
    .dropdown .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
}
@media (max-width: 575px) {
    .nav-container {
        padding: 0 8px;
    }
    .get-in-touch-btn {
        width: 100%;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        height: 100px;
    }
    .navbar-brand {
        justify-self: start;
    }
    .nav-menu {
        justify-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav-list {
        justify-content: center;
        width: 100%;
    }
    .get-in-touch-btn {
        justify-self: end;
        margin-left: 0;
    }
}