/* ===========================
   Global Styles
   =========================== */

   :root {
    --primary-color: #daa711;
    --secondary-color: #ffc800;
    --dark-navy: #0a0e27;
    --navy-blue: #1a1f3a;
    --light-navy: #2a3050;
    --text-light: #666666;
    --text-dark: #333333;
    --text-white: #ffffff;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Top Bar
   =========================== */

.top-bar {
    background-color: var(--dark-navy);
    color: var(--text-white);
    font-size: 0.875rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    background-color: #daa710 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text {
    color: var(--text-white);
}

.brand-suffix {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: #262c54 !important;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.btn-quote {
    /* background-color: var(--primary-color); */
    color: var(--text-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    margin-left: 1rem;
}

.btn-quote:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy-blue) 100%);
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 90%) 0%, rgb(43 65 112 / 31%) 100%);
    z-index: 1;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.invogue-text {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 4px;
    display: block;
    line-height: 1.2;
}

.oilfield-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 5px;
    display: block;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ===========================
   Buttons
   =========================== */

.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-white);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===========================
   Stats Section
   =========================== */

.stats-section {
    background-color: var(--navy-blue);
    padding: 4rem 0;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.stat-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===========================
   Services Cards Section
   =========================== */

.services-cards-section {
    background-color: #ffffff;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.15);
    border-color: var(--primary-color);
}

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   Section Badges & Titles
   =========================== */

.section-badge {
    display: inline-block;
    background-color: rgba(255, 165, 0, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===========================
   About Section
   =========================== */

.about-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.about-image img {
    border: 3px solid var(--primary-color);
    transition: transform 0.4s ease;
}

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

/* ===========================
   Vision & Mission Section
   =========================== */

.vision-mission-section {
    padding: 6rem 0;
    background-color: var(--dark-navy);
}

.vm-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.vm-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   Core Values Section
   =========================== */

.core-values-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.value-card:hover::after {
    width: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

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

.value-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.value-card h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   Services Section
   =========================== */

.services-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.service-detail-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-detail-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.service-detail-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===========================
   Products Section
   =========================== */

.products-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.product-card {
    border-radius: 15px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background-color: rgba(255, 165, 0, 0.15);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.product-content h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

/* ===========================
   Testimonials Section
   =========================== */

.testimonials-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.clients-card {
    background: #ffffff;
    padding: 1.5rem .5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* .clients-card::before {
    content: '\"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: rgba(255, 165, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
} */

.clients-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-header h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ===========================
   CTA Section
   =========================== */

.cta-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('assets/img3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.92) 0%, rgba(26, 31, 58, 0.88) 100%);
}

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

.cta-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--dark-navy);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-color);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--navy-blue);
    border-radius: 50%;
    margin-right: 0.8rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-bottom-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

/* ===========================
   Animations
   =========================== */

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

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0 !important;
    }

    .btn-quote {
        margin: 1rem 0 0 0 !important;
    }

    .invogue-text {
        font-size: 2.5rem;
    }

    .oilfield-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }

    .top-bar .col-md-6:last-child {
        margin-bottom: 0;
    }

    .invogue-text {
        font-size: 2rem;
    }

    .oilfield-text {
        font-size: 2.5rem;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 80vh;
    }

    .invogue-text {
        font-size: 1.5rem;
    }

    .oilfield-text {
        font-size: 2rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

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

    .vm-card,
    .value-card,
    .service-detail-card,
    .clients-card {
        padding: 1.5rem;
    }
}
.fa-solid, .fas {
    font-weight: 900;
    color: #daa711;
}


.invogue-why {
    background: #f8f9fb;
  }
  
  .invogue-title {
    font-weight: 700;
    color: #1c1c1c;
  }
  
  .invogue-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 15px;
  }
  
  .invogue-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    border-left: 4px solid #d4af37;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .invogue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  }
  
  .invogue-icon {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 15px;
  }
  
  .invogue-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
  }
  
  .invogue-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
  }
  


  .core-values-radial {
    background: #f8f9fb;
  }
  
  .section-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c9a227;
  }
  
  .section-title {
    font-weight: 700;
  }
  
  .text-highlight {
    color: #c9a227;
  }
  
  .section-subtitle {
    color: #6c757d;
    font-size: 15px;
  }
  
  /* Radial Layout */
  .radial-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 0 auto;
  }
  
  .radial-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .radial-center span {
    color: #c9a227;
    font-size: 13px;
  }
  
  .radial-item {
    position: absolute;
    width: 140px;
    text-align: center;
  }
  
  .radial-item i {
    font-size: 28px;
    color: #c9a227;
  }
  
  .radial-item h6 {
    font-weight: 600;
    margin-top: 6px;
  }
  
  .radial-item p {
    font-size: 13px;
    color: #555;
  }
  
  /* Positioning */
  .top { top: -15px; left: 50%; transform: translateX(-50%); }
  .top-right { top: 80px; right: -30px; }
  .bottom-right { bottom: 80px; right: -30px; }
  .bottom { bottom: -15px; left: 50%; transform: translateX(-50%); }
  .bottom-left { bottom: 80px; left: -30px; }
  .top-left { top: 80px; left: -30px; }
  
  /* Mobile Cards */
  .value-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  }
  
  .value-card i {
    font-size: 30px;
    color: #ffedb3;
    margin-bottom: 2px;
  }
  
  .value-card h5 {
    font-weight: 600;
  }
  .services-advanced {
    background: linear-gradient(180deg, #f8f9fc, #ffffff);
  }
  
  .service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  }
  
  .service-image {
    position: relative;
    height: 220px;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0));
  }
  
  .icon-badge {
    position: absolute;
    bottom: -28px;
    left: 25px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #daa711, #f7df98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(106,90,249,0.4);
  }
  
  .service-content {
    padding: 45px 30px 30px;
  }
  
  .service-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .service-content p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
  }


  .company-intro {
    background: #f7f9fc;
  }
  
  .intro-box {
    padding: 40px;
    border-radius: 22px;
  }
  
  .intro-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #daa711;
  }
  
  /* Overview Box */
  .overview-box {
    background: linear-gradient(135deg, #1a1f3a, #262c54);
    color: #fff;
  }
  
  .overview-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .overview-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
  }
  
  /* Mission Box */
  .mission-box {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }
  
  .mission-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1c1c1c;
  }
  
  .mission-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
  }
  
  .contact-modern {
    background: #f5f4f2;
    padding: 80px 0;
  }
  
  .contact-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }
  
  /* LEFT CARD */
  .contact-info {
    background: #f7f9fc;
    border-radius: 25px;
    padding: 30px;
  }
  
  .contact-info h4 {
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .info-item i {
    font-size: 18px;
    margin-top: 4px;
  }
  
  .info-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
  }
  
  /* RIGHT FORM */
  .contact-form h3 {
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  .contact-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .form-control {
    border-radius: 12px;
    border: none;
    background: #f1f3f7;
    padding: 12px 15px;
  }
  
  .form-control:focus {
    outline: none;
    box-shadow: none;
    background: #eef1ff;
  }
  
  /* BUTTON */
  .btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: #2f3d52;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .btn-submit:hover {
    background: #1f2a3b;
  }
  
  /* RESPONSIVE */
  @media (max-width: 991px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
      padding: 25px;
    }
  }
  