:root {
    --primary-red: #c0392b;
    --primary-green: #27ae60;
    --primary-gold: #d4af37;
    --dark-bg: #0c0b15;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #f5f5f5;


    --primary-color: #c0392b;
    --secondary-color: #27ae60;
    --accent-color: #ff6b6b;
    --light-color: #f8f9fa;
    --dark-color: #212529;


    --accent-color: #ff6b6b;
    --light-bg: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Philosopher', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 8px 0;
    font-weight: bold;
}

.top-bar i {
    margin-right: 8px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-red);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
}

.logo-img {
    margin-right: 20px;
}

.brand-text {
    line-height: 1.2;
}

.brand-text span:first-child {
    font-size: 1.2rem;
}

.brand-text span:last-child {
    font-size: 0.9rem;
    display: block;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: calc(100% - 30px);
}

.dropdown-menu {
    background-color: var(--primary-red);
    border: none;
    border-radius: 0;
}

.dropdown-item {
    color: var(--text-light);
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1531685250784-7569952593d2?ixlib=rb-4.0.3') no-repeat center center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-red);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

/* Welcome Section */
.welcome-section {
    background-color: #fff;
}

.main-section {
    background-color: var(--light-bg);
}

/* Contact Form */
.contact-section {
    background-color: var(--light-bg);
}

.form-card {
    background-color: var(--primary-red);
    border: 2px solid var(--text-light);
    border-radius: 8px;
    padding: 30px;
    color: var(--text-light);
}

.form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-green);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-primary:hover {
    background-color: #219653;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-red);
    padding: 60px 0;
    color: var(--text-light);
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
    font-size: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Services Section */
.services-section {
    background-color: #fff;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-red);
}

.service-content {
    padding: 20px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.btn-service {
    background-color: var(--primary-green);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-service:hover {
    background-color: #219653;
    color: #fff;
}

/* Article Section */
.article-section {
    background-color: var(--light-bg);
}

.article-item {
    margin-bottom: 40px;
}

.article-title {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* .testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(192, 57, 43, 0.1);
    line-height: 1;
} */

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    margin-bottom: 0;
}

.client-title {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--text-light);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    margin-top: 5px;
}

.copyright {
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-red);
    z-index: 1050;
    padding: 80px 20px 20px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-light);
    font-size: 24px;
    background: none;
    border: none;
}

.mobile-dropdown {
    padding-left: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .top-bar .col-md-4 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .brand-text span:first-child {
        font-size: 1rem;
    }

    .brand-text span:last-child {
        font-size: 0.8rem;
    }
}




.services-section {
    position: relative;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin-top: 15px;
}

.service-card {
    background: white;
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

/* .btn-service {
        color: #6a11cb;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .btn-service:hover {
        color: #2575fc;
    } */

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}


.stat-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .stat-box i {
        font-size: 1.5rem;
    }

    .stat-box h3 {
        font-size: 1.5rem;
    }
}



.testimonials-section {
    position: relative;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin: 15px auto;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    position: relative;
    padding: 0 10px;
}

.client-img {
    width: 60px !important;
    height: 60px;
    object-fit: cover;
    border: 3px solid rgba(106, 17, 203, 0.2);
}

.client-name {
    color: #333;
    font-weight: 600;
}

/* Owl Carousel Navigation Arrows */
.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-nav button {
    background: #6a11cb !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #2575fc !important;
    transform: scale(1.1);
}

/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    margin: 0 5px;
}

.owl-dots button.owl-dot.active {
    background: #6a11cb !important;
    transform: scale(1.2);
}

footer .contact-info a {
    color: #fff;
    text-decoration: none;
}

footer .contact-info a:hover {
    color: var(--primary-gold);
}



.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.contact-card #contactForm .form-control {
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #e1e5eb;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-card #contactForm .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25);
}
.contact-card a {
    text-decoration: none;
    color: var(--text-dark);
}

.submit-btn {
    background: var(--primary-color);
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: all 0.4s;
}

.submit-btn:hover::after {
    left: 120%;
}

.submit-btn:hover {
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.3);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(111, 66, 193, 0.4);
}


@media (max-width: 991px) {
    .contact-card {
        margin-bottom: 30px;
    }

    .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .header {
        padding: 80px 0 40px;
    }

    .map-container {
        height: 250px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
.top-bar a {
    color: #fff !important;
}
.top-bar a:hover {
    color: var(--primary-gold) !important;
}
.navbar-toggler-icon {
    display: block;
    pointer-events: auto;
    z-index: -1;
    position: relative;
}