/* ======================================
   Global Styles & Variables
   ====================================== */
:root {
    --primary-color: #FF8C42;
    --secondary-color: #1a1a2e;
    --dark-bg: #16213e;
    --light-text: #ffffff;
    --accent-color: #0f3460;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-orange: linear-gradient(135deg, #FF8C42 0%, #ff6b35 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ======================================
   Navbar Styles
   ====================================== */
.navbar {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(22, 33, 62, 1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* ======================================
   Hero Section
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.85) 0%, rgba(15, 52, 96, 0.85) 100%);
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.4);
    animation: pulse 2s infinite;
}

.logo-circle i {
    font-size: 4rem;
    color: white;
}

.hero-main-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1s ease;
}

.hero h1 .mk-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 5px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .power {
    color: white;
    font-weight: 800;
    letter-spacing: 8px;
    margin-right: 1rem;
}

.hero h1 .industries {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 6px;
}

.tagline {
    color: #fff;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ======================================
   About Section
   ====================================== */
.about {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-subtitle .highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, #FF8C42 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon i {
    font-size: 3.5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image-wrapper img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

/* ======================================
   Products Section
   ====================================== */
/* ======================================
   Products Section
   ====================================== */
.products {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--accent-color) 100%);
    color: white;
}

.products_container {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 10px;
    height: 100%;
}

.product_range .owl-item {
    display: flex;
    height: auto;
}

.product_range .item {
    display: flex;
    width: 100%;
    height: 100%;
}

.products_range_details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.products_name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.products_model {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.products_model_category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.product_range_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.product_range_table tr {
    background: rgba(0, 0, 0, 0.3);
}

.product_range_table td {
    padding: 0.6rem 0.8rem;
    color: white;
    border: none;
    font-size: 0.9rem;
}

.product_range_table td:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    width: 35%;
}

.product_range_table td:last-child {
    color: white;
    font-weight: 500;
}

.product_range_table i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.products_range_image {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.products_range_image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.products_range_image:hover img {
    transform: scale(1.03);
}

.border_right {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Owl Carousel Custom Styling */
.product_range .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-orange) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.product_range .owl-nav button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
}

.product_range .owl-nav .owl-prev {
    left: -25px;
}

.product_range .owl-nav .owl-next {
    right: -25px;
}

.product_range .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.product_range .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.product_range .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.product_range .owl-dot:hover {
    background: var(--primary-color);
}

.product-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-title {
    color: var(--primary-color);
    font-weight: 700;
}

.product-specs {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.product-specs td {
    padding: 1rem !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.product-specs i {
    color: var(--primary-color);
}

.product-image-wrapper img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* ======================================
   Leadership Section
   ====================================== */
.leadership {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
}

.circle-frame {
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 50%;
    top: 20px;
    left: 20px;
    z-index: 0;
    animation: float 3s ease-in-out infinite;
}

.circle-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.circle-frame:hover img {
    transform: scale(1.05);
}

.leader-label {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.leader-name {
    color: var(--secondary-color);
}

.leader-title {
    color: #666;
    font-size: 0.95rem;
}

.leader-message-card {
    background: white;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.leader-message {
    color: #555;
    position: relative;
    z-index: 1;
}

.leader-stats .stat-item h4 {
    color: var(--primary-color);
    font-size: 2rem;
}

/* ======================================
   Services Section
   ====================================== */
.services {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
}

.services .overlay_black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

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

.gradient_text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our_services_text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Carousel Styles */
.service_carousel .item {
    padding: 15px;
}

.service_product {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service_product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

.service_image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service_product:hover .service_image img {
    transform: scale(1.15);
}

.service_product_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service_product_content p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service_product:hover .service_product_content {
    background: linear-gradient(to top, var(--primary-color) 0%, transparent 100%);
}

/* Service Carousel Navigation */
.service_carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-orange) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.service_carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
}

.service_carousel .owl-nav .owl-prev {
    left: -25px;
}

.service_carousel .owl-nav .owl-next {
    right: -25px;
}

.service_carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.service_carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.service_carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.service_carousel .owl-dot:hover {
    background: var(--primary-color);
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-image-wrapper {
    overflow: hidden;
    height: 300px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.service-icon i {
    font-size: 4rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon i {
    opacity: 1;
}

/* ======================================
   Projects Section
   ====================================== */
.projects {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Project Carousel Styles */
.projects_image_section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
}

.projects_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.projects_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects_image_section:hover .projects_image img {
    transform: scale(1.05);
}

.projects_image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 2;
}

.projects_info_container {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: 5%;
    padding: 3rem;
}

.projects_info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.projects_location {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects_model {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.projects_details {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Project Carousel Navigation */
.project_carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-orange) !important;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    z-index: 10;
}

.project_carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
}

.project_carousel .owl-nav .owl-prev {
    left: 30px;
}

.project_carousel .owl-nav .owl-next {
    right: 30px;
}

.project_carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.project_carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.project_carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.project_carousel .owl-dot:hover {
    background: var(--primary-color);
}

.project-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

.project-image-wrapper img {
    transition: transform 0.5s ease;
}

.project-image-wrapper:hover img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

.project-location-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

.project-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

/* ======================================
   Footer
   ====================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.footer ul li {
    margin-bottom: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.business-link {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.business-link:hover {
    transform: translateY(-5px);
}

.business-link img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======================================
   Scroll to Top Button
   ====================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
}

/* ======================================
   Call CTA Button
   ====================================== */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: call-pulse 2s infinite;
}

.call-float:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #FF8C42 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
}

.call-float i {
    line-height: 60px;
}

@keyframes call-pulse {
    0% {
        box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 140, 66, 0.7);
    }
    100% {
        box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    }
}

/* ======================================
   Animations
   ====================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ======================================
   Responsive Styles
   ====================================== */
@media (max-width: 991px) {
    .hero h1 .mk-logo {
        font-size: 2rem;
    }
    
    .hero h1 .company-name {
        font-size: 1.5rem;
    }
    
    .circle-frame {
        width: 250px;
        height: 250px;
    }
    
    .navbar-nav {
        background: rgba(22, 33, 62, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .products_container {
        flex-direction: column;
    }
    
    .products_range_details {
        padding: 2rem;
    }
    
    .products_range_image {
        flex: 0 0 auto;
        padding: 1.5rem;
    }
    
    .products_range_image img {
        max-width: 280px;
    }
    
    .border_right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle i {
        font-size: 3rem;
    }
    
    .hero-main-logo {
        max-width: 300px;
    }
    
    .products_name {
        font-size: 1.2rem;
    }
    
    .products_model {
        font-size: 1rem;
    }
    
    .products_model_category {
        font-size: 0.85rem;
    }
    
    .product_range_table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .product_range_table i {
        font-size: 0.75rem;
    }
    
    .products_range_image img {
        max-width: 220px;
    }
    
    .product_range .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .service_carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .service_carousel .owl-nav .owl-prev {
        left: -15px;
    }
    
    .service_carousel .owl-nav .owl-next {
        right: -15px;
    }
    
    .service_image {
        height: 280px;
    }
    
    .service_product_content p {
        font-size: 0.95rem;
    }
    
    .our_services_text {
        font-size: 1rem;
    }
    
    .projects_image_section {
        min-height: 500px;
    }
    
    .projects_info_container {
        margin-left: 0;
        padding: 2rem 1rem;
    }
    
    .projects_info {
        padding: 2rem;
    }
    
    .projects_model {
        font-size: 1.5rem;
    }
    
    .projects_details {
        font-size: 0.95rem;
    }
    
    .project_carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .project_carousel .owl-nav .owl-prev {
        left: 15px;
    }
    
    .project_carousel .owl-nav .owl-next {
        right: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .call-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 24px;
    }
}

/* ======================================
   Utility Classes
   ====================================== */
.btn-primary {
    background: var(--gradient-orange);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.5);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}