/* ==========================================================================
   Design Tokens & CSS Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #0c1930;       /* Dark Indigo Blue */
    --color-primary-rgb: 12, 25, 48;
    --color-accent: #f1bc19;        /* Gold / Yellow */
    --color-accent-rgb: 241, 188, 25;
    --color-accent-hover: #d19f0e;
    --color-text-dark: #1e293b;     /* Slate Dark Text */
    --color-text-muted: #64748b;    /* Muted Slate Grey */
    --color-text-light: #ffffff;
    --color-bg-light: #f8f9fa;      /* Off-White Section BG */
    --color-bg-card: #ffffff;
    --color-bg-tile: #f0f4f8;       /* Soft Blue/Grey */
    
    /* Typography */
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadow & Border */
    --border-radius-sm: 4px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(12, 25, 48, 0.12);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   CSS Reset & Core Elements
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   Utility Components
   ========================================================================== */
.section-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge-line {
    width: 20px;
    height: 2px;
    background-color: var(--color-accent);
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #111827;
    max-width: 700px;
    margin: -0.35rem auto 2.5rem auto;
    letter-spacing: 0.06em;
    text-transform: none;
}

.subtitle-mark {
    color: #f97316;
    font-weight: 900;
    letter-spacing: -0.1em;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 188, 25, 0.2);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: #a22e0f;
    color: #fff7f2;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-links a {
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff8f4;
    font-weight: 500;
}

.top-bar-links a:hover {
    color: #ffe2c8;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar-socials a {
    color: #fff7f2;
    font-size: 1rem;
}

.top-bar-socials a:hover {
    color: #ffe2c8;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-header {
    background-color: #ffffff;
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 0 0 auto;
}

.logo-mark {
    width: 50px;
    height: auto;
    display: block;
    position: relative;
    flex: 0 0 auto;
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #a22e0f;
    text-transform: uppercase;
    min-width: 0;
    max-width: 340px;
}

.logo-copy strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.logo-copy em {
    margin-top: 4px;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    color: #a22e0f;
    text-transform: none;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    color: #5e6570;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #a22e0f;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 3px;
    transition: var(--transition-smooth);
}

.nav-link:hover i {
    transform: rotate(180deg);

}

/* Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    width: 230px;
    padding: 12px 0 10px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px 22px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.2;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-light);
    color: #a22e0f;
    padding-left: 30px;
}

/* Call CTA */
.call-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-heading);
}

.cta-button {
    background-color: #b53b13;
    color: #ffffff;
    min-width: 184px;
    height: 50px;
    padding: 0 28px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.call-cta:hover .cta-button {
    background-color: #a22e0f;
    transform: translateY(-2px);
}

.call-cta a:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #a22e0f;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    z-index: 10;
    color: #ffffff;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.accent-color {
    color: var(--color-accent);
}

.hero-subtext {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 650px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Slider Controls */
.slider-bullets {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.bullet.active {
    background-color: var(--color-accent);
    transform: scale(1.2);
}

/* Floating Social Follow Bar */
.floating-social {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 25;
    color: #ffffff;
}

.follow-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 10px;
}

.social-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.floating-social a {
    font-size: 1rem;
    opacity: 0.6;
}

.floating-social a:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-badge {
    justify-content: flex-start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-ctas {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 2rem;
}

.about-phone {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.phone-link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
}

.phone-link:hover {
    color: var(--color-accent-hover);
}

/* About Slider */
.about-slider-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-slider {
    position: relative;
    height: 400px;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-nav-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.about-nav-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.solutions-section {
    padding: var(--spacing-xl) 0 3rem 0;
    background: linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%);
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 3rem;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.solutions-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.solutions-section .section-badge {
    margin-bottom: 0.6rem;
}

.solutions-section .section-title {
    font-size: 3rem;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.solutions-section .accent-color {
    display: inline-block;
    margin-top: 0.15rem;
}

.solutions-row {
    display: grid;
    gap: 28px;
}

.solutions-row-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 76%;
    margin: 0 auto;
}

.solutions-row-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 76%;
    margin: 0 auto;
}

.solution-card{
    background:#fff;
    border:4px solid #f3b51d;
    padding:18px 16px 14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.solution-tile {
    min-height: 210px;
}

.solution-art {
    width: 100%;
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.solution-art-shielded {
    min-height: 130px;
}

.solution-art-parts {
    min-height: 130px;
}

.solution-art-image {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.solution-card:hover{
    transform:skew(-3deg) translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.solution-name {
    font-size: 1rem;
    font-weight: 800;
    color: #27336a;
    margin-bottom: 2px;
    line-height: 1.1;
}

.solution-name sup {
    font-size: 0.55em;
    vertical-align: super;
}

.solution-desc {
    font-size: 0.75rem;
    color: #27336a;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.25;
    min-height: 20px;
}

.solution-link {
    display: none;
}

@media (max-width: 1024px) {
    .solutions-row-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .solutions-row-bottom {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        padding: 18px;
        gap: 20px;
    }

    .solutions-row-top,
    .solutions-row-bottom {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/*==================================
WHY CHOOSE US
==================================*/

.why-choose-us{

    padding:90px 0;

    background:#f8f9fa;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px 30px;

    border-radius:15px;

    text-align:center;

    transition:.4s;

    border:2px solid transparent;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#f1bc19;

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#f1bc19;

    display:flex;

    justify-content:center;

    align-items:center;

}

.why-icon i{

    font-size:35px;

    color:#0c1930;

}

.why-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#0c1930;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/* Responsive */

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

/*===========================
FAQ + ENQUIRY
===========================*/

.faq-enquiry-section{

    padding:80px 0;

    background:#f8f8f8;

}

.faq-enquiry-section .container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 420px;

    gap:50px;

    align-items:start;

}

/* FAQ */

.faq-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.faq-item{

    background:#fff;

    border:2px solid #f2b514;

    border-radius:12px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    padding:18px 22px;

    border:none;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s;

}

.faq-answer p{

    padding:0 22px 18px;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active i{

    transform:rotate(180deg);

}

/*==========================
Enquiry Form
==========================*/

.enquiry-wrapper{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.enquiry-wrapper h2{

    text-align:center;

    margin-bottom:30px;

    color:#132b55;

}

.enquiry-wrapper input,

.enquiry-wrapper textarea{

    width:100%;

    padding:16px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:15px;

    box-sizing:border-box;

}

.phone-box{

    display:flex;

    border:1px solid #ddd;

    border-radius:10px;

    overflow:hidden;

    margin-bottom:5px;

}

.phone-box span{

    padding:16px;

    background:#f3f3f3;

    font-weight:600;

    border-right:1px solid #ddd;

}

.phone-box input{

    border:none;

    margin:0;

}

#phoneError{

    display:block;

    color:red;

    margin-bottom:15px;

    font-size:14px;

}

.enquiry-wrapper button{

    width:100%;

    padding:16px;

    background:#a22e0f;

    color:#fff;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

}

.enquiry-wrapper button:hover{

    background:#f1bc19;

}

/* Responsive */

@media(max-width:992px){

.faq-enquiry-section .container{

grid-template-columns:1fr;

}

}


/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.stats-header {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--color-bg-tile);
    border-radius: var(--border-radius-md);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    background-color: #ffffff;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.stat-svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent-hover);
    margin-bottom: 5px;
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}


/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
    padding:100px 0;
    background:#f5f7fb;
}

/* Heading */

.testimonial-top{

    position: relative;

    height: 180px;

    background: linear-gradient(#a22e0f);

    border-radius: 15px 15px 0 0;

    overflow: hidden;

    padding: 40px 30px;

}

/* White diagonal */

.testimonial-top::after{

    content:"";

    position:absolute;

    bottom:0;

    right:0;

    width:55%;

    height:60px;

    background:#fff;

    clip-path:polygon(100% 0,100% 100%,0 100%);

}

/* Small Heading */

.small-title{

    display:block;

    color:#fff;

    font-size:15px;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:25px;

    text-transform:uppercase;

}

/* Main Heading */

.testimonial-top h2{

    color:#fff;

    font-size:40px;

    font-weight:800;

    line-height:1.2;

    margin:0;

    position:relative;

    z-index:2;

}

.testimonial-heading{
    text-align:center;
    margin-bottom:60px;
}

.testimonial-heading .section-badge{
    color:#2f78d8;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.testimonial-heading .section-title{
    font-size:42px;
    color:#111;
    margin:15px 0;
}

.testimonial-heading .section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Cards */

.testimonial-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:0.4s ease;
}

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

.testimonial-body{
    padding:40px 30px;
    text-align:center;
}

.quote-icon{
    font-size:42px;
    color:#a22e0f;
    margin-bottom:20px;
}

.testimonial-body p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.testimonial-body h3{
    font-size:28px;
    color:#111;
    margin-bottom:8px;
}

.testimonial-body span{
    display:block;
    color:#777;
    font-size:16px;
    margin-bottom:20px;
}

.stars{
    color:#ffb400;
    font-size:20px;
    margin:0 2px;
}

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

@media (max-width:992px){

    .testimonial-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-heading .section-title{
        font-size:34px;
    }

}

@media (max-width:768px){

    .testimonial-wrapper{
        grid-template-columns:1fr;
    }

    .testimonial-heading .section-title{
        font-size:28px;
    }

    .testimonial-body{
        padding:30px 20px;
    }

    .testimonial-body p{
        font-size:15px;
    }

    .testimonial-body h3{
        font-size:24px;
    }

}

/*==============================
Company Marquee
==============================

.company-marquee{

    background:#fff;
    padding:15px 0;
    overflow:hidden;
    white-space:nowrap;

}

.marquee{

    overflow:hidden;

}

.marquee-content{

    display:inline-flex;
    align-items:center;
    gap:5px;

    animation:scrollLeft 20s linear infinite;

}

.marquee-content img{

    width:50px;
    height:auto;

}

.marquee-content h2{

    color:#a3200b;
    font-size:30px;
    font-weight:800;
    margin:0;
    text-transform:uppercase;

}

.marquee-content sup{

    font-size:16px;

}
.marquee-content p{
    font-size: small;
    margin-left: 1pc;
}

.divider{

    color:#f1bc19;
    font-size:28px;
    font-weight:bold;

}

/* Animation 

@keyframes scrollLeft{

    from{

        transform:translateX(100%);

    }

    to{

        transform:translateX(-100%);

    }

}

/* Mobile 

@media(max-width:768px){

.marquee-content h2{

font-size:20px;

}

.marquee-content img{

width:40px;

}

} */

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    padding: var(--spacing-xl) 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.brand-col .footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-text-pune, .footer-logo .logo-text-gas {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.footer-logo .logo-text-pune {
    color: #ffffff;
}

.footer-logo .logo-text-gas {
    color: var(--color-accent);
}

.contact-details li {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    align-items: flex-start;
}

.contact-details i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-details a:hover {
    color: var(--color-accent);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-actions {
        position: absolute;
        top: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 5;
    }
    
    .about-image-action {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
        cursor: pointer;
        transition: var(--transition-smooth);
        font-size: 1rem;
    }
    
    .about-image-action.action-focus {
        background-color: rgba(244, 244, 244, 0.92);
        color: #1f4fbf;
    }
    
    .about-image-action.action-more {
        background-color: #ffffff;
        color: #1f4fbf;
    }
    
    .about-image-action:hover {
        transform: translateY(-2px) scale(1.04);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }

    .hero-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-container {
        gap: 16px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background-color: #ffffff;
        transition: var(--transition-smooth);
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .nav-link {
        font-size: 1.2rem;
        color: var(--color-primary);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(161, 46, 15, 0.05);
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown-menu a {
        color: var(--color-primary);
    }

    .call-cta {
        display: none;
    }

    .hero-section {
        height: 70vh;
    }

    .hero-heading {
        font-size: 2.3rem;
    }

    .floating-social {
        display: none;
    }

    .tab-card {
        grid-template-columns: 1fr;
    }

    .tab-card-left {
        height: 200px;
    }

    .tab-card-right::before {
        display: none;
    }
    
        .about-image-actions {
            top: 12px;
            right: 12px;
        }

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.8rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        gap: 10px;
    }

    .logo-mark {
        width: 58px;
    }

    .logo-copy strong {
        font-size: 0.72rem;
    }

    .logo-copy em {
        font-size: 0.7rem;
    }

    .nav-menu {
        top: 68px;
        height: calc(100vh - 68px);
    }
}
