@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&display=swap');

/* Global Styles */
:root {
    --primary-color: #ff5e14;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #555;
    --white: #fff;
    --black: #000;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* color: var(--text-color); */
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}

section {
    padding: 0px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.gradient-heading {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #908d8d, #a09c96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Optional: Mobile responsiveness */
@media (max-width: 600px) {
    .gradient-heading {
        font-size: 28px;
    }
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #e04b0b;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

body {
    /* color: #444444; */
    font-weight: 400;
    background: #ffffff;
    font-family: 'Barlow', sans-serif;
    
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #ffff;
}

a {
    color: #eef0f5;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #E81C2E;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center; 
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #E81C2E;
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 #202C45;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: #E81C2E;
    background: #202C45;
    box-shadow: inset 200px 0 0 0 #202C45;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #E81C2E;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: #E81C2E;
    border-radius: 44px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #202C45;
}


/* Header */
/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: rgb(13 13 13);
}

.nav-bar.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgb(13 13 13);
    z-index: 999;
}

.nav-bar .navbar {
    padding: 20px 0;
    background: rgb(13 13 13);
    transition: .3s;
}

.nav-bar.nav-sticky .navbar {
    padding: 5px 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #E81C2E;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn.btn-custom {
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.nav-bar .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

.bg-dark {
    background-color: rgb(13 13 13)!important;
}

@media (max-width: 778px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}



/* Mobile View Styles */
.slide__desc {
    font-size: 14px;
    letter-spacing: 3.2px;
    text-align: center;
    line-height: 1.88;
    margin-top: 215px;
}

/* Hero Section */
.hero {
    position: relative; /* This is crucial for absolute positioning of video */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    color: var(--white);
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    text-align: center;
    overflow: hidden; /* Prevent video from overflowing */
}

.hero .container {
    position: relative; /* Make content stay above video */
    z-index: 2; /* Higher than video's z-index */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below content but above hero background */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Rest of your existing hero styles */
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: 20px;
}

/* About Section */
.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    text-align: left;
}

.about-content h2::after {
    left: 0;
    transform: translateX(0);
}

.about-content p {
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 22px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
/* .cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
} */

/* Footer */
.footer {
    background-color: rgb(13 13 13);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .footer-col1 {
        display: none;
    }
}


.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--light-gray);
    margin-left: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive for Tablets & Mobile */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 110px; /* Just above footer */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%; /* Perfect circle */
    font-size: 28px;
    text-align: center;
    line-height: 60px; /* Vertically center icon */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .hero {
        height: 70vh;
        padding: 30px 0;
    }

    .hero .video-background video {
        object-fit: cover; /* Still cover in mobile */
        min-height: 100%;
        min-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }
}

/* 
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        display: none;
        width: 100%;
    }
    
    .navbar.active {
        display: block;
    }
    
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar ul li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
} */

.page-banner1 {
    position: relative;
    height: 83.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-banner01 {
    position: relative;
    height: 83.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.page-banner1 h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-banner1 p {
    font-size: 20px;
}

.services-detailed {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.service-detail {
    display: flex;
    flex-wrap: wrap; /* important for mobile stacking */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 50%;
    padding: 20px;
    box-sizing: border-box;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.service-detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 15px;
    color: #111010;
    position: relative;
    padding-left: 25px;
}

.service-detail-content ul li i {
    color: #28a745;
    position: absolute;
    left: 0;
    top: 2px;
}

.service-detail-content .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #eca311;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.service-detail-content .btn:hover {
    background-color: #ea8d1b;
}

.service-detail-image {
    flex: 1 1 50%;
    padding: 20px;
    box-sizing: border-box;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .service-detail {
        flex-direction: column !important; /* force column on mobile */
    }

    .service-detail.reverse {
        flex-direction: column !important; /* force reverse also column */
    }

    .service-detail-content {
        flex: 1 1 100%;
        padding: 10px 0;
        text-align: center;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .service-detail-content p {
        font-size: 14px;
    }

    .service-detail-content ul li {
        font-size: 14px;
        padding-left: 20px;
    }

    .service-detail-content .btn {
        margin-top: 10px;
    }

    .service-detail-image {
        flex: 1 1 100%;
        padding: 0;
        width: 100%;
    }

    .service-detail-image img {
        width: 100%;
        height: auto;
        border-radius: 0; /* remove border radius on mobile for full effect */
        box-shadow: none;
        display: block;
    }
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-bottom: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-detail-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Video Section */
.video-demo {
    background-color: var(--light-color);
    padding: 80px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Us Page */
.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            padding: 40px 20px;
            background: linear-gradient(135deg, #ff7b00, #ff0058);
            color: white;
            text-align: center;
            margin: 30px 0;
            border-radius: 10px;
        }
        
        .stat-item {
            padding: 20px;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
               @media (max-width: 768px) {
            .stats {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                margin-bottom: 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
 
/* Team Section */
.team {
    background-color: var(--light-color);
    padding: 80px 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-member p {
    color: var(--gray);
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--secondary-color);
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--secondary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--secondary-color);
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map {
    padding: 80px 0 0;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */

/* Container Styles */
#welcome-text {
    padding: 50px 20px;
    /* background-color: #f9f9f9; */
    color: #333;
    /* max-width: 1200px; */
    margin: 0 auto;
}


.welcome-h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    color: #000; /* or use #111 for slight tone down */
    text-transform: capitalize;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}



/* Mobile Responsive Font */
@media (max-width: 768px) {
    .welcome-h2 {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 24px;
    }
}

/* Show only on mobile */
/* Ensure consistency on all mobile widths */
@media (max-width: 768px) {
    .welcome-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: nowrap; /* Prevent wrapping */
        gap: 6px; /* Optional spacing */
    }

    .welcome-h5 {
        display: block;
        font-size: 11px;
        line-height: 1.2;
        margin: 0;
        white-space: nowrap; /* Prevent text wrapping to next line */
    }
}


/* Hide on larger screens */
@media (min-width: 769px) {
    .welcome-h5 {
        display: none;
    }
}

.footer-logo{
    width: 60%;
}

/* Subsection Block */
.well-block-h {
    margin-bottom: 40px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Sub-Headings */
.sbheading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a0a0a; /* red shade for accent */
}

/* Paragraph Text */
.categories-header__txt {
    font-size: 18px;
    line-height: 1.8;
    color: #0a0a0a;
}

/* Links */
.f-link {
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.f-link:hover {
    color: #0a0a0a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .welcome-h2 {
        font-size: 28px;
    } */

    .sbheading {
        font-size: 20px;
    }

    .well-block-h {
        padding: 20px;
    }
}

.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
    text-transform: uppercase;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

/* .what-we-do {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #444;
    font-family: "Zen Dots";
} */

.divider {
    height: 2px;
    background-color: #ddd;
    margin: 20px 0;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family: "Zen Dots";
}

.service-list {
    list-style-type: none;
}

.service-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 1.1rem;
}

.service-list li:before {
    /* content: "•"; */
    /* color: #ff6600; */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-placeholder {
    width: 100%;
    height: 450px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px 5px 5px 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-placeholder span {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .text-content, .video-container {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info, .contact-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .map-container {
        overflow: hidden;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        position: relative;
        height: 0;
    }
    
    .map-container iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-banner h2 {
        font-size: 28px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}
.navbar-brand img {
    display: block;
    /* height: 40px; */
}
/* @media (min-width: 992px) {
    .navbar-brand img {
        display: block !important;
    }
} */

    .statbox {
        display: none; /* By default hidden */
    }

    @media (max-width: 768px) { /* Mobile view only */
        .statbox {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #ffc107;
            box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0;
            z-index: 9999;
            border-top: 1px solid #ddd;
        }

        .statbox a {
            flex: 1;
            text-align: center;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }

        .statbox i {
            display: block;
            font-size: 18px;
            margin-bottom: 2px;
        }

        .statbox span {
            display: block;
            font-size: 12px;
        }
    }

.frcontainer {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Common Flex for Sections */
.franchis-top,
.franchis-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

/* Image Styling */
.franchis-img {
    flex: 1;
    min-width: 300px;
}

.franchis-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Text Styling */
.franchis-text {
    flex: 1;
    min-width: 300px;
}

.franchis-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.franchis-text ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.franchis-text h4 {
    margin-top: 20px;
    font-size: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .franchis-top, .franchis-bottom {
        flex-direction: column;
    }

    .franchis-img img {
        border-radius: 8px;
    }

    .section-title {
        text-align: center;
    }

    .franchis-text ul {
        padding-left: 15px;
    }
}

.our-brand {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

.our-brand .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
}

.our-brand .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    animation: fadeIn 1.5s ease-in;
}

.brand-logo {
    width: 120px;
    height: 80px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
}

/* Animations */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo {
        width: 100px;
        height: 70px;
    }

    .our-brand .section-title {
        font-size: 24px;
    }
}



